gam7 7.3.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of gam7 might be problematic. Click here for more details.

Files changed (108) hide show
  1. gam7-7.3.4/.github/ISSUE_TEMPLATE/aa-question.md +14 -0
  2. gam7-7.3.4/.github/ISSUE_TEMPLATE/za-bug-report.md +23 -0
  3. gam7-7.3.4/.github/ISSUE_TEMPLATE/zz-feature-request.md +20 -0
  4. gam7-7.3.4/.github/ISSUE_TEMPLATE.txt +14 -0
  5. gam7-7.3.4/.github/actions/creds.tar.xz.gpg +0 -0
  6. gam7-7.3.4/.github/actions/decrypt.sh +38 -0
  7. gam7-7.3.4/.github/actions/entitlements.plist +13 -0
  8. gam7-7.3.4/.github/actions/package_exclusions.txt +6 -0
  9. gam7-7.3.4/.github/stale.yml +61 -0
  10. gam7-7.3.4/.github/workflows/build.yml +1061 -0
  11. gam7-7.3.4/.github/workflows/codeql-analysis.yml +70 -0
  12. gam7-7.3.4/.github/workflows/get-cacerts.yml +52 -0
  13. gam7-7.3.4/.pre-commit-config.yaml +32 -0
  14. gam7-7.3.4/LICENSE +201 -0
  15. gam7-7.3.4/PKG-INFO +69 -0
  16. gam7-7.3.4/README.md +41 -0
  17. gam7-7.3.4/pyproject.toml +39 -0
  18. gam7-7.3.4/src/.gitignore +72 -0
  19. gam7-7.3.4/src/GamCommands.txt +8444 -0
  20. gam7-7.3.4/src/GamUpdate.txt +18885 -0
  21. gam7-7.3.4/src/LICENSE +1 -0
  22. gam7-7.3.4/src/cacerts.pem +1128 -0
  23. gam7-7.3.4/src/callgam.py +21 -0
  24. gam7-7.3.4/src/gam/__init__.py +77555 -0
  25. gam7-7.3.4/src/gam/__main__.py +40 -0
  26. gam7-7.3.4/src/gam/atom/__init__.py +1460 -0
  27. gam7-7.3.4/src/gam/atom/auth.py +41 -0
  28. gam7-7.3.4/src/gam/atom/client.py +214 -0
  29. gam7-7.3.4/src/gam/atom/core.py +535 -0
  30. gam7-7.3.4/src/gam/atom/data.py +327 -0
  31. gam7-7.3.4/src/gam/atom/http.py +354 -0
  32. gam7-7.3.4/src/gam/atom/http_core.py +599 -0
  33. gam7-7.3.4/src/gam/atom/http_interface.py +144 -0
  34. gam7-7.3.4/src/gam/atom/mock_http.py +123 -0
  35. gam7-7.3.4/src/gam/atom/mock_http_core.py +313 -0
  36. gam7-7.3.4/src/gam/atom/mock_service.py +235 -0
  37. gam7-7.3.4/src/gam/atom/service.py +723 -0
  38. gam7-7.3.4/src/gam/atom/token_store.py +105 -0
  39. gam7-7.3.4/src/gam/atom/url.py +130 -0
  40. gam7-7.3.4/src/gam/cacerts.pem +1130 -0
  41. gam7-7.3.4/src/gam/cbcm-v1.1beta1.json +593 -0
  42. gam7-7.3.4/src/gam/contactdelegation-v1.json +249 -0
  43. gam7-7.3.4/src/gam/datastudio-v1.json +486 -0
  44. gam7-7.3.4/src/gam/gamlib/__init__.py +17 -0
  45. gam7-7.3.4/src/gam/gamlib/glaction.py +308 -0
  46. gam7-7.3.4/src/gam/gamlib/glapi.py +837 -0
  47. gam7-7.3.4/src/gam/gamlib/glcfg.py +616 -0
  48. gam7-7.3.4/src/gam/gamlib/glclargs.py +1184 -0
  49. gam7-7.3.4/src/gam/gamlib/glentity.py +831 -0
  50. gam7-7.3.4/src/gam/gamlib/glgapi.py +817 -0
  51. gam7-7.3.4/src/gam/gamlib/glgdata.py +98 -0
  52. gam7-7.3.4/src/gam/gamlib/glglobals.py +307 -0
  53. gam7-7.3.4/src/gam/gamlib/glindent.py +46 -0
  54. gam7-7.3.4/src/gam/gamlib/glmsgs.py +547 -0
  55. gam7-7.3.4/src/gam/gamlib/glskus.py +246 -0
  56. gam7-7.3.4/src/gam/gamlib/gluprop.py +279 -0
  57. gam7-7.3.4/src/gam/gamlib/glverlibs.py +33 -0
  58. gam7-7.3.4/src/gam/gamlib/yubikey.py +202 -0
  59. gam7-7.3.4/src/gam/gdata/__init__.py +825 -0
  60. gam7-7.3.4/src/gam/gdata/alt/__init__.py +20 -0
  61. gam7-7.3.4/src/gam/gdata/alt/app_engine.py +101 -0
  62. gam7-7.3.4/src/gam/gdata/alt/appengine.py +321 -0
  63. gam7-7.3.4/src/gam/gdata/apps/__init__.py +526 -0
  64. gam7-7.3.4/src/gam/gdata/apps/audit/__init__.py +1 -0
  65. gam7-7.3.4/src/gam/gdata/apps/audit/service.py +278 -0
  66. gam7-7.3.4/src/gam/gdata/apps/contacts/__init__.py +874 -0
  67. gam7-7.3.4/src/gam/gdata/apps/contacts/service.py +355 -0
  68. gam7-7.3.4/src/gam/gdata/apps/service.py +544 -0
  69. gam7-7.3.4/src/gam/gdata/apps/sites/__init__.py +283 -0
  70. gam7-7.3.4/src/gam/gdata/apps/sites/service.py +246 -0
  71. gam7-7.3.4/src/gam/gdata/service.py +1714 -0
  72. gam7-7.3.4/src/gam/gdata/urlfetch.py +247 -0
  73. gam7-7.3.4/src/gam/googleapiclient/__init__.py +27 -0
  74. gam7-7.3.4/src/gam/googleapiclient/_auth.py +167 -0
  75. gam7-7.3.4/src/gam/googleapiclient/_helpers.py +207 -0
  76. gam7-7.3.4/src/gam/googleapiclient/channel.py +315 -0
  77. gam7-7.3.4/src/gam/googleapiclient/discovery.py +1662 -0
  78. gam7-7.3.4/src/gam/googleapiclient/discovery_cache/__init__.py +78 -0
  79. gam7-7.3.4/src/gam/googleapiclient/discovery_cache/appengine_memcache.py +55 -0
  80. gam7-7.3.4/src/gam/googleapiclient/discovery_cache/base.py +46 -0
  81. gam7-7.3.4/src/gam/googleapiclient/discovery_cache/file_cache.py +145 -0
  82. gam7-7.3.4/src/gam/googleapiclient/errors.py +197 -0
  83. gam7-7.3.4/src/gam/googleapiclient/http.py +1962 -0
  84. gam7-7.3.4/src/gam/googleapiclient/mimeparse.py +183 -0
  85. gam7-7.3.4/src/gam/googleapiclient/model.py +429 -0
  86. gam7-7.3.4/src/gam/googleapiclient/schema.py +317 -0
  87. gam7-7.3.4/src/gam/googleapiclient/version.py +15 -0
  88. gam7-7.3.4/src/gam/iso8601/__init__.py +28 -0
  89. gam7-7.3.4/src/gam/iso8601/iso8601.py +160 -0
  90. gam7-7.3.4/src/gam/serviceaccountlookup-v1.json +141 -0
  91. gam7-7.3.4/src/gam/six.py +982 -0
  92. gam7-7.3.4/src/gam-install.sh +497 -0
  93. gam7-7.3.4/src/gam-setup.bat +88 -0
  94. gam7-7.3.4/src/gam.exe.manifest +11 -0
  95. gam7-7.3.4/src/gam.py +15 -0
  96. gam7-7.3.4/src/gam.spec +151 -0
  97. gam7-7.3.4/src/gam.wxs +78 -0
  98. gam7-7.3.4/src/license.rtf +0 -0
  99. gam7-7.3.4/src/project-apis.txt +23 -0
  100. gam7-7.3.4/src/requirements-dev.txt +7 -0
  101. gam7-7.3.4/src/requirements.txt +14 -0
  102. gam7-7.3.4/src/setup.cfg +53 -0
  103. gam7-7.3.4/src/setup.py +3 -0
  104. gam7-7.3.4/src/tools/a_atleast_b.py +13 -0
  105. gam7-7.3.4/src/tools/gen-wix-xml-filelist.py +23 -0
  106. gam7-7.3.4/src/tools/mkGamRef.py +246 -0
  107. gam7-7.3.4/src/tools/openssl.props +30 -0
  108. gam7-7.3.4/src/version_info.txt.in +42 -0
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: Question about using GAM
3
+ about: Help with using GAM or running it for the first time
4
+ title: Please use the GAM discussion group
5
+ labels: invalid
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ If you need help with GAM, please do not file an issue here, it will be closed and ignored.
11
+
12
+ Please post your question to the GAM discussion group where other admins are ready and willing to help:
13
+
14
+ https://groups.google.com/g/google-apps-manager
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: bug
6
+ assignees: jay0lee
7
+
8
+ ---
9
+
10
+ The issue tracker is for reporting product deficiencies. "How do I?" questions should be posted to the discussion forum at https://groups.google.com/group/google-apps-manager. When in doubt, start at the discussion forum and return here only when instructed to do so.
11
+
12
+ Please confirm the following:
13
+ * I have upgraded to the latest GAM release from https://github.com/GAM-team/GAM/releases and I still have this issue.
14
+ * I am typing the command as described in the GAM Wiki at https://github.com/jay0lee/gam/wiki
15
+
16
+ Full steps to reproduce the issue:
17
+ 1.
18
+ 2.
19
+ 3.
20
+
21
+ Expected outcome (what are you trying to do?):
22
+
23
+ Actual outcome (what errors or bad behavior do you see instead?):
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for GAM
4
+ title: ''
5
+ labels: enhancement
6
+ assignees: jay0lee
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,14 @@
1
+ The issue tracker is for reporting product deficiencies. "How do I?" questions should be posted to the discussion forum at https://groups.google.com/group/google-apps-manager. When in doubt, start at the discussion forum and return here only when instructed to do so.
2
+
3
+ Please confirm the following:
4
+ * I have upgraded to the latest GAM release from https://github.com/GAM-team/GAM/releases and I still have this issue.
5
+ * I am typing the command as described in the GAM Wiki at https://github.com/GAM-team/GAM/wiki
6
+
7
+ Full steps to reproduce the issue:
8
+ 1.
9
+ 2.
10
+ 3.
11
+
12
+ Expected outcome (what are you trying to do?):
13
+
14
+ Actual outcome (what errors or bad behavior do you see instead?):
@@ -0,0 +1,38 @@
1
+ #!/bin/sh
2
+ credspath="$3"
3
+ if [ ! -d "$credspath" ]; then
4
+ echo "creating ${credspath}"
5
+ mkdir -p "$credspath"
6
+ fi
7
+ gpgfile="$1"
8
+ if [ -f "$gpgfile" ]; then
9
+ echo "source file is ${gpgfile}"
10
+ else
11
+ echo "ERROR: ${gpgfile} does not exist"
12
+ exit 1
13
+ fi
14
+ credsfile="$2"
15
+ echo "target file is ${credsfile}"
16
+ if [ -z ${PASSCODE+x} ]; then
17
+ echo "ERROR: PASSCODE is unset";
18
+ exit 2
19
+ else
20
+ echo "PASSCODE is set";
21
+ fi
22
+
23
+ gpg --batch \
24
+ --yes \
25
+ --decrypt \
26
+ --passphrase="$PASSCODE" \
27
+ --output "$credsfile" \
28
+ "$gpgfile"
29
+
30
+ if [[ "$RUNNER_OS" == "macOS" ]]; then
31
+ tar="gtar"
32
+ else
33
+ tar="tar"
34
+ fi
35
+
36
+ "$tar" xlvvf "$credsfile" --directory "$credspath"
37
+ rm -rvf "$gpgfile"
38
+ rm -rvf "$credsfile"
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <!-- These are required for binaries built by PyInstaller -->
6
+ <key>com.apple.security.cs.allow-jit</key>
7
+ <true/>
8
+ <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
9
+ <true/>
10
+ <key>com.apple.security.cs.disable-library-validation</key>
11
+ <true/>
12
+ </dict>
13
+ </plist>
@@ -0,0 +1,6 @@
1
+ oauth2.txt
2
+ nobrowser.txt
3
+ enabledasa.txt
4
+ lastupdatecheck.txt
5
+ *.lck
6
+ *.csv
@@ -0,0 +1,61 @@
1
+ # Configuration for probot-stale - https://github.com/probot/stale
2
+
3
+ # Number of days of inactivity before an Issue or Pull Request becomes stale
4
+ daysUntilStale: 90
5
+
6
+ # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
7
+ # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8
+ daysUntilClose: 7
9
+
10
+ # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
11
+ onlyLabels: []
12
+
13
+ # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
14
+ exemptLabels:
15
+ - pinned
16
+ - enhancement
17
+ - help wanted
18
+ - security
19
+
20
+ # Set to true to ignore issues in a project (defaults to false)
21
+ exemptProjects: false
22
+
23
+ # Set to true to ignore issues in a milestone (defaults to false)
24
+ exemptMilestones: false
25
+
26
+ # Set to true to ignore issues with an assignee (defaults to false)
27
+ exemptAssignees: false
28
+
29
+ # Label to use when marking as stale
30
+ staleLabel: wontfix
31
+
32
+ # Comment to post when marking as stale. Set to `false` to disable
33
+ markComment: >
34
+ This issue has been automatically marked as stale because it has not had
35
+ recent activity. It will be closed if no further activity occurs.
36
+
37
+ # Comment to post when removing the stale label.
38
+ # unmarkComment: >
39
+ # Your comment here.
40
+
41
+ # Comment to post when closing a stale Issue or Pull Request.
42
+ # closeComment: >
43
+ # Your comment here.
44
+
45
+ # Limit the number of actions per hour, from 1-30. Default is 30
46
+ limitPerRun: 30
47
+
48
+ # Limit to only `issues` or `pulls`
49
+ # only: issues
50
+
51
+ # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
52
+ # pulls:
53
+ # daysUntilStale: 30
54
+ # markComment: >
55
+ # This pull request has been automatically marked as stale because it has not had
56
+ # recent activity. It will be closed if no further activity occurs. Thank you
57
+ # for your contributions.
58
+
59
+ # issues:
60
+ # exemptLabels:
61
+ # - confirmed