toxygen/toxygen/smileys.py

92 lines
3.1 KiB
Python
Raw Normal View History

2016-06-11 10:36:52 +00:00
import util
import json
2016-06-11 12:37:52 +00:00
import os
from collections import OrderedDict
2016-06-11 10:36:52 +00:00
try:
from PySide import QtCore
except ImportError:
from PyQt4 import QtCore
class SmileyLoader(util.Singleton):
2016-06-11 12:37:52 +00:00
"""
Class which loads smileys packs and insert smileys into messages
"""
2016-06-11 10:36:52 +00:00
def __init__(self, settings):
2016-06-22 11:35:22 +00:00
super().__init__()
2016-06-13 21:32:45 +00:00
self._settings = settings
self._curr_pack = None # current pack name
self._smileys = {} # smileys dict. key - smiley (str), value - path to image (str)
self._list = [] # smileys list without duplicates
2016-06-11 10:36:52 +00:00
self.load_pack()
def load_pack(self):
2016-06-11 12:37:52 +00:00
"""
Loads smiley pack
"""
2016-06-13 21:32:45 +00:00
pack_name = self._settings['smiley_pack']
if self._settings['smileys'] and self._curr_pack != pack_name:
self._curr_pack = pack_name
2016-06-11 10:36:52 +00:00
path = self.get_smileys_path() + 'config.json'
try:
2016-06-28 18:47:49 +00:00
with open(path, encoding='utf8') as fl:
2016-06-13 21:32:45 +00:00
self._smileys = json.loads(fl.read())
fl.seek(0)
tmp = json.loads(fl.read(), object_pairs_hook=OrderedDict)
2016-06-21 11:58:11 +00:00
print('Smiley pack {} loaded'.format(pack_name))
keys, values, self._list = [], [], []
for key, value in tmp.items():
2016-06-14 18:47:03 +00:00
value = self.get_smileys_path() + value
if value not in values:
keys.append(key)
values.append(value)
2016-06-23 08:18:18 +00:00
self._list = list(zip(keys, values))
except Exception as ex:
2016-06-13 21:32:45 +00:00
self._smileys = {}
self._list = []
2016-06-21 11:58:11 +00:00
print('Smiley pack {} was not loaded. Error: {}'.format(pack_name, ex))
2016-06-11 10:36:52 +00:00
def get_smileys_path(self):
2016-06-13 21:32:45 +00:00
return util.curr_directory() + '/smileys/' + self._curr_pack + '/'
2016-06-11 10:36:52 +00:00
2016-06-11 12:37:52 +00:00
def get_packs_list(self):
d = util.curr_directory() + '/smileys/'
return [x[1] for x in os.walk(d)][0]
2016-06-14 18:47:03 +00:00
def get_smileys(self):
2016-06-23 08:18:18 +00:00
return list(self._list)
2016-06-14 18:47:03 +00:00
2016-06-11 10:36:52 +00:00
def add_smileys_to_text(self, text, edit):
2016-06-11 12:37:52 +00:00
"""
Adds smileys to text
:param text: message
:param edit: MessageEdit instance
:return text with smileys
"""
2016-06-14 18:47:03 +00:00
if not self._settings['smileys'] or not len(self._smileys):
2016-06-11 10:36:52 +00:00
return text
arr = text.split(' ')
for i in range(len(arr)):
2016-06-13 21:32:45 +00:00
if arr[i] in self._smileys:
file_name = self._smileys[arr[i]] # image name
2016-06-21 11:58:11 +00:00
arr[i] = '<img title=\"{}\" src=\"{}\" />'.format(arr[i], file_name)
2016-06-11 12:37:52 +00:00
if file_name.endswith('.gif'): # animated smiley
2016-06-11 10:36:52 +00:00
edit.addAnimation(QtCore.QUrl(file_name), self.get_smileys_path() + file_name)
return ' '.join(arr)
2016-06-13 21:32:45 +00:00
def sticker_loader():
"""
:return list of stickers
2016-06-13 21:32:45 +00:00
"""
2016-06-14 20:55:41 +00:00
result = []
2016-06-13 21:32:45 +00:00
d = util.curr_directory() + '/stickers/'
keys = [x[1] for x in os.walk(d)][0]
for key in keys:
2016-06-14 20:55:41 +00:00
path = d + key + '/'
files = filter(lambda f: f.endswith('.png'), os.listdir(path))
2016-06-21 11:58:11 +00:00
files = map(lambda f: str(path + f), files)
2016-06-14 20:55:41 +00:00
result.extend(files)
2016-06-13 21:32:45 +00:00
return result