2020-03-18 03:38:17 +00:00
|
|
|
|
2014-03-26 11:09:39 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: directories
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# description :string(255)
|
2020-03-31 03:36:19 +00:00
|
|
|
# hidden :boolean default(FALSE), not null
|
2020-03-18 03:38:17 +00:00
|
|
|
# name :string(255)
|
2014-03-26 11:09:39 +00:00
|
|
|
# path :string(255)
|
2020-03-31 03:36:19 +00:00
|
|
|
# title :string(255)
|
2014-03-26 11:09:39 +00:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# parent_id :integer
|
2020-03-18 03:38:17 +00:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_directories_on_parent_id (parent_id)
|
2014-03-26 11:09:39 +00:00
|
|
|
#
|
|
|
|
|
2020-03-31 03:36:19 +00:00
|
|
|
ENV['FILES_ROOT'] ||= File.join(Rails.root, 'public', 'files')
|
|
|
|
|
|
|
|
# class SteamIdValidator < ActiveModel::Validator
|
|
|
|
# def validate(record)
|
|
|
|
# record.errors.add :steamid unless \
|
|
|
|
# record.steamid.nil? ||
|
|
|
|
# (m = record.steamid.match(/\A([01]):([01]):(\d{1,10})\Z/)) &&
|
|
|
|
# (id = m[3].to_i) &&
|
|
|
|
# id >= 1 && id <= 2147483647
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
2014-03-23 00:22:25 +00:00
|
|
|
class Directory < ActiveRecord::Base
|
|
|
|
include Extra
|
|
|
|
|
|
|
|
ROOT = 1
|
|
|
|
DEMOS = 5
|
|
|
|
DEMOS_DEFAULT = 19
|
|
|
|
DEMOS_GATHERS = 92
|
|
|
|
MOVIES = 30
|
|
|
|
ARTICLES = 39
|
|
|
|
|
2020-03-16 23:57:47 +00:00
|
|
|
#attr_protected :id, :updated_at, :created_at, :path
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2020-03-26 02:26:30 +00:00
|
|
|
belongs_to :parent, :class_name => "Directory", :optional => true
|
2014-03-23 00:22:25 +00:00
|
|
|
has_many :subdirs, :class_name => "Directory", :foreign_key => :parent_id
|
2019-06-02 01:26:36 +00:00
|
|
|
has_many :files, -> { order("name") }, :class_name => "DataFile"
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2019-06-02 01:26:36 +00:00
|
|
|
scope :ordered, -> { order("name ASC") }
|
2020-03-22 17:47:24 +00:00
|
|
|
scope :filtered, -> { where(hidden: false) }
|
2019-06-02 01:26:36 +00:00
|
|
|
scope :of_parent, -> (parent) { where(parent_id: parent.id) }
|
2014-03-23 00:22:25 +00:00
|
|
|
|
|
|
|
validates_length_of [:name, :path], :in => 1..255
|
|
|
|
validates_format_of :name, :with => /\A[A-Za-z0-9]{1,20}\z/, :on => :create
|
|
|
|
validates_length_of :name, :in => 1..25
|
|
|
|
validates_inclusion_of :hidden, :in => [true, false]
|
2020-03-31 03:36:19 +00:00
|
|
|
# TODO: add validation for path
|
2014-03-23 00:22:25 +00:00
|
|
|
|
|
|
|
before_validation :init_variables
|
|
|
|
after_create :make_path
|
|
|
|
after_save :update_timestamp
|
|
|
|
before_destroy :remove_files
|
|
|
|
after_destroy :remove_path
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
name
|
|
|
|
end
|
|
|
|
|
|
|
|
def init_variables
|
2020-03-31 03:36:19 +00:00
|
|
|
self.path = full_path if parent
|
2014-03-23 00:22:25 +00:00
|
|
|
self.hidden = false if hidden.nil?
|
|
|
|
end
|
|
|
|
|
2020-03-31 03:36:19 +00:00
|
|
|
def path_exists?
|
|
|
|
File.directory?(full_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def full_path
|
|
|
|
parent ? File.join(parent.full_path, name.downcase) : path
|
2014-03-23 00:22:25 +00:00
|
|
|
end
|
|
|
|
|
2020-03-31 03:36:19 +00:00
|
|
|
def make_path
|
|
|
|
Dir.mkdir(full_path) unless File.exists?(full_path)
|
|
|
|
end
|
|
|
|
|
2014-03-23 00:22:25 +00:00
|
|
|
def update_timestamp
|
2020-03-31 03:36:19 +00:00
|
|
|
self.created_at = File.mtime(full_path) if File.exists?(full_path)
|
2014-03-23 00:22:25 +00:00
|
|
|
end
|
2020-03-18 03:38:17 +00:00
|
|
|
|
2014-03-23 00:22:25 +00:00
|
|
|
def remove_files
|
|
|
|
files.each do |subdir|
|
|
|
|
subdir.destroy
|
|
|
|
end
|
|
|
|
subdirs.each do |subdir|
|
|
|
|
subdir.destroy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_path
|
2020-03-31 03:36:19 +00:00
|
|
|
Dir.unlink(full_path) if File.exists?(full_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: make tests for this, moving etc.
|
|
|
|
# TODO: mutate instead of return.
|
|
|
|
def recreate_transaction(root = ENV['FILES_ROOT'])
|
|
|
|
logger = Rails.logger
|
|
|
|
logger.info 'Starting recreate on %d, root: %s' % [id, root]
|
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
# We use destroy lists so technically there can be seperate roots
|
|
|
|
destroy_list = Hash.new
|
|
|
|
update_attribute :path, root
|
|
|
|
destroy_list = recreate(destroy_list)
|
|
|
|
destroy_list.each do |key, dir|
|
|
|
|
logger.info 'Removed dir: %s' % dir.full_path
|
|
|
|
# dir.destroy!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
logger.info 'Finish recreate'
|
|
|
|
return nil
|
|
|
|
# TODO: check items that weren't checked.
|
2014-03-23 00:22:25 +00:00
|
|
|
end
|
|
|
|
|
2020-03-31 03:36:19 +00:00
|
|
|
# QUESTION Symlinks?
|
|
|
|
def recreate(destroy_list, path = self.full_path)
|
|
|
|
# Convert all subdirs into a hash and mark them to be deleted
|
|
|
|
# FIXME: better oneliner
|
|
|
|
destroy_list.merge!(subdirs.all.map{ |s| [s.id,s] }.to_h)
|
|
|
|
|
|
|
|
# Go through all subdirectories (no recursion)
|
|
|
|
Dir.glob("%s/*" % path).each do |subdir_path|
|
|
|
|
if File.directory? subdir_path
|
|
|
|
subdir_name = File.basename(subdir_path)
|
|
|
|
|
|
|
|
# We find by name only, ignore path
|
|
|
|
# Find existing subdirs from current path. Keep those we find
|
|
|
|
if (subdir = find_existing(subdir_name))
|
|
|
|
if subdir.parent_id != self.id
|
|
|
|
old_path = subdir.full_path
|
|
|
|
subdir.parent = self
|
|
|
|
subdir.save!
|
|
|
|
logger.info 'Renamed dir: %s -> %s' % [old_path, subdir.full_path]
|
|
|
|
end
|
|
|
|
destroy_list.delete subdir.id
|
|
|
|
# In case its a new directory
|
|
|
|
else
|
|
|
|
# Attempt to find it in existing directories
|
|
|
|
subdir = subdirs.build(name: subdir_name)
|
|
|
|
# FIXME: find a better solution
|
|
|
|
subdir.save!(validate: false)
|
|
|
|
logger.info 'New dir: %s' % subdir.full_path
|
|
|
|
end
|
|
|
|
|
|
|
|
# Recreate the directory
|
|
|
|
destroy_list = subdir.recreate(destroy_list)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return destroy_list
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_existing(subdir_name)
|
|
|
|
# Find by name
|
|
|
|
if (dir = subdirs.where(name: subdir_name)).exists?
|
|
|
|
return dir.first
|
|
|
|
# Problem is we can't find it if haven't got that far
|
|
|
|
else
|
|
|
|
Directory.where(name: subdir_name).all.each do |dir|
|
|
|
|
unless dir.path_exists?
|
|
|
|
return dir
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# TODO: Find by number of files + hash of files
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO check that you can download files
|
|
|
|
|
2014-03-23 00:22:25 +00:00
|
|
|
def process_dir
|
|
|
|
ActiveRecord::Base.transaction do
|
2020-03-31 03:36:19 +00:00
|
|
|
Dir.glob("#{full_path}/*").each do |file|
|
2014-03-23 00:22:25 +00:00
|
|
|
if File.directory?(file)
|
|
|
|
if dir = Directory.find_by_path(file)
|
|
|
|
dir.save!
|
|
|
|
else
|
|
|
|
dir = Directory.new
|
|
|
|
dir.name = File.basename(file)
|
|
|
|
dir.path = file
|
|
|
|
dir.parent = self
|
|
|
|
dir.save!
|
|
|
|
end
|
|
|
|
dir.process_dir
|
|
|
|
else
|
|
|
|
if dbfile = DataFile.find_by_path(file)
|
|
|
|
dbfile.directory = self
|
|
|
|
dbfile.save!
|
|
|
|
elsif (File.mtime(file) + 100).past?
|
|
|
|
dbfile = DataFile.new
|
|
|
|
dbfile.path = file
|
|
|
|
dbfile.directory = self
|
|
|
|
dbfile.save!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_create? cuser
|
|
|
|
cuser and cuser.admin?
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_update? cuser, params = {}
|
|
|
|
cuser and cuser.admin? and Verification.contain params, [:description, :hidden]
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_destroy? cuser
|
|
|
|
cuser and cuser.admin?
|
|
|
|
end
|
2020-03-18 03:38:17 +00:00
|
|
|
|
|
|
|
def self.params(params, cuser)
|
|
|
|
params.require(:directory).permit(:description, :hidden, :name, :parent_id)
|
|
|
|
end
|
2014-03-23 00:22:25 +00:00
|
|
|
end
|