2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
module StorageHelper
|
|
|
|
def storage_counter(size_in_bytes)
|
2019-05-16 06:30:42 -04:00
|
|
|
return s_('StorageSize|Unknown') unless size_in_bytes
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
precision = size_in_bytes < 1.megabyte ? 0 : 1
|
|
|
|
|
|
|
|
number_to_human_size(size_in_bytes, delimiter: ',', precision: precision, significant: false)
|
|
|
|
end
|
2019-05-02 12:04:15 -04:00
|
|
|
|
|
|
|
def storage_counters_details(statistics)
|
|
|
|
counters = {
|
|
|
|
counter_repositories: storage_counter(statistics.repository_size),
|
2019-02-13 17:38:11 -05:00
|
|
|
counter_wikis: storage_counter(statistics.wiki_size),
|
2019-05-02 12:04:15 -04:00
|
|
|
counter_build_artifacts: storage_counter(statistics.build_artifacts_size),
|
|
|
|
counter_lfs_objects: storage_counter(statistics.lfs_objects_size)
|
|
|
|
}
|
|
|
|
|
2019-07-09 09:43:53 -04:00
|
|
|
_("Repository: %{counter_repositories} / Wikis: %{counter_wikis} / Build Artifacts: %{counter_build_artifacts} / LFS: %{counter_lfs_objects}") % counters
|
2019-05-02 12:04:15 -04:00
|
|
|
end
|
2016-11-22 11:58:10 -05:00
|
|
|
end
|