180 lines
3.3 KiB
Ruby
180 lines
3.3 KiB
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
module StaticAssets
|
|
|
|
=begin
|
|
|
|
file_attributes = StaticAssets.data_url_attributes(data_url)
|
|
|
|
returns
|
|
|
|
{
|
|
mime_type: 'image/png',
|
|
content: image_bin_content,
|
|
file_extention: 'png',
|
|
}
|
|
|
|
=end
|
|
|
|
def self.data_url_attributes(data_url)
|
|
data = {}
|
|
if data_url =~ %r{^data:(.+?);base64,(.+?)$}
|
|
data[:mime_type] = $1
|
|
data[:content] = Base64.decode64($2)
|
|
if data[:mime_type] =~ %r{/(.+?)$}
|
|
data[:file_extention] = $1
|
|
end
|
|
return data
|
|
end
|
|
raise "Unable to parse data url: #{data_url&.slice(0, 100)}"
|
|
end
|
|
|
|
=begin
|
|
|
|
store image 1:1 in backend and return filename
|
|
|
|
filename = StaticAssets.store_raw(content, content_type)
|
|
|
|
returns
|
|
|
|
filename # hash.png
|
|
|
|
=end
|
|
|
|
def self.store_raw(content, content_type)
|
|
Store.remove(object: 'System::Logo', o_id: 1)
|
|
file = Store.add(
|
|
object: 'System::Logo',
|
|
o_id: 1,
|
|
data: content,
|
|
filename: 'logo_raw',
|
|
preferences: {
|
|
'Content-Type' => content_type
|
|
},
|
|
created_by_id: 1,
|
|
)
|
|
filename(file)
|
|
end
|
|
|
|
=begin
|
|
|
|
read image 1:1 size in backend and return file (Store model)
|
|
|
|
store = StaticAssets.read_raw
|
|
|
|
returns
|
|
|
|
store # Store model, e.g. store.content or store.preferences
|
|
|
|
=end
|
|
|
|
def self.read_raw
|
|
list = Store.list(object: 'System::Logo', o_id: 1)
|
|
if list && list[0]
|
|
return Store.find(list[0])
|
|
end
|
|
|
|
raise 'No such raw logo!'
|
|
end
|
|
|
|
=begin
|
|
|
|
store image in right size (resized) in backend and return filename
|
|
|
|
filename = StaticAssets.store( content, content_type )
|
|
|
|
returns
|
|
|
|
filename # hash.png
|
|
|
|
=end
|
|
|
|
def self.store(content, content_type)
|
|
Store.remove(object: 'System::Logo', o_id: 2)
|
|
file = Store.add(
|
|
object: 'System::Logo',
|
|
o_id: 2,
|
|
data: content,
|
|
filename: 'logo',
|
|
preferences: {
|
|
'Content-Type' => content_type
|
|
},
|
|
created_by_id: 1,
|
|
)
|
|
StaticAssets.sync
|
|
filename(file)
|
|
end
|
|
|
|
=begin
|
|
|
|
read image size from backend (if not exists, read 1:1 size) and return file (Store model)
|
|
|
|
store = StaticAssets.read
|
|
|
|
returns
|
|
|
|
store # Store model, e.g. store.content or store.preferences
|
|
|
|
=end
|
|
|
|
def self.read
|
|
|
|
# use reduced dimensions
|
|
list = Store.list(object: 'System::Logo', o_id: 2)
|
|
|
|
# as fallback use 1:1
|
|
if !list || !list[0]
|
|
list = Store.list(object: 'System::Logo', o_id: 1)
|
|
end
|
|
|
|
# store hash in config
|
|
return if !list || !list[0]
|
|
|
|
file = Store.find(list[0].id)
|
|
filelocation = filename(file)
|
|
Setting.set('product_logo', filelocation)
|
|
file
|
|
end
|
|
|
|
=begin
|
|
|
|
generate filename based on Store model
|
|
|
|
filename = StaticAssets.filename(store)
|
|
|
|
=end
|
|
|
|
def self.filename(file)
|
|
hash = Digest::MD5.hexdigest(file.content)
|
|
extention = ''
|
|
case file.preferences['Content-Type']
|
|
when %r{jpg|jpeg}i
|
|
extention = '.jpg'
|
|
when %r{png}i
|
|
extention = '.png'
|
|
when %r{gif}i
|
|
extention = '.gif'
|
|
when %r{svg}i
|
|
extention = '.svg'
|
|
end
|
|
"#{hash}#{extention}"
|
|
end
|
|
|
|
=begin
|
|
|
|
sync image to fs (public/assets/images/hash.png)
|
|
|
|
StaticAssets.sync
|
|
|
|
=end
|
|
|
|
def self.sync
|
|
file = read
|
|
return if !file
|
|
|
|
path = Rails.root.join('public', 'assets', 'images', filename(file))
|
|
File.open(path, 'wb') do |f|
|
|
f.puts file.content
|
|
end
|
|
end
|
|
end
|