mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-29 18:31:38 +00:00
Compare commits
1 Commits
v7.02.06
...
20250107.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a54870f91d |
@@ -1,3 +1,8 @@
|
|||||||
|
7.02.07
|
||||||
|
|
||||||
|
Updated `gam delete|update chromepolicy` to display the `<AppID>` or `<PrinterID>` (if specified)
|
||||||
|
in the command status messages.
|
||||||
|
|
||||||
7.02.06
|
7.02.06
|
||||||
|
|
||||||
Added option `<JSONData>` to `gam <UserTypeEntity> create|update form` that allows for
|
Added option `<JSONData>` to `gam <UserTypeEntity> create|update form` that allows for
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
||||||
__version__ = '7.02.06'
|
__version__ = '7.02.07'
|
||||||
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
||||||
|
|
||||||
#pylint: disable=wrong-import-position
|
#pylint: disable=wrong-import-position
|
||||||
@@ -27894,14 +27894,28 @@ def _getPolicyGroupTarget(cd, cp, myarg, orgUnit):
|
|||||||
targetResource = f"groups/{convertEmailAddressToUID(targetName, cd, emailType='group')}"
|
targetResource = f"groups/{convertEmailAddressToUID(targetName, cd, emailType='group')}"
|
||||||
return (targetName, targetName, targetResource, Ent.GROUP, cp.customers().policies().groups())
|
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):
|
def updatePolicyRequests(body, targetResource, printer_id, app_id):
|
||||||
for request in body['requests']:
|
for request in body['requests']:
|
||||||
request.setdefault('policyTargetKey', {})
|
request.setdefault('policyTargetKey', {})
|
||||||
request['policyTargetKey']['targetResource'] = targetResource
|
request['policyTargetKey']['targetResource'] = targetResource
|
||||||
if printer_id:
|
if app_id:
|
||||||
request['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printer_id}
|
|
||||||
elif app_id:
|
|
||||||
request['policyTargetKey']['additionalTargetKeys'] = {'app_id': app_id}
|
request['policyTargetKey']['additionalTargetKeys'] = {'app_id': app_id}
|
||||||
|
elif printer_id:
|
||||||
|
request['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printer_id}
|
||||||
|
|
||||||
# gam delete chromepolicy
|
# gam delete chromepolicy
|
||||||
# (<SchemaName> [<JSONData>])+
|
# (<SchemaName> [<JSONData>])+
|
||||||
@@ -27937,15 +27951,14 @@ def doDeleteChromePolicy():
|
|||||||
body['requests'][-1].setdefault('policyTargetKey', {})
|
body['requests'][-1].setdefault('policyTargetKey', {})
|
||||||
for atk in jsonData['additionalTargetKeys']:
|
for atk in jsonData['additionalTargetKeys']:
|
||||||
body['requests'][-1]['policyTargetKey']['additionalTargetKeys'] = {atk['name']: atk['value']}
|
body['requests'][-1]['policyTargetKey']['additionalTargetKeys'] = {atk['name']: atk['value']}
|
||||||
if not targetResource:
|
checkPolicyArgs(targetResource, printer_id, app_id)
|
||||||
missingArgumentExit('ou|org|orgunit|group')
|
|
||||||
count = len(body['requests'])
|
count = len(body['requests'])
|
||||||
if count != 1:
|
if count != 1:
|
||||||
entityPerformActionNumItems([entityType, targetName], count, Ent.CHROME_POLICY)
|
entityPerformActionNumItems([entityType, targetName], count, Ent.CHROME_POLICY)
|
||||||
if count == 0:
|
if count == 0:
|
||||||
return
|
return
|
||||||
|
kvList = setPolicyKVList([entityType, targetName, Ent.CHROME_POLICY, ','.join(schemaNameList)], printer_id, app_id)
|
||||||
updatePolicyRequests(body, targetResource, printer_id, app_id)
|
updatePolicyRequests(body, targetResource, printer_id, app_id)
|
||||||
kvList = [entityType, targetName, Ent.CHROME_POLICY, ','.join(schemaNameList)]
|
|
||||||
try:
|
try:
|
||||||
callGAPI(service, function,
|
callGAPI(service, function,
|
||||||
throwReasons=[GAPI.NOT_FOUND, GAPI.PERMISSION_DENIED,
|
throwReasons=[GAPI.NOT_FOUND, GAPI.PERMISSION_DENIED,
|
||||||
@@ -28191,12 +28204,11 @@ def doUpdateChromePolicy():
|
|||||||
invalidArgumentExit(Msg.CHROME_TARGET_VERSION_FORMAT)
|
invalidArgumentExit(Msg.CHROME_TARGET_VERSION_FORMAT)
|
||||||
body['requests'][-1]['policyValue']['value'][casedField] = value
|
body['requests'][-1]['policyValue']['value'][casedField] = value
|
||||||
body['requests'][-1]['updateMask'] += f'{casedField},'
|
body['requests'][-1]['updateMask'] += f'{casedField},'
|
||||||
if not targetResource:
|
checkPolicyArgs(targetResource, printer_id, app_id)
|
||||||
missingArgumentExit('ou|org|orgunit|group')
|
|
||||||
count = len(body['requests'])
|
count = len(body['requests'])
|
||||||
if count > 0 and not body['requests'][-1]['updateMask']:
|
if count > 0 and not body['requests'][-1]['updateMask']:
|
||||||
body['requests'].pop()
|
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:
|
if count != 1:
|
||||||
entityPerformActionNumItems(kvList, count, Ent.CHROME_POLICY)
|
entityPerformActionNumItems(kvList, count, Ent.CHROME_POLICY)
|
||||||
if count == 0:
|
if count == 0:
|
||||||
@@ -28238,10 +28250,10 @@ CHROME_POLICY_SHOW_CHOICE_MAP = {
|
|||||||
def doPrintShowChromePolicies():
|
def doPrintShowChromePolicies():
|
||||||
def normalizedPolicy(policy):
|
def normalizedPolicy(policy):
|
||||||
norm = {'name': policy['value']['policySchema']}
|
norm = {'name': policy['value']['policySchema']}
|
||||||
if printerId:
|
if app_id:
|
||||||
norm['printerId'] = printerId
|
norm['appId'] = app_id
|
||||||
elif appId:
|
elif printer_id:
|
||||||
norm['appId'] = appId
|
norm['printerId'] = printer_id
|
||||||
if entityType == Ent.ORGANIZATIONAL_UNIT:
|
if entityType == Ent.ORGANIZATIONAL_UNIT:
|
||||||
orgUnitId = policy.get('targetKey', {}).get('targetResource')
|
orgUnitId = policy.get('targetKey', {}).get('targetResource')
|
||||||
norm['orgUnitPath'] = convertOrgUnitIDtoPath(cd, orgUnitId) if orgUnitId else UNKNOWN
|
norm['orgUnitPath'] = convertOrgUnitIDtoPath(cd, orgUnitId) if orgUnitId else UNKNOWN
|
||||||
@@ -28337,7 +28349,7 @@ def doPrintShowChromePolicies():
|
|||||||
if csvPF:
|
if csvPF:
|
||||||
csvPF.SetNoEscapeChar(True)
|
csvPF.SetNoEscapeChar(True)
|
||||||
FJQC = FormatJSONQuoteChar(csvPF)
|
FJQC = FormatJSONQuoteChar(csvPF)
|
||||||
appId = groupEmail = orgUnit = printerId = None
|
app_id = groupEmail = orgUnit = printer_id = None
|
||||||
showPolicies = CHROME_POLICY_SHOW_ALL
|
showPolicies = CHROME_POLICY_SHOW_ALL
|
||||||
psFilters = []
|
psFilters = []
|
||||||
while Cmd.ArgumentsRemaining():
|
while Cmd.ArgumentsRemaining():
|
||||||
@@ -28348,10 +28360,10 @@ def doPrintShowChromePolicies():
|
|||||||
orgUnit, targetName, targetResource, entityType, _ = _getPolicyOrgUnitTarget(cd, cp, myarg, groupEmail)
|
orgUnit, targetName, targetResource, entityType, _ = _getPolicyOrgUnitTarget(cd, cp, myarg, groupEmail)
|
||||||
elif myarg == 'group':
|
elif myarg == 'group':
|
||||||
groupEmail, targetName, targetResource, entityType, _ = _getPolicyGroupTarget(cd, cp, myarg, orgUnit)
|
groupEmail, targetName, targetResource, entityType, _ = _getPolicyGroupTarget(cd, cp, myarg, orgUnit)
|
||||||
elif (not printerId and not appId) and myarg == 'printerid':
|
elif myarg == 'printerid':
|
||||||
printerId = getString(Cmd.OB_PRINTER_ID)
|
printer_id = getString(Cmd.OB_PRINTER_ID)
|
||||||
elif (not printerId and not appId) and myarg == 'appid':
|
elif myarg == 'appid':
|
||||||
appId = getString(Cmd.OB_APP_ID)
|
app_id = getString(Cmd.OB_APP_ID)
|
||||||
elif myarg == 'filter':
|
elif myarg == 'filter':
|
||||||
for psFilter in getString(Cmd.OB_STRING).replace(',', ' ').split():
|
for psFilter in getString(Cmd.OB_STRING).replace(',', ' ').split():
|
||||||
psFilters.append(psFilter)
|
psFilters.append(psFilter)
|
||||||
@@ -28365,20 +28377,19 @@ def doPrintShowChromePolicies():
|
|||||||
showPolicies = getChoice(CHROME_POLICY_SHOW_CHOICE_MAP, mapChoice=True)
|
showPolicies = getChoice(CHROME_POLICY_SHOW_CHOICE_MAP, mapChoice=True)
|
||||||
else:
|
else:
|
||||||
FJQC.GetFormatJSONQuoteChar(myarg, False)
|
FJQC.GetFormatJSONQuoteChar(myarg, False)
|
||||||
if not targetResource:
|
checkPolicyArgs(targetResource, printer_id, app_id)
|
||||||
missingArgumentExit('ou|org|orgunit|group')
|
|
||||||
body = {'policyTargetKey': {'targetResource': targetResource}}
|
body = {'policyTargetKey': {'targetResource': targetResource}}
|
||||||
if printerId:
|
if app_id:
|
||||||
body['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printerId}
|
body['policyTargetKey']['additionalTargetKeys'] = {'app_id': app_id}
|
||||||
if not psFilters:
|
|
||||||
psFilters = ['chrome.printers.*']
|
|
||||||
elif appId:
|
|
||||||
body['policyTargetKey']['additionalTargetKeys'] = {'app_id': appId}
|
|
||||||
if not psFilters:
|
if not psFilters:
|
||||||
psFilters = ['chrome.users.apps.*',
|
psFilters = ['chrome.users.apps.*',
|
||||||
'chrome.devices.kiosk.apps.*',
|
'chrome.devices.kiosk.apps.*',
|
||||||
'chrome.devices.managedguest.apps.*',
|
'chrome.devices.managedguest.apps.*',
|
||||||
]
|
]
|
||||||
|
elif printer_id:
|
||||||
|
body['policyTargetKey']['additionalTargetKeys'] = {'printer_id': printer_id}
|
||||||
|
if not psFilters:
|
||||||
|
psFilters = ['chrome.printers.*']
|
||||||
elif not psFilters:
|
elif not psFilters:
|
||||||
if entityType == Ent.ORGANIZATIONAL_UNIT:
|
if entityType == Ent.ORGANIZATIONAL_UNIT:
|
||||||
psFilters = ['chrome.users.*',
|
psFilters = ['chrome.users.*',
|
||||||
@@ -28412,10 +28423,10 @@ def doPrintShowChromePolicies():
|
|||||||
csvPF.AddTitles(['group'])
|
csvPF.AddTitles(['group'])
|
||||||
csvPF.SetSortAllTitles()
|
csvPF.SetSortAllTitles()
|
||||||
if not FJQC.formatJSON:
|
if not FJQC.formatJSON:
|
||||||
if printerId:
|
if app_id:
|
||||||
csvPF.AddSortTitles(['printerId'])
|
|
||||||
elif appId:
|
|
||||||
csvPF.AddSortTitles(['appId'])
|
csvPF.AddSortTitles(['appId'])
|
||||||
|
elif printer_id:
|
||||||
|
csvPF.AddSortTitles(['printerId'])
|
||||||
else:
|
else:
|
||||||
csvPF.SetJSONTitles(csvPF.titlesList+['JSON'])
|
csvPF.SetJSONTitles(csvPF.titlesList+['JSON'])
|
||||||
policies = []
|
policies = []
|
||||||
@@ -28442,11 +28453,7 @@ def doPrintShowChromePolicies():
|
|||||||
if not csvPF:
|
if not csvPF:
|
||||||
jcount = len(policies)
|
jcount = len(policies)
|
||||||
if not FJQC.formatJSON:
|
if not FJQC.formatJSON:
|
||||||
kvList = [entityType, targetName]
|
kvList = setPolicyKVList([entityType, targetName], printer_id, app_id)
|
||||||
if printerId:
|
|
||||||
kvList.extend([Ent.PRINTER_ID, printerId])
|
|
||||||
elif appId:
|
|
||||||
kvList.extend([Ent.APP_ID, appId])
|
|
||||||
entityPerformActionModifierNumItems(kvList, Msg.MAXIMUM_OF, jcount, Ent.CHROME_POLICY)
|
entityPerformActionModifierNumItems(kvList, Msg.MAXIMUM_OF, jcount, Ent.CHROME_POLICY)
|
||||||
Ind.Increment()
|
Ind.Increment()
|
||||||
j = 0
|
j = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user