146 lines
4.2 KiB
Python
146 lines
4.2 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
##################################################################################################
|
||
|
|
||
|
import logging
|
||
|
import os
|
||
|
|
||
|
import xbmcgui
|
||
|
import xbmcaddon
|
||
|
|
||
|
import read_embyserver as embyserver
|
||
|
from utils import language as lang
|
||
|
|
||
|
##################################################################################################
|
||
|
|
||
|
log = logging.getLogger("EMBY."+__name__)
|
||
|
addon = xbmcaddon.Addon('plugin.video.emby')
|
||
|
|
||
|
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 LoginManual(xbmcgui.WindowXMLDialog):
|
||
|
|
||
|
_user = None
|
||
|
error = None
|
||
|
username = None
|
||
|
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
|
||
|
self.emby = embyserver.Read_EmbyServer()
|
||
|
xbmcgui.WindowXMLDialog.__init__(self, *args, **kwargs)
|
||
|
|
||
|
def is_logged_in(self):
|
||
|
return True if self._user else False
|
||
|
|
||
|
def set_server(self, server):
|
||
|
self.server = server
|
||
|
|
||
|
def set_user(self, user):
|
||
|
self.username = user or {}
|
||
|
|
||
|
def get_user(self):
|
||
|
return self._user
|
||
|
|
||
|
def onInit(self):
|
||
|
|
||
|
self.signin_button = self.getControl(SIGN_IN)
|
||
|
self.cancel_button = self.getControl(CANCEL)
|
||
|
self.error_toggle = self.getControl(ERROR_TOGGLE)
|
||
|
self.error_msg = self.getControl(ERROR_MSG)
|
||
|
self.user_field = self._add_editcontrol(725, 400, 40, 500)
|
||
|
self.password_field = self._add_editcontrol(725, 475, 40, 500, password=1)
|
||
|
|
||
|
if self.username:
|
||
|
self.user_field.setText(self.username)
|
||
|
self.setFocus(self.password_field)
|
||
|
else:
|
||
|
self.setFocus(self.user_field)
|
||
|
|
||
|
self.user_field.controlUp(self.cancel_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.cancel_button.controlDown(self.user_field)
|
||
|
|
||
|
def onClick(self, control):
|
||
|
|
||
|
if control == SIGN_IN:
|
||
|
# Sign in to emby connect
|
||
|
self._disable_error()
|
||
|
|
||
|
user = self.user_field.getText()
|
||
|
password = self.password_field.getText()
|
||
|
|
||
|
if not user:
|
||
|
# Display error
|
||
|
self._error(ERROR['Empty'], lang(30613))
|
||
|
log.error("Username 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():
|
||
|
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(addon.getAddonInfo('path'), 'resources', 'skins', 'default', 'media')
|
||
|
control = xbmcgui.ControlEdit(0, 0, 0, 0,
|
||
|
label="User",
|
||
|
font="font10",
|
||
|
textColor="ff525252",
|
||
|
focusTexture=os.path.join(media, "button-focus.png"),
|
||
|
noFocusTexture=os.path.join(media, "button-focus.png"),
|
||
|
isPassword=password)
|
||
|
control.setPosition(x, y)
|
||
|
control.setHeight(height)
|
||
|
control.setWidth(width)
|
||
|
|
||
|
self.addControl(control)
|
||
|
return control
|
||
|
|
||
|
def _login(self, username, password):
|
||
|
|
||
|
result = self.emby.loginUser(self.server, username, password)
|
||
|
if not result:
|
||
|
self._error(ERROR['Invalid'], lang(33009))
|
||
|
return False
|
||
|
else:
|
||
|
self._user = result
|
||
|
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')
|