diff --git a/tools/apigee-sackmesser/cmd/report/helpers/companies.sh b/tools/apigee-sackmesser/cmd/report/helpers/companies.sh new file mode 100644 index 000000000..9cf2b37bd --- /dev/null +++ b/tools/apigee-sackmesser/cmd/report/helpers/companies.sh @@ -0,0 +1,62 @@ +#!/bin/bash + +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +echo "

Companies

" >> "$report_html" + +mkdir -p "$export_folder/$organization/config/resources/edge/env/$environment/company" + +sackmesser list "organizations/$organization/companies"| jq -r -c '.[]|.' | while read -r companyname; do + sackmesser list "organizations/$organization/companies/$(urlencode "$companyname")" > "$export_folder/$organization/config/resources/edge/env/$environment/company/$(urlencode "$companyname")".json + done + +if ls "$export_folder/$organization/config/resources/edge/env/$environment/company"/*.json 1> /dev/null 2>&1; then + jq -n '[inputs]' "$export_folder/$organization/config/resources/edge/env/$environment/company"/*.json > "$export_folder/$organization/config/resources/edge/env/$environment/companies".json +fi + +echo "
" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" + +echo "" >> "$report_html" + +if [ -f "$export_folder/$organization/config/resources/edge/env/$environment/companies".json ]; then + jq -c '.[]' "$export_folder/$organization/config/resources/edge/env/$environment/companies".json | while read i; do + name=$(echo "$i" | jq -r '.name') + displayName=$(echo "$i" | jq -r '.displayName') + _status=$(echo "$i" | jq -r '.status') + apps=$(echo "$i" | jq -r '.apps[]?') + + if [ $_status = "active" ] + then + status="✅" + else + status="❌" + fi + + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + done +fi + +echo "
NameDisplay NameStatusApps
$name"$displayName"$status$apps
" >> "$report_html" diff --git a/tools/apigee-sackmesser/cmd/report/helpers/companyapps.sh b/tools/apigee-sackmesser/cmd/report/helpers/companyapps.sh new file mode 100644 index 000000000..7f3ab6ba5 --- /dev/null +++ b/tools/apigee-sackmesser/cmd/report/helpers/companyapps.sh @@ -0,0 +1,93 @@ +#!/bin/bash + +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +echo "

Company Apps

" >> "$report_html" + +mkdir -p "$export_folder/$organization/config/resources/edge/env/$environment/companyapps" + +sackmesser list "organizations/$organization/companies" | jq -r -c '.[]|.' | while read -r companyname; do + loginfo "download company: $companyname" + mkdir "$export_folder/$organization/config/resources/edge/env/$environment/companyapps/$companyname" + sackmesser list "organizations/$organization/companies/$companyname/apps" | jq -r -c '.[]|.' | while read -r appId; do + loginfo "download company app: $appId for company: $companyname" + full_app=$(sackmesser list "organizations/$organization/companies/$companyname/apps/$(urlencode "$appId")") + echo "$full_app" | jq 'del(.credentials)' > "$export_folder/$organization/config/resources/edge/env/$environment/companyapps/$appId".json + echo "$full_app" | jq -r -c '.credentials[]' | while read -r credential; do + appkey=$(echo "$credential" | jq -r '.consumerKey') + done + done +done + +if ls "$export_folder/$organization/config/resources/edge/env/$environment/companyapps"/*.json 1> /dev/null 2>&1; then + jq -n '[inputs]' "$export_folder/$organization/config/resources/edge/env/$environment/companyapps"/*.json > "$export_folder/$organization/config/resources/edge/env/$environment/companyapps".json +fi + +echo "
" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" + +echo "" >> "$report_html" + +if [ -f "$export_folder/$organization/config/resources/edge/env/$environment/companyapps".json ]; then + jq -c '.[]' "$export_folder/$organization/config/resources/edge/env/$environment/companyapps".json | while read i; do + name=$(echo "$i" | jq -r '.name') + status=$(echo "$i" | jq -r '.status') + companyName=$(echo "$i" | jq -r '.companyName') + appId=$(echo "$i" | jq -r '.appId') + appFamily=$(echo "$i" | jq -r '.appFamily') + callbackUrl=$(echo "$i" | jq -r '.callbackUrl') + accessType=$(echo "$i" | jq -r '.accessType') + createdAt=$(echo "$i" | jq -r '.createdAt' | date -u) + lastModifiedAt=$(echo "$i" | jq -r '.lastModifiedAt' | date -u) + _credentialsLoaded=$(echo "$i" | jq -r '.credentialsLoaded') + scopes=$(echo "$i" | jq -r '.scopes') + + + if [ $_credentialsLoaded = true ] + then + credentialsLoaded="✅" + else + credentialsLoaded="❌" + fi + + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + done +fi + +echo "
NameStatusCompany NameApp IDApp FamilyCallback URLAccess TypeCreated AtLast ModifiedCredentials LoadedScopes
$name$status$companyName$appId$appFamily$callbackUrl$accessType$createdAt$lastModifiedAt$credentialsLoaded$scopes
" >> "$report_html" \ No newline at end of file diff --git a/tools/apigee-sackmesser/cmd/report/helpers/ldapresources.sh b/tools/apigee-sackmesser/cmd/report/helpers/ldapresources.sh new file mode 100644 index 000000000..26ac40cf1 --- /dev/null +++ b/tools/apigee-sackmesser/cmd/report/helpers/ldapresources.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +echo "

