dcav-stats/gen_index.rb

36 lines
745 B
Ruby
Raw Normal View History

2017-05-08 22:07:59 +00:00
require 'erb'
require 'filesize'
2017-05-09 11:40:42 +00:00
load 'config.rb'
usernames = USERNAMES
shot_dir = SHOT_DIR
erb_file = ERB_FILE
html_file = HTML_FILE
2017-05-08 22:07:59 +00:00
class User
2017-05-09 10:41:33 +00:00
attr_accessor :name, :count, :size, :avgsize
def <=> other
2017-05-08 22:07:59 +00:00
other.count <=> count
end
end
users = []
2017-05-08 22:07:59 +00:00
usernames.each do |username|
2017-05-09 10:41:33 +00:00
user = User.new
user.name = username
user.size = `du -B1 #{shot_dir}#{username}/ | awk {'print $1'} | head -n 1`
.delete("\n")
.to_i
user.count = `ls -1 #{shot_dir}#{username}/ | wc -l | head -n 1`
.delete("\n")
.to_i
user.avgsize = user.size / user.count
2017-05-08 22:07:59 +00:00
users << user
end
File.open(html_file, 'w') do |f|
f << ERB.new(File.read erb_file).result
2017-05-08 22:07:59 +00:00
end