本文整理汇总了Python中MaKaC.plugins.Collaboration.Vidyo.api.api.AdminApi.addRoom方法的典型用法代码示例。如果您正苦于以下问题:Python AdminApi.addRoom方法的具体用法?Python AdminApi.addRoom怎么用?Python AdminApi.addRoom使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MaKaC.plugins.Collaboration.Vidyo.api.api.AdminApi
的用法示例。
在下文中一共展示了AdminApi.addRoom方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: createRoom
# 需要导入模块: from MaKaC.plugins.Collaboration.Vidyo.api.api import AdminApi [as 别名]
# 或者: from MaKaC.plugins.Collaboration.Vidyo.api.api.AdminApi import addRoom [as 别名]
def createRoom(cls, booking):
""" Attempts to create a public room in Vidyo.
Returns None on success. Will also set booking.setAccountName() if success, with the Indico & Vidyo login used successfully.
Returns a VidyoError instance if there are problems.
:param booking: the CSBooking object inside which we try to create the room
:type booking: MaKaC.plugins.Collaboration.Vidyo.collaboration.CSBooking
"""
# we extract the different parameters
# We set the original conference id because the bookings can belong to more than one conference and being cloned
# and it is used for the long name, we need to keep always the same confId
confId = booking.getConference().getId()
bookingId = booking.getId()
roomName = booking.getBookingParamByName("roomName")
description = booking.getBookingParamByName("roomDescription")
owner = booking.getOwnerObject()
pin = booking.getPin()
moderatorPin = booking.getModeratorPin()
#we obtain the unicode object with the proper format for the room name
roomNameForVidyo = VidyoTools.roomNameForVidyo(roomName)
if isinstance(roomNameForVidyo, VidyoError):
return roomNameForVidyo
#we turn the description into a unicode object
description = VidyoTools.descriptionForVidyo(description)
if isinstance(description, VidyoError):
return description
#we obtain the most probable extension
#TODO: there's a length limit for extensions, check this
baseExtension = getVidyoOptionValue("prefix") + confId
extension = baseExtension
extensionSuffix = 1
#we produce the list of possible account names. We will loop through them to attempt to create the room
possibleLogins = VidyoTools.getAvatarLoginList(owner)
if not possibleLogins:
return VidyoError("userHasNoAccounts", "create")
# We check the moderator PIN is a 3-10 digit number
if moderatorPin and (not moderatorPin.isdigit() or len(moderatorPin) < 3 or len(moderatorPin) > 10):
return VidyoError("PINLength", "create")
roomCreated = False
loginToUse = 0
while not roomCreated and loginToUse < len(possibleLogins):
#we loop changing the ownerName and the extension until room is created
newRoom = SOAPObjectFactory.createRoom(roomNameForVidyo, description, possibleLogins[loginToUse], extension, pin, moderatorPin)
try:
AdminApi.addRoom(newRoom)
roomCreated = True
except WebFault, e:
faultString = e.fault.faultstring
if faultString.startswith('Room exist for name'):
if VidyoOperations.roomWithSameOwner(possibleLogins[loginToUse], roomNameForVidyo):
return VidyoError("duplicatedWithOwner", "create")
else:
return VidyoError("duplicated", "create")
elif faultString.startswith('Member not found for ownerName'):
loginToUse = loginToUse + 1
elif faultString.startswith('PIN should be a 3-10 digit number'):
return VidyoError("PINLength", "create")
elif faultString.startswith('Room exist for extension'):
extension = baseExtension + str(extensionSuffix)
extensionSuffix = extensionSuffix + 1
else:
Logger.get('Vidyo').exception("""Evt:%s, booking:%s, Admin API's addRoom operation got WebFault: %s""" %
(confId, bookingId, e.fault.faultstring))
raise