2013-07-05 17:08:09 +01:00
|
|
|
class PlatformContent
|
|
|
|
|
|
|
|
# ------------------
|
|
|
|
# *** ATTRIBUTES ***
|
|
|
|
# ------------------
|
|
|
|
|
|
|
|
attr_reader :path
|
|
|
|
|
|
|
|
# ---------------
|
|
|
|
# *** METHODS ***
|
|
|
|
# ---------------
|
|
|
|
|
|
|
|
def initialize(platform, path)
|
|
|
|
@platform, @path = platform, path
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_list
|
|
|
|
return @build_list if !!@build_list
|
2013-07-24 11:37:25 +01:00
|
|
|
return nil if @path !~ /\/(release|updates)+\/[\w\-\.]+$/
|
|
|
|
return nil unless repository_name = @path.match(/\/[\w]+\/(release|updates)\//)
|
2013-07-05 17:08:09 +01:00
|
|
|
repository_name = repository_name[0].gsub(/\/(release|updates)\/$/, '').gsub('/', '')
|
|
|
|
|
|
|
|
repository = @platform.repositories.where(:name => repository_name).first
|
|
|
|
return nil unless repository
|
|
|
|
|
|
|
|
if @platform.main?
|
|
|
|
build_for_platform = @platform
|
|
|
|
else
|
2013-07-24 11:37:25 +01:00
|
|
|
bfp_name = @path.match(/\/#{@platform.name}\/repository\/[\w]+\//)
|
2013-07-05 17:08:09 +01:00
|
|
|
return nil unless bfp_name
|
|
|
|
bfp_name = bfp_name[0].gsub(/\/#{@platform.name}\/repository\//, '').gsub('/', '')
|
|
|
|
build_for_platform = Platform.main.find_by_name bfp_name
|
|
|
|
return nil unless build_for_platform
|
|
|
|
end
|
|
|
|
|
|
|
|
@build_list = BuildList.for_status(BuildList::BUILD_PUBLISHED)
|
|
|
|
.for_platform(build_for_platform)
|
|
|
|
.scoped_to_save_platform(@platform)
|
|
|
|
.where(:save_to_repository_id => repository)
|
|
|
|
.where(:build_list_packages => {:fullname => name, :actual => true})
|
|
|
|
.joins(:packages)
|
|
|
|
.last
|
|
|
|
|
|
|
|
return @build_list
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
@name ||= @path.gsub(/.*#{File::SEPARATOR}/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
def size
|
2013-10-02 11:01:48 +01:00
|
|
|
@size ||= File.size(@path) rescue nil
|
2013-07-05 17:08:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_folder?
|
2013-07-24 11:37:25 +01:00
|
|
|
@is_folder.nil? ? (@is_folder = File.directory?(@path)) : @is_folder
|
2013-07-05 17:08:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def download_url
|
2013-07-24 11:37:25 +01:00
|
|
|
suffix = @path.gsub(/^#{@platform.path}/, '')
|
2013-07-05 17:08:09 +01:00
|
|
|
"#{APP_CONFIG['downloads_url']}/#{@platform.name}#{suffix}"
|
|
|
|
end
|
|
|
|
|
|
|
|
# ---------------------
|
|
|
|
# *** CLASS METHODS ***
|
|
|
|
# ---------------------
|
|
|
|
|
|
|
|
def self.find_by_platform(platform, path, term)
|
2013-07-08 16:08:55 +01:00
|
|
|
# Strip out the non-ascii character
|
|
|
|
term = (term || '').strip.gsub(/[\\\/]+/, '')
|
2013-07-08 16:12:33 +01:00
|
|
|
.gsub(/[^\w\-\+\.]/, '_')
|
2013-07-08 16:08:55 +01:00
|
|
|
|
2013-07-08 16:12:33 +01:00
|
|
|
path = path.split(File::SEPARATOR).map(&:strip).select(&:present?)
|
2013-07-08 16:08:55 +01:00
|
|
|
.map{ |p|
|
|
|
|
# Strip out the non-ascii character
|
2013-07-08 16:12:33 +01:00
|
|
|
p.gsub(/[\\\/]+/, '')
|
2013-07-08 16:08:55 +01:00
|
|
|
.gsub(/^[\.]+/, '')
|
|
|
|
.gsub(/[^\w\-\.]/, '_')
|
|
|
|
}
|
2013-07-05 17:08:09 +01:00
|
|
|
.join(File::SEPARATOR)
|
|
|
|
results = Dir.glob(File.join(platform.path, path, "*#{term}*"))
|
|
|
|
if term
|
|
|
|
results = results.sort_by(&:length)
|
|
|
|
else
|
|
|
|
results = results.sort
|
|
|
|
end
|
|
|
|
results.map{ |p| PlatformContent.new(platform, p) }
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|