2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-02-04 02:05:17 -05:00
|
|
|
class DiskSpace
|
|
|
|
def self.uploads_used_bytes
|
2020-02-19 23:15:34 -05:00
|
|
|
if Discourse.store.external?
|
|
|
|
Upload.sum(:filesize).to_i + OptimizedImage.sum(:filesize).to_i
|
|
|
|
else
|
|
|
|
used(uploads_path)
|
|
|
|
end
|
2015-02-04 02:05:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.uploads_free_bytes
|
2020-02-19 23:15:34 -05:00
|
|
|
if Discourse.store.external?
|
|
|
|
0
|
|
|
|
else
|
|
|
|
free(uploads_path)
|
|
|
|
end
|
2015-02-04 02:05:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.free(path)
|
2020-02-17 23:13:09 -05:00
|
|
|
output = Discourse::Utils.execute_command('df', '-Pk', path)
|
|
|
|
size_line = output.split("\n")[1]
|
|
|
|
size_line.split(/\s+/)[3].to_i * 1024
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.percent_free(path)
|
|
|
|
output = Discourse::Utils.execute_command('df', '-P', path)
|
|
|
|
size_line = output.split("\n")[1]
|
|
|
|
size_line.split(/\s+/)[4].to_i
|
2015-02-04 02:05:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.used(path)
|
2020-02-17 23:13:09 -05:00
|
|
|
Discourse::Utils.execute_command("du", "-s", path).to_i * 1024
|
2015-02-04 02:05:17 -05:00
|
|
|
end
|
2018-12-14 17:14:46 -05:00
|
|
|
|
|
|
|
def self.uploads_path
|
2019-12-18 00:51:57 -05:00
|
|
|
"#{Rails.root}/public/#{Discourse.store.upload_path}"
|
2018-12-14 17:14:46 -05:00
|
|
|
end
|
|
|
|
private_class_method :uploads_path
|
2015-02-04 02:05:17 -05:00
|
|
|
end
|