discourse/lib/disk_space.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
842 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-02-04 02:05:17 -05:00
class DiskSpace
def self.uploads_used_bytes
2015-02-04 05:37:02 -05:00
# used(uploads_path)
# temporary (on our internal setup its just too slow to iterate)
Upload.sum(:filesize).to_i
2015-02-04 02:05:17 -05:00
end
def self.uploads_free_bytes
2015-02-04 05:37:02 -05:00
free(uploads_path)
2015-02-04 02:05:17 -05:00
end
def self.free(path)
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)
Discourse::Utils.execute_command("du", "-s", path).to_i * 1024
2015-02-04 02:05:17 -05:00
end
def self.uploads_path
"#{Rails.root}/public/#{Discourse.store.upload_path}"
end
private_class_method :uploads_path
2015-02-04 02:05:17 -05:00
end