|
|
|
|
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
|
|
|
|
__version__ = '7.02.02'
|
|
|
|
|
__version__ = '7.02.09'
|
|
|
|
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
|
|
|
|
|
|
|
|
|
#pylint: disable=wrong-import-position
|
|
|
|
|
@@ -628,7 +628,7 @@ def formatKeyValueList(prefixStr, kvList, suffixStr):
|
|
|
|
|
msg += suffixStr
|
|
|
|
|
return msg
|
|
|
|
|
|
|
|
|
|
# Something's wrong with CustomerID
|
|
|
|
|
# Something's wrong with CustomerID??
|
|
|
|
|
def accessErrorMessage(cd, errMsg=None):
|
|
|
|
|
if cd is None:
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
@@ -652,10 +652,12 @@ def accessErrorMessage(cd, errMsg=None):
|
|
|
|
|
Ent.DOMAIN, GC.Values[GC.DOMAIN],
|
|
|
|
|
Ent.USER, GM.Globals[GM.ADMIN]])+[Msg.ACCESS_FORBIDDEN],
|
|
|
|
|
'')
|
|
|
|
|
return formatKeyValueList('',
|
|
|
|
|
[Ent.Singular(Ent.CUSTOMER_ID), GC.Values[GC.CUSTOMER_ID],
|
|
|
|
|
errMsg],
|
|
|
|
|
'')
|
|
|
|
|
if errMsg:
|
|
|
|
|
return formatKeyValueList('',
|
|
|
|
|
[Ent.Singular(Ent.CUSTOMER_ID), GC.Values[GC.CUSTOMER_ID],
|
|
|
|
|
errMsg],
|
|
|
|
|
'')
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
def accessErrorExit(cd, errMsg=None):
|
|
|
|
|
systemErrorExit(INVALID_DOMAIN_RC, accessErrorMessage(cd or buildGAPIObject(API.DIRECTORY), errMsg))
|
|
|
|
|
@@ -23169,8 +23171,8 @@ def printShowContactDelegates(users):
|
|
|
|
|
continue
|
|
|
|
|
jcount = len(delegates)
|
|
|
|
|
if not csvPF:
|
|
|
|
|
entityPerformActionNumItems([Ent.USER, user], jcount, Ent.CONTACT_DELEGATE, i, count)
|
|
|
|
|
if not csvStyle:
|
|
|
|
|
entityPerformActionNumItems([Ent.USER, user], jcount, Ent.CONTACT_DELEGATE, i, count)
|
|
|
|
|
Ind.Increment()
|
|
|
|
|
j = 0
|
|
|
|
|
for delegate in delegates:
|
|
|
|
|
@@ -27892,14 +27894,28 @@ def _getPolicyGroupTarget(cd, cp, myarg, orgUnit):
|
|
|
|
|
targetResource = f"groups/{convertEmailAddressToUID(targetName, cd, emailType='group')}"
|
|
|
|
|
return (targetName, targetName, targetResource, Ent.GROUP, cp.customers().policies().groups())
|
|
|
|
|
|
|
|
|
|
def checkPolicyArgs(targetResource, printer_id, app_id):
|
|
|
|
|
if not targetResource:
|
|
|
|
|
missingArgumentExit('ou|org|orgunit|group')
|
|
|
|
|
if printer_id and app_id:
|
|
|
|
|
usageErrorExit(Msg.ARE_MUTUALLY_EXCLUSIVE.format('printerid', 'appid'))
|
|
|
|
|
|
|
|
|
|
def setPolicyKVList(baseList, printer_id, app_id):
|
|
|
|
|
kvList = baseList[:]
|
|
|
|
|
if app_id:
|
|
|
|
|
kvList.extend([Ent.APP_ID, app_id])
|
|
|
|
|
elif printer_id:
|
|
|
|
|
kvList.extend([Ent.PRINTER_ID, printer_id])
|
|
|
|
|
return kvList
|
|
|
|
|
|
|
|
|
|
def updatePolicyRequests(body, targetResource, printer_id, app_id):
|
|
|
|
|
for request in body['requests']:
|
|
|
|
|
request.setdefault('policyTargetKey', {})
|
|
|
|
|
request['policyTargetKey']['targetResource'] = targetResource
|
|
|
|
|
if printer_id:
|
|
|
|
|
request['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printer_id}
|
|
|
|
|
elif app_id:
|
|
|
|
|
if app_id:
|
|
|
|
|
request['policyTargetKey']['additionalTargetKeys'] = {'app_id': app_id}
|
|
|
|
|
elif printer_id:
|
|
|
|
|
request['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printer_id}
|
|
|
|
|
|
|
|
|
|
# gam delete chromepolicy
|
|
|
|
|
# (<SchemaName> [<JSONData>])+
|
|
|
|
|
@@ -27935,15 +27951,14 @@ def doDeleteChromePolicy():
|
|
|
|
|
body['requests'][-1].setdefault('policyTargetKey', {})
|
|
|
|
|
for atk in jsonData['additionalTargetKeys']:
|
|
|
|
|
body['requests'][-1]['policyTargetKey']['additionalTargetKeys'] = {atk['name']: atk['value']}
|
|
|
|
|
if not targetResource:
|
|
|
|
|
missingArgumentExit('ou|org|orgunit|group')
|
|
|
|
|
checkPolicyArgs(targetResource, printer_id, app_id)
|
|
|
|
|
count = len(body['requests'])
|
|
|
|
|
if count != 1:
|
|
|
|
|
entityPerformActionNumItems([entityType, targetName], count, Ent.CHROME_POLICY)
|
|
|
|
|
if count == 0:
|
|
|
|
|
return
|
|
|
|
|
kvList = setPolicyKVList([entityType, targetName, Ent.CHROME_POLICY, ','.join(schemaNameList)], printer_id, app_id)
|
|
|
|
|
updatePolicyRequests(body, targetResource, printer_id, app_id)
|
|
|
|
|
kvList = [entityType, targetName, Ent.CHROME_POLICY, ','.join(schemaNameList)]
|
|
|
|
|
try:
|
|
|
|
|
callGAPI(service, function,
|
|
|
|
|
throwReasons=[GAPI.NOT_FOUND, GAPI.PERMISSION_DENIED,
|
|
|
|
|
@@ -28189,12 +28204,11 @@ def doUpdateChromePolicy():
|
|
|
|
|
invalidArgumentExit(Msg.CHROME_TARGET_VERSION_FORMAT)
|
|
|
|
|
body['requests'][-1]['policyValue']['value'][casedField] = value
|
|
|
|
|
body['requests'][-1]['updateMask'] += f'{casedField},'
|
|
|
|
|
if not targetResource:
|
|
|
|
|
missingArgumentExit('ou|org|orgunit|group')
|
|
|
|
|
checkPolicyArgs(targetResource, printer_id, app_id)
|
|
|
|
|
count = len(body['requests'])
|
|
|
|
|
if count > 0 and not body['requests'][-1]['updateMask']:
|
|
|
|
|
body['requests'].pop()
|
|
|
|
|
kvList = [entityType, targetName, Ent.CHROME_POLICY, ','.join(schemaNameList)]
|
|
|
|
|
kvList = setPolicyKVList([entityType, targetName, Ent.CHROME_POLICY, ','.join(schemaNameList)], printer_id, app_id)
|
|
|
|
|
if count != 1:
|
|
|
|
|
entityPerformActionNumItems(kvList, count, Ent.CHROME_POLICY)
|
|
|
|
|
if count == 0:
|
|
|
|
|
@@ -28236,10 +28250,10 @@ CHROME_POLICY_SHOW_CHOICE_MAP = {
|
|
|
|
|
def doPrintShowChromePolicies():
|
|
|
|
|
def normalizedPolicy(policy):
|
|
|
|
|
norm = {'name': policy['value']['policySchema']}
|
|
|
|
|
if printerId:
|
|
|
|
|
norm['printerId'] = printerId
|
|
|
|
|
elif appId:
|
|
|
|
|
norm['appId'] = appId
|
|
|
|
|
if app_id:
|
|
|
|
|
norm['appId'] = app_id
|
|
|
|
|
elif printer_id:
|
|
|
|
|
norm['printerId'] = printer_id
|
|
|
|
|
if entityType == Ent.ORGANIZATIONAL_UNIT:
|
|
|
|
|
orgUnitId = policy.get('targetKey', {}).get('targetResource')
|
|
|
|
|
norm['orgUnitPath'] = convertOrgUnitIDtoPath(cd, orgUnitId) if orgUnitId else UNKNOWN
|
|
|
|
|
@@ -28335,7 +28349,7 @@ def doPrintShowChromePolicies():
|
|
|
|
|
if csvPF:
|
|
|
|
|
csvPF.SetNoEscapeChar(True)
|
|
|
|
|
FJQC = FormatJSONQuoteChar(csvPF)
|
|
|
|
|
appId = groupEmail = orgUnit = printerId = None
|
|
|
|
|
app_id = groupEmail = orgUnit = printer_id = targetResource = None
|
|
|
|
|
showPolicies = CHROME_POLICY_SHOW_ALL
|
|
|
|
|
psFilters = []
|
|
|
|
|
while Cmd.ArgumentsRemaining():
|
|
|
|
|
@@ -28346,10 +28360,10 @@ def doPrintShowChromePolicies():
|
|
|
|
|
orgUnit, targetName, targetResource, entityType, _ = _getPolicyOrgUnitTarget(cd, cp, myarg, groupEmail)
|
|
|
|
|
elif myarg == 'group':
|
|
|
|
|
groupEmail, targetName, targetResource, entityType, _ = _getPolicyGroupTarget(cd, cp, myarg, orgUnit)
|
|
|
|
|
elif (not printerId and not appId) and myarg == 'printerid':
|
|
|
|
|
printerId = getString(Cmd.OB_PRINTER_ID)
|
|
|
|
|
elif (not printerId and not appId) and myarg == 'appid':
|
|
|
|
|
appId = getString(Cmd.OB_APP_ID)
|
|
|
|
|
elif myarg == 'printerid':
|
|
|
|
|
printer_id = getString(Cmd.OB_PRINTER_ID)
|
|
|
|
|
elif myarg == 'appid':
|
|
|
|
|
app_id = getString(Cmd.OB_APP_ID)
|
|
|
|
|
elif myarg == 'filter':
|
|
|
|
|
for psFilter in getString(Cmd.OB_STRING).replace(',', ' ').split():
|
|
|
|
|
psFilters.append(psFilter)
|
|
|
|
|
@@ -28363,20 +28377,19 @@ def doPrintShowChromePolicies():
|
|
|
|
|
showPolicies = getChoice(CHROME_POLICY_SHOW_CHOICE_MAP, mapChoice=True)
|
|
|
|
|
else:
|
|
|
|
|
FJQC.GetFormatJSONQuoteChar(myarg, False)
|
|
|
|
|
if not targetResource:
|
|
|
|
|
missingArgumentExit('ou|org|orgunit|group')
|
|
|
|
|
checkPolicyArgs(targetResource, printer_id, app_id)
|
|
|
|
|
body = {'policyTargetKey': {'targetResource': targetResource}}
|
|
|
|
|
if printerId:
|
|
|
|
|
body['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printerId}
|
|
|
|
|
if not psFilters:
|
|
|
|
|
psFilters = ['chrome.printers.*']
|
|
|
|
|
elif appId:
|
|
|
|
|
body['policyTargetKey']['additionalTargetKeys'] = {'app_id': appId}
|
|
|
|
|
if app_id:
|
|
|
|
|
body['policyTargetKey']['additionalTargetKeys'] = {'app_id': app_id}
|
|
|
|
|
if not psFilters:
|
|
|
|
|
psFilters = ['chrome.users.apps.*',
|
|
|
|
|
'chrome.devices.kiosk.apps.*',
|
|
|
|
|
'chrome.devices.managedguest.apps.*',
|
|
|
|
|
]
|
|
|
|
|
elif printer_id:
|
|
|
|
|
body['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printer_id}
|
|
|
|
|
if not psFilters:
|
|
|
|
|
psFilters = ['chrome.printers.*']
|
|
|
|
|
elif not psFilters:
|
|
|
|
|
if entityType == Ent.ORGANIZATIONAL_UNIT:
|
|
|
|
|
psFilters = ['chrome.users.*',
|
|
|
|
|
@@ -28410,10 +28423,10 @@ def doPrintShowChromePolicies():
|
|
|
|
|
csvPF.AddTitles(['group'])
|
|
|
|
|
csvPF.SetSortAllTitles()
|
|
|
|
|
if not FJQC.formatJSON:
|
|
|
|
|
if printerId:
|
|
|
|
|
csvPF.AddSortTitles(['printerId'])
|
|
|
|
|
elif appId:
|
|
|
|
|
if app_id:
|
|
|
|
|
csvPF.AddSortTitles(['appId'])
|
|
|
|
|
elif printer_id:
|
|
|
|
|
csvPF.AddSortTitles(['printerId'])
|
|
|
|
|
else:
|
|
|
|
|
csvPF.SetJSONTitles(csvPF.titlesList+['JSON'])
|
|
|
|
|
policies = []
|
|
|
|
|
@@ -28440,11 +28453,7 @@ def doPrintShowChromePolicies():
|
|
|
|
|
if not csvPF:
|
|
|
|
|
jcount = len(policies)
|
|
|
|
|
if not FJQC.formatJSON:
|
|
|
|
|
kvList = [entityType, targetName]
|
|
|
|
|
if printerId:
|
|
|
|
|
kvList.extend([Ent.PRINTER_ID, printerId])
|
|
|
|
|
elif appId:
|
|
|
|
|
kvList.extend([Ent.APP_ID, appId])
|
|
|
|
|
kvList = setPolicyKVList([entityType, targetName], printer_id, app_id)
|
|
|
|
|
entityPerformActionModifierNumItems(kvList, Msg.MAXIMUM_OF, jcount, Ent.CHROME_POLICY)
|
|
|
|
|
Ind.Increment()
|
|
|
|
|
j = 0
|
|
|
|
|
@@ -38318,6 +38327,7 @@ def _getCalendarEventAttribute(myarg, body, parameters, function):
|
|
|
|
|
for subfield in subfields:
|
|
|
|
|
body.pop(subfield, None)
|
|
|
|
|
|
|
|
|
|
cd = None
|
|
|
|
|
if function == 'insert' and myarg in {'id', 'eventid'}:
|
|
|
|
|
body['id'] = getEventID()
|
|
|
|
|
elif function == 'import' and myarg == 'icaluid':
|
|
|
|
|
@@ -38398,6 +38408,17 @@ def _getCalendarEventAttribute(myarg, body, parameters, function):
|
|
|
|
|
if responseStatus is not None:
|
|
|
|
|
addAttendee['responseStatus'] = responseStatus
|
|
|
|
|
parameters['attendees'].append(addAttendee)
|
|
|
|
|
elif function == 'update' and myarg == 'clearresources':
|
|
|
|
|
parameters['clearResources'] = True
|
|
|
|
|
elif myarg == 'resource':
|
|
|
|
|
if cd is None:
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
parameters['attendees'].append({'email': _validateResourceId(cd, getString(Cmd.OB_RESOURCE_ID), 0, 0, True),
|
|
|
|
|
'responseStatus': 'accepted', 'resource': True})
|
|
|
|
|
elif myarg == 'removeresource':
|
|
|
|
|
if cd is None:
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
parameters['removeAttendees'].add(_validateResourceId(cd, getString(Cmd.OB_RESOURCE_ID), 0, 0, True))
|
|
|
|
|
elif myarg == 'json':
|
|
|
|
|
jsonData = getJSON(EVENT_JSON_CLEAR_FIELDS)
|
|
|
|
|
if function == 'insert':
|
|
|
|
|
@@ -38707,7 +38728,7 @@ def _validateCalendarGetEvents(origUser, user, origCal, calId, j, jcount, calend
|
|
|
|
|
|
|
|
|
|
def _getCalendarCreateImportUpdateEventOptions(function, entityType):
|
|
|
|
|
body = {}
|
|
|
|
|
parameters = {'clearAttendees': False, 'replaceMode': False,
|
|
|
|
|
parameters = {'clearAttendees': False, 'replaceMode': False, 'clearResources': False,
|
|
|
|
|
'attendees': [], 'removeAttendees': set(),
|
|
|
|
|
'replaceDescription': [], 'sendUpdates': 'none',
|
|
|
|
|
'csvPF': None, 'FJQC': FormatJSONQuoteChar(None), 'showDayOfWeek': False}
|
|
|
|
|
@@ -38818,7 +38839,7 @@ def _updateCalendarEvents(origUser, user, origCal, calIds, count, calendarEventE
|
|
|
|
|
updateFieldList = []
|
|
|
|
|
if parameters['replaceDescription']:
|
|
|
|
|
updateFieldList.append('description')
|
|
|
|
|
if not parameters['replaceMode'] and (parameters['attendees'] or parameters['removeAttendees']):
|
|
|
|
|
if not parameters['replaceMode'] and (parameters['attendees'] or parameters['removeAttendees'] or parameters['clearResources']):
|
|
|
|
|
updateFieldList.append('attendees')
|
|
|
|
|
updateFields = ','.join(updateFieldList)
|
|
|
|
|
if 'attendees' not in updateFieldList:
|
|
|
|
|
@@ -38869,6 +38890,8 @@ def _updateCalendarEvents(origUser, user, origCal, calIds, count, calendarEventE
|
|
|
|
|
body['attendees'] = []
|
|
|
|
|
if parameters['removeAttendees']:
|
|
|
|
|
body['attendees'] = [attendee for attendee in body['attendees'] if attendee['email'].lower() not in parameters['removeAttendees']]
|
|
|
|
|
if parameters['clearResources']:
|
|
|
|
|
body['attendees'] = [attendee for attendee in body['attendees'] if not attendee['email'].lower().endswith('@resource.calendar.google.com')]
|
|
|
|
|
event = callGAPI(cal.events(), 'patch',
|
|
|
|
|
throwReasons=GAPI.CALENDAR_THROW_REASONS+[GAPI.NOT_FOUND, GAPI.DELETED, GAPI.FORBIDDEN,
|
|
|
|
|
GAPI.INVALID, GAPI.REQUIRED, GAPI.TIME_RANGE_EMPTY, GAPI.EVENT_DURATION_EXCEEDS_LIMIT,
|
|
|
|
|
@@ -39618,18 +39641,19 @@ def doCalendarsPrintShowSettings(calIds):
|
|
|
|
|
if csvPF:
|
|
|
|
|
csvPF.writeCSVfile('Calendar Settings')
|
|
|
|
|
|
|
|
|
|
def _validateResourceId(resourceId, i, count):
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
def _validateResourceId(cd, resourceId, i, count, exitOnNotFound):
|
|
|
|
|
try:
|
|
|
|
|
return callGAPI(cd.resources().calendars(), 'get',
|
|
|
|
|
throwReasons=[GAPI.BAD_REQUEST, GAPI.RESOURCE_NOT_FOUND, GAPI.FORBIDDEN],
|
|
|
|
|
customer=GC.Values[GC.CUSTOMER_ID], calendarResourceId=resourceId, fields='resourceEmail')['resourceEmail']
|
|
|
|
|
except (GAPI.badRequest, GAPI.resourceNotFound, GAPI.forbidden):
|
|
|
|
|
if exitOnNotFound:
|
|
|
|
|
entityDoesNotExistExit(Ent.RESOURCE_CALENDAR, resourceId, i, count)
|
|
|
|
|
checkEntityAFDNEorAccessErrorExit(cd, Ent.RESOURCE_CALENDAR, resourceId, i, count)
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
def _normalizeResourceIdGetRuleIds(resourceId, i, count, ACLScopeEntity, showAction=True):
|
|
|
|
|
calId = _validateResourceId(resourceId, i, count)
|
|
|
|
|
def _normalizeResourceIdGetRuleIds(cd, resourceId, i, count, ACLScopeEntity, showAction=True):
|
|
|
|
|
calId = _validateResourceId(cd, resourceId, i, count, False)
|
|
|
|
|
if not calId:
|
|
|
|
|
return (None, None, 0)
|
|
|
|
|
if ACLScopeEntity['dict']:
|
|
|
|
|
@@ -39647,23 +39671,25 @@ def _normalizeResourceIdGetRuleIds(resourceId, i, count, ACLScopeEntity, showAct
|
|
|
|
|
# gam resources <ResourceEntity> create calendaracls <CalendarACLRole> <CalendarACLScopeEntity> [sendnotifications <Boolean>]
|
|
|
|
|
def doResourceCreateCalendarACLs(entityList):
|
|
|
|
|
cal = buildGAPIObject(API.CALENDAR)
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
role, ACLScopeEntity, sendNotifications = getCalendarCreateUpdateACLsOptions(True)
|
|
|
|
|
i = 0
|
|
|
|
|
count = len(entityList)
|
|
|
|
|
for resourceId in entityList:
|
|
|
|
|
i += 1
|
|
|
|
|
calId, ruleIds, jcount = _normalizeResourceIdGetRuleIds(resourceId, i, count, ACLScopeEntity)
|
|
|
|
|
calId, ruleIds, jcount = _normalizeResourceIdGetRuleIds(cd, resourceId, i, count, ACLScopeEntity)
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
continue
|
|
|
|
|
_createCalendarACLs(cal, Ent.RESOURCE_CALENDAR, calId, i, count, role, ruleIds, jcount, sendNotifications)
|
|
|
|
|
|
|
|
|
|
def _resourceUpdateDeleteCalendarACLs(entityList, function, ACLScopeEntity, role, sendNotifications):
|
|
|
|
|
cal = buildGAPIObject(API.CALENDAR)
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
i = 0
|
|
|
|
|
count = len(entityList)
|
|
|
|
|
for resourceId in entityList:
|
|
|
|
|
i += 1
|
|
|
|
|
calId, ruleIds, jcount = _normalizeResourceIdGetRuleIds(resourceId, i, count, ACLScopeEntity)
|
|
|
|
|
calId, ruleIds, jcount = _normalizeResourceIdGetRuleIds(cd, resourceId, i, count, ACLScopeEntity)
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
continue
|
|
|
|
|
_updateDeleteCalendarACLs(cal, function, Ent.RESOURCE_CALENDAR, calId, i, count, role, ruleIds, jcount, sendNotifications)
|
|
|
|
|
@@ -39686,13 +39712,14 @@ def doResourceDeleteCalendarACLs(entityList):
|
|
|
|
|
# [formatjson]
|
|
|
|
|
def doResourceInfoCalendarACLs(entityList):
|
|
|
|
|
cal = buildGAPIObject(API.CALENDAR)
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
ACLScopeEntity = getCalendarSiteACLScopeEntity()
|
|
|
|
|
FJQC = _getCalendarInfoACLOptions()
|
|
|
|
|
i = 0
|
|
|
|
|
count = len(entityList)
|
|
|
|
|
for resourceId in entityList:
|
|
|
|
|
i += 1
|
|
|
|
|
calId, ruleIds, jcount = _normalizeResourceIdGetRuleIds(resourceId, i, count, ACLScopeEntity, showAction=not FJQC.formatJSON)
|
|
|
|
|
calId, ruleIds, jcount = _normalizeResourceIdGetRuleIds(cd, resourceId, i, count, ACLScopeEntity, showAction=not FJQC.formatJSON)
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
continue
|
|
|
|
|
_infoCalendarACLs(cal, resourceId, Ent.RESOURCE_CALENDAR, calId, i, count, ruleIds, jcount, FJQC)
|
|
|
|
|
@@ -39711,12 +39738,13 @@ def doResourceInfoCalendarACLs(entityList):
|
|
|
|
|
# [formatjson]
|
|
|
|
|
def doResourcePrintShowCalendarACLs(entityList):
|
|
|
|
|
cal = buildGAPIObject(API.CALENDAR)
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
csvPF, FJQC, noSelfOwner, addCSVData = _getCalendarPrintShowACLOptions(['resourceId', 'resourceEmail'])
|
|
|
|
|
i = 0
|
|
|
|
|
count = len(entityList)
|
|
|
|
|
for resourceId in entityList:
|
|
|
|
|
i += 1
|
|
|
|
|
calId = _validateResourceId(resourceId, i, count)
|
|
|
|
|
calId = _validateResourceId(cd, resourceId, i, count, False)
|
|
|
|
|
if not calId:
|
|
|
|
|
continue
|
|
|
|
|
_printShowCalendarACLs(cal, resourceId, Ent.RESOURCE_CALENDAR, calId, i, count, csvPF, FJQC, noSelfOwner, addCSVData)
|
|
|
|
|
@@ -65566,31 +65594,29 @@ def printShowSharedDrives(users, useDomainAdminAccess=False):
|
|
|
|
|
else:
|
|
|
|
|
matchedFeed = feed
|
|
|
|
|
jcount = len(matchedFeed)
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
setSysExitRC(NO_ENTITIES_FOUND_RC)
|
|
|
|
|
if not csvPF:
|
|
|
|
|
if not FJQC.formatJSON:
|
|
|
|
|
entityPerformActionNumItems([Ent.USER, user], jcount, Ent.SHAREDDRIVE, i, count)
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
setSysExitRC(NO_ENTITIES_FOUND_RC)
|
|
|
|
|
Ind.Increment()
|
|
|
|
|
j = 0
|
|
|
|
|
for shareddrive in matchedFeed:
|
|
|
|
|
j += 1
|
|
|
|
|
shareddrive = stripNonShowFields(shareddrive)
|
|
|
|
|
_showSharedDrive(user, shareddrive, j, jcount, FJQC)
|
|
|
|
|
Ind.Decrement()
|
|
|
|
|
else:
|
|
|
|
|
if not csvPF:
|
|
|
|
|
Ind.Increment()
|
|
|
|
|
j = 0
|
|
|
|
|
for shareddrive in matchedFeed:
|
|
|
|
|
j += 1
|
|
|
|
|
shareddrive = stripNonShowFields(shareddrive)
|
|
|
|
|
_showSharedDrive(user, shareddrive, j, jcount, FJQC)
|
|
|
|
|
Ind.Decrement()
|
|
|
|
|
else:
|
|
|
|
|
for shareddrive in matchedFeed:
|
|
|
|
|
shareddrive = stripNonShowFields(shareddrive)
|
|
|
|
|
if FJQC.formatJSON:
|
|
|
|
|
row = {'User': user, 'id': shareddrive['id'], 'name': shareddrive['name']}
|
|
|
|
|
if not useDomainAdminAccess:
|
|
|
|
|
row['role'] = shareddrive['role'] if not guiRoles else SHAREDDRIVE_API_GUI_ROLES_MAP[shareddrive['role']]
|
|
|
|
|
row['JSON'] = json.dumps(cleanJSON(shareddrive, timeObjects=SHAREDDRIVE_TIME_OBJECTS), ensure_ascii=False, sort_keys=True)
|
|
|
|
|
csvPF.WriteRow(row)
|
|
|
|
|
else:
|
|
|
|
|
csvPF.WriteRowTitles(flattenJSON(shareddrive, flattened={'User': user}, timeObjects=SHAREDDRIVE_TIME_OBJECTS))
|
|
|
|
|
for shareddrive in matchedFeed:
|
|
|
|
|
shareddrive = stripNonShowFields(shareddrive)
|
|
|
|
|
if FJQC.formatJSON:
|
|
|
|
|
row = {'User': user, 'id': shareddrive['id'], 'name': shareddrive['name']}
|
|
|
|
|
if not useDomainAdminAccess:
|
|
|
|
|
row['role'] = shareddrive['role'] if not guiRoles else SHAREDDRIVE_API_GUI_ROLES_MAP[shareddrive['role']]
|
|
|
|
|
row['JSON'] = json.dumps(cleanJSON(shareddrive, timeObjects=SHAREDDRIVE_TIME_OBJECTS), ensure_ascii=False, sort_keys=True)
|
|
|
|
|
csvPF.WriteRow(row)
|
|
|
|
|
else:
|
|
|
|
|
csvPF.WriteRowTitles(flattenJSON(shareddrive, flattened={'User': user}, timeObjects=SHAREDDRIVE_TIME_OBJECTS))
|
|
|
|
|
if csvPF:
|
|
|
|
|
csvPF.writeCSVfile('SharedDrives')
|
|
|
|
|
|
|
|
|
|
@@ -65649,29 +65675,27 @@ def doPrintShowOrgunitSharedDrives():
|
|
|
|
|
customer=_getCustomersCustomerIdWithC(),
|
|
|
|
|
filter="type == 'shared_drive'")
|
|
|
|
|
jcount = len(sds)
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
setSysExitRC(NO_ENTITIES_FOUND_RC)
|
|
|
|
|
if not csvPF:
|
|
|
|
|
if not FJQC.formatJSON:
|
|
|
|
|
entityPerformActionNumItems([Ent.ORGANIZATIONAL_UNIT, orgUnitPath], jcount, Ent.SHAREDDRIVE)
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
setSysExitRC(NO_ENTITIES_FOUND_RC)
|
|
|
|
|
Ind.Increment()
|
|
|
|
|
j = 0
|
|
|
|
|
for shareddrive in sds:
|
|
|
|
|
j += 1
|
|
|
|
|
_getOrgUnitSharedDriveInfo(shareddrive)
|
|
|
|
|
_showOrgUnitSharedDrive(shareddrive, j, jcount, FJQC)
|
|
|
|
|
Ind.Decrement()
|
|
|
|
|
else:
|
|
|
|
|
if not csvPF:
|
|
|
|
|
Ind.Increment()
|
|
|
|
|
j = 0
|
|
|
|
|
for shareddrive in sds:
|
|
|
|
|
j += 1
|
|
|
|
|
_getOrgUnitSharedDriveInfo(shareddrive)
|
|
|
|
|
_showOrgUnitSharedDrive(shareddrive, j, jcount, FJQC)
|
|
|
|
|
Ind.Decrement()
|
|
|
|
|
else:
|
|
|
|
|
for shareddrive in sds:
|
|
|
|
|
_getOrgUnitSharedDriveInfo(shareddrive)
|
|
|
|
|
if FJQC.formatJSON:
|
|
|
|
|
row = {'name': shareddrive['name']}
|
|
|
|
|
row['JSON'] = json.dumps(cleanJSON(shareddrive), ensure_ascii=False, sort_keys=True)
|
|
|
|
|
csvPF.WriteRow(row)
|
|
|
|
|
else:
|
|
|
|
|
csvPF.WriteRowTitles(flattenJSON(shareddrive))
|
|
|
|
|
for shareddrive in sds:
|
|
|
|
|
_getOrgUnitSharedDriveInfo(shareddrive)
|
|
|
|
|
if FJQC.formatJSON:
|
|
|
|
|
row = {'name': shareddrive['name']}
|
|
|
|
|
row['JSON'] = json.dumps(cleanJSON(shareddrive), ensure_ascii=False, sort_keys=True)
|
|
|
|
|
csvPF.WriteRow(row)
|
|
|
|
|
else:
|
|
|
|
|
csvPF.WriteRowTitles(flattenJSON(shareddrive))
|
|
|
|
|
if csvPF:
|
|
|
|
|
csvPF.writeCSVfile('OrgUnit {orgUnitPath} SharedDrives')
|
|
|
|
|
|
|
|
|
|
@@ -65756,7 +65780,7 @@ SHOW_NO_PERMISSIONS_DRIVES_CHOICE_MAP = {
|
|
|
|
|
# [oneitemperrow] [maxitems <Integer>]
|
|
|
|
|
# [shownopermissionsdrives false|true|only]
|
|
|
|
|
# [<DrivePermissionsFieldName>*|(fields <DrivePermissionsFieldNameList>)]
|
|
|
|
|
# [formatjsn]
|
|
|
|
|
# [formatjson]
|
|
|
|
|
def printShowSharedDriveACLs(users, useDomainAdminAccess=False):
|
|
|
|
|
def _printPermissionRow(baserow, permission):
|
|
|
|
|
row = baserow.copy()
|
|
|
|
|
@@ -65946,7 +65970,8 @@ def printShowSharedDriveACLs(users, useDomainAdminAccess=False):
|
|
|
|
|
if jcount == 0:
|
|
|
|
|
setSysExitRC(NO_ENTITIES_FOUND_RC)
|
|
|
|
|
if not csvPF:
|
|
|
|
|
entityPerformActionNumItems([Ent.USER, user], jcount, Ent.SHAREDDRIVE, i, count)
|
|
|
|
|
if not FJQC.formatJSON:
|
|
|
|
|
entityPerformActionNumItems([Ent.USER, user], jcount, Ent.SHAREDDRIVE, i, count)
|
|
|
|
|
Ind.Increment()
|
|
|
|
|
j = 0
|
|
|
|
|
for shareddrive in matchFeed:
|
|
|
|
|
@@ -67173,7 +67198,7 @@ LICENSE_PREVIEW_TITLES = ['user', 'productId', 'skuId', 'action', 'message']
|
|
|
|
|
|
|
|
|
|
def getLicenseParameters(operation):
|
|
|
|
|
lic = buildGAPIObject(API.LICENSING)
|
|
|
|
|
parameters = {LICENSE_PRODUCT_SKUIDS: [], 'csvPF': None, 'preview': False, 'syncOperation': 'addremove', 'syncACLsMode': None}
|
|
|
|
|
parameters = {LICENSE_PRODUCT_SKUIDS: [], 'csvPF': None, 'preview': False, 'syncOperation': 'addremove', 'syncACLsMode': None, 'archive': False}
|
|
|
|
|
skuLocation = Cmd.Location()
|
|
|
|
|
if operation != 'patch':
|
|
|
|
|
parameters[LICENSE_PRODUCT_SKUIDS] = getGoogleSKUList(allowUnknownProduct=True)
|
|
|
|
|
@@ -67203,6 +67228,10 @@ def getLicenseParameters(operation):
|
|
|
|
|
if operation == 'patch':
|
|
|
|
|
titles.insert(2, 'oldskuId')
|
|
|
|
|
parameters['csvPF'] = CSVPrintFile(titles)
|
|
|
|
|
elif operation == 'patch' and myarg == 'archive':
|
|
|
|
|
if skuId not in SKU.ARCHIVABLE_SKUS:
|
|
|
|
|
usageErrorExit(Msg.SKU_HAS_NO_MATCHING_ARCHIVED_USER_SKU.format(skuId))
|
|
|
|
|
parameters['archive'] = True
|
|
|
|
|
else:
|
|
|
|
|
unknownArgumentExit()
|
|
|
|
|
for productSku in parameters[LICENSE_PRODUCT_SKUIDS]:
|
|
|
|
|
@@ -67308,13 +67337,17 @@ def createLicense(users):
|
|
|
|
|
if parameters['csvPF']:
|
|
|
|
|
parameters['csvPF'].writeCSVfile('Create Licenses')
|
|
|
|
|
|
|
|
|
|
# gam <UserTypeEntity> update license <SKUID> [product|productid <ProductID>] [from] <SKUID> [preview] [actioncsv]
|
|
|
|
|
# gam <UserTypeEntity> update license <SKUID> [product|productid <ProductID>] [from] <SKUID>
|
|
|
|
|
# [preview] [actioncsv] [archive]
|
|
|
|
|
def updateLicense(users):
|
|
|
|
|
lic, parameters = getLicenseParameters('patch')
|
|
|
|
|
j, jcount, users = getEntityArgument(users)
|
|
|
|
|
Act.Set([Act.UPDATE, Act.UPDATE_PREVIEW][parameters['preview']])
|
|
|
|
|
cd = None
|
|
|
|
|
if parameters['preview']:
|
|
|
|
|
message = Act.PREVIEW
|
|
|
|
|
elif parameters['archive']:
|
|
|
|
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
|
|
|
productId, skuId, oldSkuId = parameters[LICENSE_PRODUCT_SKUIDS][0]
|
|
|
|
|
body = {'skuId': skuId}
|
|
|
|
|
entityPerformActionModifierNumItems([Ent.LICENSE, SKU.skuIdToDisplayName(skuId)], Msg.FOR, jcount, Ent.USER)
|
|
|
|
|
@@ -67340,6 +67373,22 @@ def updateLicense(users):
|
|
|
|
|
except GAPI.userNotFound as e:
|
|
|
|
|
message = str(e)
|
|
|
|
|
entityUnknownWarning(Ent.USER, user, j, jcount)
|
|
|
|
|
if parameters['archive'] and message == Act.SUCCESS:
|
|
|
|
|
Act.Set(Act.ARCHIVE)
|
|
|
|
|
try:
|
|
|
|
|
callGAPI(cd.users(), 'update',
|
|
|
|
|
throwReasons=[GAPI.USER_NOT_FOUND, GAPI.DOMAIN_NOT_FOUND,
|
|
|
|
|
GAPI.FORBIDDEN, GAPI.BAD_REQUEST,
|
|
|
|
|
GAPI.INSUFFICIENT_ARCHIVED_USER_LICENSES],
|
|
|
|
|
retryReasons=[GAPI.INSUFFICIENT_ARCHIVED_USER_LICENSES],
|
|
|
|
|
userKey=user, body={'archived': True})
|
|
|
|
|
entityActionPerformed([Ent.USER, user], j, jcount)
|
|
|
|
|
except GAPI.userNotFound:
|
|
|
|
|
entityUnknownWarning(Ent.USER, user, j, jcount)
|
|
|
|
|
except (GAPI.domainNotFound, GAPI.domainCannotUseApis, GAPI.forbidden, GAPI.badRequest,
|
|
|
|
|
GAPI.insufficientArchivedUserLicenses) as e:
|
|
|
|
|
entityActionFailedWarning([Ent.USER, user], str(e), j, jcount)
|
|
|
|
|
Act.Set(Act.UPDATE)
|
|
|
|
|
if parameters['csvPF']:
|
|
|
|
|
_writeLicenseAction(productId, skuId, oldSkuId, parameters, user, Act.UPDATE, message)
|
|
|
|
|
Ind.Decrement()
|
|
|
|
|
@@ -67524,10 +67573,10 @@ def updatePhoto(users):
|
|
|
|
|
body = {'photoData': base64.urlsafe_b64encode(image_data).decode(UTF8)}
|
|
|
|
|
try:
|
|
|
|
|
callGAPI(cd.users().photos(), 'update',
|
|
|
|
|
throwReasons=[GAPI.USER_NOT_FOUND, GAPI.FORBIDDEN, GAPI.INVALID_INPUT],
|
|
|
|
|
throwReasons=[GAPI.USER_NOT_FOUND, GAPI.FORBIDDEN, GAPI.INVALID_INPUT, GAPI.CONDITION_NOT_MET],
|
|
|
|
|
userKey=user, body=body, fields='')
|
|
|
|
|
entityActionPerformed([Ent.USER, user, Ent.PHOTO, filename], i, count)
|
|
|
|
|
except GAPI.invalidInput as e:
|
|
|
|
|
except (GAPI.invalidInput, GAPI.conditionNotMet) as e:
|
|
|
|
|
entityActionFailedWarning([Ent.USER, user, Ent.PHOTO, filename], str(e), i, count)
|
|
|
|
|
except (GAPI.userNotFound, GAPI.forbidden):
|
|
|
|
|
entityUnknownWarning(Ent.USER, user, i, count)
|
|
|
|
|
@@ -71961,7 +72010,8 @@ def updateFormRequestUpdateMasks(ubody):
|
|
|
|
|
v['updateMask'] = ','.join(v['updateMask'])
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
# gam <UserTypeEntity> create form title <String> [description <String>] [isquiz [<Boolean>]]
|
|
|
|
|
# gam <UserTypeEntity> create form
|
|
|
|
|
# title <String> [description <String>] [isquiz [<Boolean>]] [<JSONData>]
|
|
|
|
|
# [drivefilename <DriveFileName>] [<DriveFileParentAttribute>]
|
|
|
|
|
# [(csv [todrive <ToDriveAttribute>*]) | returnidonly]
|
|
|
|
|
def createForm(users):
|
|
|
|
|
@@ -71980,6 +72030,9 @@ def createForm(users):
|
|
|
|
|
updateFormInfoRequest(myarg, getString(Cmd.OB_STRING, minLen=0), ubody)
|
|
|
|
|
elif myarg == 'isquiz':
|
|
|
|
|
updateFormSettingsRequest('isQuiz', getBoolean(), ubody)
|
|
|
|
|
elif myarg == 'json':
|
|
|
|
|
jsonData = getJSON([])
|
|
|
|
|
ubody['requests'].extend(jsonData.get('requests', []))
|
|
|
|
|
elif myarg == 'drivefilename':
|
|
|
|
|
body['name'] = getString(Cmd.OB_DRIVE_FILE_NAME)
|
|
|
|
|
elif getDriveFileParentAttribute(myarg, parentParms):
|
|
|
|
|
@@ -72042,7 +72095,8 @@ def createForm(users):
|
|
|
|
|
if csvPF:
|
|
|
|
|
csvPF.writeCSVfile('Forms')
|
|
|
|
|
|
|
|
|
|
# gam <UserTypeEntity> update form <DriveFileEntity> [title <String>] [description <String>] [isquiz [Boolean>]
|
|
|
|
|
# gam <UserTypeEntity> update form <DriveFileEntity>
|
|
|
|
|
# [title <String>] [description <String>] [isquiz [Boolean>]] [<JSONData>]
|
|
|
|
|
def updateForm(users):
|
|
|
|
|
ubody = {'includeFormInResponse': False, 'requests': []}
|
|
|
|
|
fileIdEntity = getDriveFileEntity()
|
|
|
|
|
@@ -72054,6 +72108,9 @@ def updateForm(users):
|
|
|
|
|
updateFormInfoRequest(myarg, getString(Cmd.OB_STRING, minLen=0), ubody)
|
|
|
|
|
elif myarg == 'isquiz':
|
|
|
|
|
updateFormSettingsRequest('isQuiz', getBoolean(), ubody)
|
|
|
|
|
elif myarg == 'json':
|
|
|
|
|
jsonData = getJSON([])
|
|
|
|
|
ubody['requests'].extend(jsonData.get('requests', []))
|
|
|
|
|
else:
|
|
|
|
|
unknownArgumentExit()
|
|
|
|
|
updateFormRequestUpdateMasks(ubody)
|
|
|
|
|
|