本文整理汇总了Python中background.Background.createBackground方法的典型用法代码示例。如果您正苦于以下问题:Python Background.createBackground方法的具体用法?Python Background.createBackground怎么用?Python Background.createBackground使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类background.Background
的用法示例。
在下文中一共展示了Background.createBackground方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: promptUserForPin
# 需要导入模块: from background import Background [as 别名]
# 或者: from background.Background import createBackground [as 别名]
def promptUserForPin():
userHasAccess = True
# Set the background
background = Background.createBackground()
if background is not None:
background.show()
# Prompt the user to enter the pin
numberpad = NumberPad.createNumberPad()
numberpad.doModal()
# Remove the background if we had one
if background is not None:
background.close()
del background
# Get the code that the user entered
enteredPin = numberpad.getPin()
del numberpad
# Check to see if the pin entered is correct
if Settings.isPinCorrect(enteredPin):
log("PinSentry: Pin entered Correctly")
userHasAccess = True
# Check if we are allowed to cache the pin level
PinSentry.setCachedPinLevel(1)
else:
log("PinSentry: Incorrect Pin Value Entered")
userHasAccess = False
return userHasAccess
示例2: promptUserForPin
# 需要导入模块: from background import Background [as 别名]
# 或者: from background.Background import createBackground [as 别名]
def promptUserForPin(requiredLevel=1):
userHasAccess = True
# Set the background
background = Background.createBackground()
if background is not None:
background.show()
# Prompt the user to enter the pin
numberpad = NumberPad.createNumberPad()
numberpad.doModal()
# Remove the background if we had one
if background is not None:
background.close()
del background
# Get the code that the user entered
enteredPin = numberpad.getPin()
del numberpad
# Find out what level this pin gives access to
# This will be the highest level
pinMatchLevel = Settings.getSecurityLevelForPin(enteredPin)
# Check to see if the pin entered is correct
if pinMatchLevel >= requiredLevel:
log("PinSentry: Pin entered correctly for security level %d" % pinMatchLevel)
userHasAccess = True
# Check if we are allowed to cache the pin level
PinSentry.setCachedPinLevel(pinMatchLevel)
else:
log("PinSentry: Incorrect Pin Value Entered, required level %d entered level %d" % (requiredLevel, pinMatchLevel))
userHasAccess = False
return userHasAccess
示例3: startupCheck
# 需要导入模块: from background import Background [as 别名]
# 或者: from background.Background import createBackground [as 别名]
def startupCheck(self):
# When the system starts up we need to check to see if User restriction is enabled
if Settings.getNumberOfLimitedUsers() < 1:
log("UserPinControl: No Limited users configured")
self.isEnabled = False
return
self.isEnabled = True
# Set the background
background = Background.createBackground()
if background is not None:
background.show()
preventAccess = False
tryAgain = True
while tryAgain:
tryAgain = False
# Need to find out which user this is, so prompt them for a pin
numberpad = NumberPad.createNumberPad()
numberpad.doModal()
# Get the code that the user entered
enteredPin = numberpad.getPin()
del numberpad
# Find out which user owns this pin
self.userId = Settings.getUserForPin(enteredPin)
# Check for the unrestricted user
if self.userId == "unrestrictedUserPin":
log("UserPinControl: Unrestricted user pin entered")
self.isEnabled = False
break
if self.userId in [None, ""]:
log("UserPinControl: Unknown pin entered, offering retry")
# This is not a valid user, so display the error message and work out
# if we should prompt the user again or shutdown the system
tryAgain = xbmcgui.Dialog().yesno(__addon__.getLocalizedString(32001).encode('utf-8'), __addon__.getLocalizedString(32104).encode('utf-8'), __addon__.getLocalizedString(32129).encode('utf-8'))
if not tryAgain:
# Need to stop this user accessing the system
preventAccess = True
# Remove the background if we had one
if background is not None:
background.close()
del background
if preventAccess:
log("UserPinControl: Shutting down as unknown user pin entered")
self.shutdown()
elif self.isEnabled:
log("UserPinControl: User logged in is %s" % self.userId)
# Load the settings for this user
self.allowedStartTime, displayStartTime = Settings.getUserStartTime(self.userId)
self.allowedEndTime, displayEndTime = Settings.getUserEndTime(self.userId)
self.usedViewingLimit = Settings.getUserViewingUsedTime(self.userId)
self.displaySummary()
# Now we can record when this user started viewing in this session
localTime = time.localtime()
self.startedViewing = (localTime.tm_hour * 60) + localTime.tm_min
# We actually want to also record how many minutes have already been viewed in previous
# sessions, so roll the clock back by that much
self.startedViewing = self.startedViewing - self.usedViewingLimit
log("UserPinControl: Time already used for user is %d" % self.usedViewingLimit)
# Record that we are running as a restricted user so that the default script
# can display the status of how long is left when it is selected
xbmcgui.Window(10000).setProperty("PinSentry_RestrictedUser", self.userId)