You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
934 B
35 lines
934 B
from couchpotato.core.event import fireEvent, addEvent
|
|
from couchpotato.core.logger import CPLog
|
|
from couchpotato.core.plugins.base import Plugin
|
|
from couchpotato.environment import Env
|
|
|
|
log = CPLog(__name__)
|
|
|
|
if Env.get('desktop'):
|
|
|
|
class Desktop(Plugin):
|
|
|
|
def __init__(self):
|
|
|
|
desktop = Env.get('desktop')
|
|
desktop.setSettings({
|
|
'base_url': fireEvent('app.base_url', single = True),
|
|
'api_url': fireEvent('app.api_url', single = True),
|
|
'api': Env.setting('api'),
|
|
})
|
|
|
|
# Events from desktop
|
|
desktop.addEvents({
|
|
'onClose': self.onClose,
|
|
})
|
|
|
|
# Events to desktop
|
|
addEvent('app.after_shutdown', desktop.afterShutdown)
|
|
|
|
def onClose(self, event):
|
|
return fireEvent('app.crappy_shutdown', single = True)
|
|
|
|
else:
|
|
|
|
class Desktop(Plugin):
|
|
pass
|
|
|