LDAP Resources

" >> "$report_html" + +mkdir -p "$export_folder/$organization/config/resources/edge/env/$environment/ldapresource" + +sackmesser list "organizations/$organization/environments/$environment/ldapresources"| jq -r -c '.[]|.' | while read -r ldapresourcename; do + sackmesser list "organizations/$organization/environments/$environment/ldapresources/$(urlencode "$ldapresourcename")" > "$export_folder/$organization/config/resources/edge/env/$environment/ldapresource/$(urlencode "$ldapresourcename")".json + done + +if ls "$export_folder/$organization/config/resources/edge/env/$environment/ldapresource"/*.json 1> /dev/null 2>&1; then + jq -n '[inputs]' "$export_folder/$organization/config/resources/edge/env/$environment/ldapresource"/*.json > "$export_folder/$organization/config/resources/edge/env/$environment/ldapresources".json +fi + +echo "
" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" + +echo "" >> "$report_html" + +if [ -f "$export_folder/$organization/config/resources/edge/env/$environment/ldapresources".json ]; then + jq -c '.[]' "$export_folder/$organization/config/resources/edge/env/$environment/ldapresources".json | while read i; do + name=$(echo "$i" | jq -r '.name') + admin=$(echo "$i" | jq -r '.admin' | jq -r 'keys[] as $k | "
  • \($k): \(.[$k] | .)
  • "') + connectPool=$(echo "$i" | jq -r '.connectPool' | jq -r 'keys[] as $k | "
  • \($k): \(.[$k] | .)
  • "') + connection=$(echo "$i" | jq -r '.connection' | jq -r 'keys[] as $k | "
  • \($k): \(.[$k] | .)
  • "') + + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + done +fi + +echo "
    NameAdminConnect Poolconnection
    $name
      $admin
      $connectPool
      $connection
    " >> "$report_html" \ No newline at end of file diff --git a/tools/apigee-sackmesser/cmd/report/helpers/users.sh b/tools/apigee-sackmesser/cmd/report/helpers/users.sh new file mode 100644 index 000000000..83fed0dc3 --- /dev/null +++ b/tools/apigee-sackmesser/cmd/report/helpers/users.sh @@ -0,0 +1,53 @@ +#!/bin/bash + +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +echo "

    Users

    " >> "$report_html" + +mkdir -p "$export_folder/$organization/config/resources/edge/env/$environment/user" + +sackmesser list "users"| jq -r -c '.[]|.[]' | while read -r userdetail; do + email=$(echo "$userdetail" | jq -r '.name') + sackmesser list "users/$email" > "$export_folder/$organization/config/resources/edge/env/$environment/user/$email".json + done + +if ls "$export_folder/$organization/config/resources/edge/env/$environment/user"/*.json 1> /dev/null 2>&1; then + jq -n '[inputs]' "$export_folder/$organization/config/resources/edge/env/$environment/user"/*.json > "$export_folder/$organization/config/resources/edge/env/$environment/users".json +fi + +echo "
    " >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" +echo "" >> "$report_html" + +echo "" >> "$report_html" + +if [ -f "$export_folder/$organization/config/resources/edge/env/$environment/users".json ]; then + jq -c '.[]' "$export_folder/$organization/config/resources/edge/env/$environment/users".json | while read i; do + emailId=$(echo "$i" | jq -r '.emailId') + firstName=$(echo "$i" | jq -r '.firstName') + lastName=$(echo "$i" | jq -r '.lastName') + + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + echo "" >> "$report_html" + done +fi + +echo "
    EmailFirst NameLast Name
    $emailId$firstName$lastName
    " >> "$report_html" \ No newline at end of file diff --git a/tools/apigee-sackmesser/cmd/report/report.sh b/tools/apigee-sackmesser/cmd/report/report.sh index 6b41307fb..8280f8b54 100755 --- a/tools/apigee-sackmesser/cmd/report/report.sh +++ b/tools/apigee-sackmesser/cmd/report/report.sh @@ -429,6 +429,10 @@ source $helper_dir/references.sh if [ "$opdk" == "T" ]; then source $helper_dir/virtualhosts.sh + source $helper_dir/companies.sh + source $helper_dir/companyapps.sh + source $helper_dir/ldapresources.sh + source $helper_dir/users.sh fi echo "

    Organization Configurations

    " >> "$report_html"