2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module StorageHelper
|
|
|
|
def storage_counter(size_in_bytes)
|
2019-09-04 21:01:54 +05:30
|
|
|
return s_('StorageSize|Unknown') unless size_in_bytes
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
precision = size_in_bytes < 1.megabyte ? 0 : 1
|
|
|
|
|
|
|
|
number_to_human_size(size_in_bytes, delimiter: ',', precision: precision, significant: false)
|
|
|
|
end
|
2019-07-31 22:56:46 +05:30
|
|
|
|
|
|
|
def storage_counters_details(statistics)
|
|
|
|
counters = {
|
|
|
|
counter_repositories: storage_counter(statistics.repository_size),
|
2019-09-04 21:01:54 +05:30
|
|
|
counter_wikis: storage_counter(statistics.wiki_size),
|
2019-07-31 22:56:46 +05:30
|
|
|
counter_build_artifacts: storage_counter(statistics.build_artifacts_size),
|
|
|
|
counter_lfs_objects: storage_counter(statistics.lfs_objects_size)
|
|
|
|
}
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
_("Repository: %{counter_repositories} / Wikis: %{counter_wikis} / Build Artifacts: %{counter_build_artifacts} / LFS: %{counter_lfs_objects}") % counters
|
2019-07-31 22:56:46 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|