mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
93 lines
1.9 KiB
Ruby
93 lines
1.9 KiB
Ruby
|
class Emoji
|
||
|
include ActiveModel::SerializerSupport
|
||
|
|
||
|
attr_reader :path
|
||
|
attr_accessor :name, :url
|
||
|
|
||
|
# whitelist emojis so that new user can post emojis
|
||
|
Post::white_listed_image_classes << "emoji"
|
||
|
|
||
|
def initialize(path = nil)
|
||
|
@path = path
|
||
|
end
|
||
|
|
||
|
def remove
|
||
|
return if path.blank?
|
||
|
if File.exists?(path)
|
||
|
File.delete(path) rescue nil
|
||
|
Emoji.clear_cache
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.all
|
||
|
@all ||= standard | custom
|
||
|
end
|
||
|
|
||
|
def self.standard
|
||
|
@standard ||= load_standard
|
||
|
end
|
||
|
|
||
|
def self.custom
|
||
|
@custom ||= load_custom
|
||
|
end
|
||
|
|
||
|
def self.create_from_path(path)
|
||
|
extension = File.extname(path)
|
||
|
Emoji.new(path).tap do |e|
|
||
|
e.name = File.basename(path, ".*")
|
||
|
e.url = "/#{base_url}/#{e.name}#{extension}"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.create_from_db_item(emoji)
|
||
|
name = emoji["aliases"].first
|
||
|
filename = "#{name}.png"
|
||
|
Emoji.new.tap do |e|
|
||
|
e.name = name
|
||
|
e.url = "/images/emoji/#{SiteSetting.emoji_set}/#{filename}"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.create_for(file, name)
|
||
|
extension = File.extname(file.original_filename)
|
||
|
path = "#{Emoji.base_directory}/#{name}#{extension}"
|
||
|
# store the emoji
|
||
|
FileUtils.mkdir_p(Pathname.new(path).dirname)
|
||
|
File.open(path, "wb") { |f| f << file.tempfile.read }
|
||
|
# clear the cache
|
||
|
Emoji.clear_cache
|
||
|
# return created emoji
|
||
|
Emoji.custom.detect { |e| e.name == name }
|
||
|
end
|
||
|
|
||
|
def self.clear_cache
|
||
|
@custom = nil
|
||
|
@all = nil
|
||
|
end
|
||
|
|
||
|
def self.db_file
|
||
|
"lib/emoji/db.json"
|
||
|
end
|
||
|
|
||
|
def self.load_standard
|
||
|
File.open(db_file, "r:UTF-8") { |f| JSON.parse(f.read) }
|
||
|
.map { |emoji| Emoji.create_from_db_item(emoji) }
|
||
|
end
|
||
|
|
||
|
def self.load_custom
|
||
|
Dir.glob(File.join(Emoji.base_directory, "*.{png,gif}"))
|
||
|
.sort
|
||
|
.map { |emoji| Emoji.create_from_path(emoji) }
|
||
|
end
|
||
|
|
||
|
def self.base_directory
|
||
|
"public/#{base_url}"
|
||
|
end
|
||
|
|
||
|
def self.base_url
|
||
|
db = RailsMultisite::ConnectionManagement.current_db
|
||
|
"uploads/#{db}/_emoji"
|
||
|
end
|
||
|
|
||
|
end
|