mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
147 lines
4.4 KiB
Python
147 lines
4.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
##################################################################################################
|
|
|
|
import logging
|
|
import os
|
|
|
|
import xbmcgui
|
|
import xbmcaddon
|
|
|
|
from helper import _, addon_id, settings, dialog
|
|
|
|
##################################################################################################
|
|
|
|
LOG = logging.getLogger("JELLYFIN."+__name__)
|
|
ACTION_PARENT_DIR = 9
|
|
ACTION_PREVIOUS_MENU = 10
|
|
ACTION_BACK = 92
|
|
SIGN_IN = 200
|
|
CANCEL = 201
|
|
ERROR_TOGGLE = 202
|
|
ERROR_MSG = 203
|
|
ERROR = {
|
|
'Invalid': 1,
|
|
'Empty': 2
|
|
}
|
|
|
|
##################################################################################################
|
|
|
|
|
|
class LoginConnect(xbmcgui.WindowXMLDialog):
|
|
|
|
_user = None
|
|
error = None
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
xbmcgui.WindowXMLDialog.__init__(self, *args, **kwargs)
|
|
|
|
def set_args(self, **kwargs):
|
|
# connect_manager, user_image, servers, jellyfin_connect
|
|
for key, value in kwargs.iteritems():
|
|
setattr(self, key, value)
|
|
|
|
def is_logged_in(self):
|
|
return True if self._user else False
|
|
|
|
def get_user(self):
|
|
return self._user
|
|
|
|
|
|
def onInit(self):
|
|
|
|
self.user_field = self._add_editcontrol(755, 338, 40, 415)
|
|
self.setFocus(self.user_field)
|
|
self.password_field = self._add_editcontrol(755, 448, 40, 415, password=1)
|
|
self.signin_button = self.getControl(SIGN_IN)
|
|
self.remind_button = self.getControl(CANCEL)
|
|
self.error_toggle = self.getControl(ERROR_TOGGLE)
|
|
self.error_msg = self.getControl(ERROR_MSG)
|
|
|
|
self.user_field.controlUp(self.remind_button)
|
|
self.user_field.controlDown(self.password_field)
|
|
self.password_field.controlUp(self.user_field)
|
|
self.password_field.controlDown(self.signin_button)
|
|
self.signin_button.controlUp(self.password_field)
|
|
self.remind_button.controlDown(self.user_field)
|
|
|
|
def onClick(self, control):
|
|
|
|
if control == SIGN_IN:
|
|
# Sign in to jellyfin connect
|
|
self._disable_error()
|
|
|
|
user = self.user_field.getText()
|
|
password = self.password_field.getText()
|
|
|
|
if not user or not password:
|
|
# Display error
|
|
self._error(ERROR['Empty'], _('empty_user_pass'))
|
|
LOG.error("Username or password cannot be null")
|
|
|
|
elif self._login(user, password):
|
|
self.close()
|
|
|
|
elif control == CANCEL:
|
|
# Remind me later
|
|
self.close()
|
|
|
|
def onAction(self, action):
|
|
|
|
if (self.error == ERROR['Empty']
|
|
and self.user_field.getText() and self.password_field.getText()):
|
|
self._disable_error()
|
|
|
|
if action in (ACTION_BACK, ACTION_PARENT_DIR, ACTION_PREVIOUS_MENU):
|
|
self.close()
|
|
|
|
def _add_editcontrol(self, x, y, height, width, password=0):
|
|
|
|
media = os.path.join(xbmcaddon.Addon(addon_id()).getAddonInfo('path'), 'resources', 'skins', 'default', 'media')
|
|
control = xbmcgui.ControlEdit(0, 0, 0, 0,
|
|
label="User",
|
|
font="font13",
|
|
textColor="FF52b54b",
|
|
disabledColor="FF888888",
|
|
focusTexture="-",
|
|
noFocusTexture="-",
|
|
isPassword=password)
|
|
control.setPosition(x, y)
|
|
control.setHeight(height)
|
|
control.setWidth(width)
|
|
|
|
self.addControl(control)
|
|
return control
|
|
|
|
def _login(self, username, password):
|
|
|
|
result = self.connect_manager['login-connect'](username, password)
|
|
if result is False:
|
|
self._error(ERROR['Invalid'], _('invalid_auth'))
|
|
|
|
return False
|
|
|
|
self._user = result
|
|
username = result['User']['Name']
|
|
settings('connectUsername', value=username)
|
|
settings('idMethod', value="1")
|
|
|
|
dialog("notification", heading="{jellyfin}", message="%s %s" % (_(33000), username.decode('utf-8')),
|
|
icon=result['User'].get('ImageUrl') or "{jellyfin}",
|
|
time=2000,
|
|
sound=False)
|
|
|
|
return True
|
|
|
|
def _error(self, state, message):
|
|
|
|
self.error = state
|
|
self.error_msg.setLabel(message)
|
|
self.error_toggle.setVisibleCondition('true')
|
|
|
|
def _disable_error(self):
|
|
|
|
self.error = None
|
|
self.error_toggle.setVisibleCondition('false')
|