-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathcamaleon_cms_uploader.rb
More file actions
176 lines (152 loc) · 5.84 KB
/
camaleon_cms_uploader.rb
File metadata and controls
176 lines (152 loc) · 5.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
class CamaleonCmsUploader
PRIVATE_DIRECTORY = 'private'.freeze
attr_accessor :thumb
# root_folder= '/var/www/my_public_foler/', current_site= CamaSite.first.decorate, thumb = {w: 100, h: 75},
# aws_settings: {region, access_key, secret_key, bucket}
def initialize(args = {}, instance = nil)
@current_site = args[:current_site]
t_w, t_h = @current_site.get_option('filesystem_thumb_size', '100x100').split('x')
@thumb = args[:thumb] || { w: t_w, h: t_h }
@aws_settings = args[:aws_settings] || {}
@args = args
@instance = instance
after_initialize
end
def after_initialize; end
# load media files from a specific folder path
def objects(prefix = '/', _sort = 'created_at')
prefix = prefix.cama_fix_media_key
browser_files unless get_media_collection.any?
res = if ['/',
''].include?(prefix)
get_media_collection.where(folder_path: '/')
else
get_media_collection.find_by_key(prefix).take.try(:items)
end
# Private hook to recover custom files to include in current list where data can be modified to add custom{files, folders}
# Note: this hooks doesn't have access to public vars like params. requests, ...
if @instance
args = { data: res, prefix: prefix }
@instance.hooks_run('uploader_list_objects', args)
res = args[:data]
end
res
end
# clean cached of files structure saved into DB
def clear_cache
get_media_collection.destroy_all
end
# search for folders or files that includes search_text in their names
def search(search_text)
get_media_collection.search(search_text)
end
# reload cache files structure
def reload
browser_files
end
# save file_parsed as a cache into DB
# file_parsed: (HASH) File parsed object
# objects_db: HASH Object where to add the current object (optional)
def cache_item(file_parsed, _objects_db = nil, _custom_cache_key = nil)
unless get_media_collection.where(name: file_parsed['name'], folder_path: file_parsed['folder_path']).any?
a = get_media_collection.new(file_parsed.except('key'))
a.save!
end
file_parsed
end
# return the media collection for current situation
def get_media_collection
is_private_uploader? ? @current_site.public_media : @current_site.private_media
end
# convert current string path into file version_path, sample:
# version_path('/media/1/screen.png') into /media/1/thumb/screen-png.png (thumbs)
# Sample: version_path('/media/1/screen.png', '200x200') ==> /media/1/thumb/screen-png_200x200.png (image versions)
def version_path(image_path, version_name = nil)
res = File.join(File.dirname(image_path), 'thumb',
"#{File.basename(image_path).parameterize}#{File.extname(image_path)}")
res = res.cama_add_postfix_file_name("_#{version_name}") if version_name.present?
res
end
# return the file format (String) of path (depends of file extension)
def self.get_file_format(path)
ext = File.extname(path).sub('.', '').downcase
format = 'unknown'
format = 'image' if get_file_format_extensions('image').split(',').include?(ext)
format = 'video' if get_file_format_extensions('video').split(',').include?(ext)
format = 'audio' if get_file_format_extensions('audio').split(',').include?(ext)
format = 'document' if get_file_format_extensions('document').split(',').include?(ext)
format = 'compress' if get_file_format_extensions('compress').split(',').include?(ext)
format
end
# return the files extensión for each format
# support for multiples formats, sample: image,audio
def self.get_file_format_extensions(format)
res = []
format.downcase.gsub(' ', '').split(',').each do |f|
res << case f
when 'image', 'images'
'jpg,jpeg,png,gif,bmp,ico,svg'
when 'video', 'videos'
'flv,webm,wmv,avi,swf,mp4,mov,mpg'
when 'audio'
'mp3,ogg'
when 'document', 'documents'
'pdf,xls,xlsx,doc,docx,ppt,pptx,html,txt,xml,json'
when 'compress'
'zip,7z,rar,tar,bz2,gz,rar2'
else
''
end
end
res.join(',')
end
# verify permitted formats (return boolean true | false)
# true: if format is accepted
# false: if format is not accepted
# sample: validate_file_format('/var/www/myfile.xls', 'image,audio,docx,xls') => return true if the file extension is in formats
def self.validate_file_format(key, valid_formats = '*')
return true if valid_formats == '*' || !valid_formats.present?
valid_formats = valid_formats.gsub(' ',
'').downcase.split(',') + get_file_format_extensions(valid_formats).split(',')
valid_formats.include?(File.extname(key).sub('.', '').split('?').first.try(:downcase))
end
# verify if this file name already exist
# if the file is already exist, return a new name for this file
# sample: search_new_key("my_file/file.txt")
def search_new_key(key)
_key = key
if get_media_collection.find_by_key(key).any?
(1..999).each do |i|
_key = key.cama_add_postfix_file_name("_#{i}")
break unless get_media_collection.find_by_key(_key).any?
end
end
_key
end
# check if file with :key exist and return parsed_file, else return nil
def get_file(key, use_cache = true)
# deprecated
end
def enable_private_mode!
@args[:private] = true
setup_private_folder
end
def disable_private_mode!
@args[:private] = false
end
def file_exists?(file_name)
File.exist?(file_name)
end
def self.delete_block(&block)
@delete_block = block if block
@delete_block
end
private
def cache_key
"cama_media_cache#{'_private' if is_private_uploader?}"
end
# check if this uploader is private mode
def is_private_uploader?
@args[:private]
end
end