├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── affiliation ├── handlers.go └── service.go ├── apidb └── service.go ├── cmd ├── serve.go └── serve_aws.go ├── docker ├── Dockerfile ├── build_image.sh └── run.sh ├── docs ├── doc.go └── handlers.go ├── elastic └── service.go ├── errs └── errors.go ├── find.sh ├── for_each_go_file.sh ├── gen └── restapi │ └── configure_dev_analytics_affiliation.go ├── go.mod ├── go.sum ├── health ├── handlers.go └── service.go ├── helm ├── da-affiliation │ ├── .helmignore │ ├── Chart.yaml │ ├── secrets │ │ ├── API_DB_ENDPOINT.secret.example │ │ ├── AUTH0_CLIENT_ID.secret.example │ │ ├── AUTH0_DOMAIN.secret.example │ │ ├── AUTH0_USERNAME_CLAIM.secret.example │ │ ├── CERT.secret.example │ │ ├── CORS_ALLOWED_ORIGINS.secret.example │ │ ├── ELASTIC_PASSWORD.secret.example │ │ ├── ELASTIC_URL.secret.example │ │ ├── ELASTIC_USERNAME.secret.example │ │ ├── SH_DB_ENDPOINT.secret.example │ │ └── SYNC_URL.secret.example │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── api.yaml │ │ ├── namespace.yaml │ │ └── secrets.yaml │ └── values.yaml ├── delete.sh └── setup.sh ├── logging ├── common.go └── logger.go ├── main.go ├── main_test.go ├── map_org_names.yaml ├── platform └── organization.go ├── serverless.yml ├── sh ├── api.sh ├── api_local_prod.sh ├── api_local_test.sh ├── api_logs.sh ├── check_affs_data.sh ├── check_finos_projs.sh ├── check_login.sh ├── check_unknowns.sh ├── compare_commits.sh ├── curl_delete_enrollment.sh ├── curl_delete_enrollments.sh ├── curl_delete_identity.sh ├── curl_delete_matching_blacklist.sh ├── curl_delete_org_domain.sh ├── curl_delete_organization.sh ├── curl_delete_profile.sh ├── curl_delete_slug_mapping.sh ├── curl_es_unaffiliated.sh ├── curl_get_affiliation_both.sh ├── curl_get_affiliation_multi.sh ├── curl_get_affiliation_single.sh ├── curl_get_all_yaml.sh ├── curl_get_find_organization_by_id.sh ├── curl_get_find_organization_by_name.sh ├── curl_get_identity.sh ├── curl_get_list_organizations.sh ├── curl_get_list_organizations_domains.sh ├── curl_get_list_profiles.sh ├── curl_get_list_projects.sh ├── curl_get_list_slug_mappings.sh ├── curl_get_matching_blacklist.sh ├── curl_get_profile.sh ├── curl_get_profile_by_username.sh ├── curl_get_profile_enrollments.sh ├── curl_get_profile_nested.sh ├── curl_get_slug_mapping.sh ├── curl_get_top_contributors.sh ├── curl_get_top_contributors_csv.sh ├── curl_get_top_contributors_query.sh ├── curl_get_unaffiliated.sh ├── curl_list_users.sh ├── curl_merge_unmerge.sh ├── curl_post_add_enrollment.sh ├── curl_post_add_identities.sh ├── curl_post_add_identity.sh ├── curl_post_add_organization.sh ├── curl_post_add_slug_mapping.sh ├── curl_post_add_unique_identity.sh ├── curl_post_bulk_update.sh ├── curl_post_matching_blacklist.sh ├── curl_put_cache_top_contributors.sh ├── curl_put_det_aff_range.sh ├── curl_put_edit_enrollment.sh ├── curl_put_edit_enrollment_by_id.sh ├── curl_put_edit_organization.sh ├── curl_put_edit_profile.sh ├── curl_put_edit_slug_mapping.sh ├── curl_put_hide_emails.sh ├── curl_put_map_org_names.sh ├── curl_put_merge_all.sh ├── curl_put_merge_enrollments.sh ├── curl_put_merge_unique_identities.sh ├── curl_put_move_identity.sh ├── curl_put_org_domain.sh ├── curl_put_sync_sf_profiles.sh ├── curl_unarchive_profile.sh ├── es.sh ├── es_blanks.sh ├── es_documents.sh ├── es_local_docker.sh ├── es_unknowns.sh ├── example_add_identities.json ├── example_bulk.json ├── example_bulk2.json ├── finos_blanks.sh ├── finos_fix_projects.sh ├── finos_rolls.sh ├── finos_unknowns.sh ├── fix_blank_orgs.sh ├── fix_dot_git_in_finos.sh ├── fix_es_docs.sh ├── fix_finos_git_unknowns.sh ├── fix_unknowns.sh ├── get_token.sh ├── local_api.sh ├── mariadb.sh ├── mariadb_drop.sh ├── mariadb_init.sh ├── mariadb_init_default.sh ├── mariadb_local_docker.sh ├── mariadb_readonly_shell.sh ├── mariadb_reinit.sh ├── mariadb_root_shell.sh ├── mariadb_sortinghat_shell.sh ├── merge_gits.sh ├── project_svc.sh ├── psql.sh ├── psql_api_shell.sh ├── psql_init.sh ├── psql_local_docker.sh ├── psql_shell.sh ├── restore_backup.sh ├── sh_structure.sql ├── shared.sh ├── top_contributors.json ├── top_contributors_response.json ├── update_finos_rolls.sh ├── update_mapping.sh ├── uuids.json └── validate_token.sh ├── shared └── service.go ├── shdb └── service.go ├── sql ├── add_last_modified_by.sql ├── add_locked_by.sql ├── add_permissions.sql ├── check_results.sql ├── check_sh_db.sql ├── profiles_without_identities_and_enrollments.sql ├── structure_updates.sql └── testing_api.sql ├── swagger ├── dev-analytics-affiliation.yaml └── errors.go └── usersvc └── user.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/README.md -------------------------------------------------------------------------------- /affiliation/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/affiliation/handlers.go -------------------------------------------------------------------------------- /affiliation/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/affiliation/service.go -------------------------------------------------------------------------------- /apidb/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/apidb/service.go -------------------------------------------------------------------------------- /cmd/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/cmd/serve.go -------------------------------------------------------------------------------- /cmd/serve_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/cmd/serve_aws.go -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/docker/build_image.sh -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/docker/run.sh -------------------------------------------------------------------------------- /docs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/docs/doc.go -------------------------------------------------------------------------------- /docs/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/docs/handlers.go -------------------------------------------------------------------------------- /elastic/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/elastic/service.go -------------------------------------------------------------------------------- /errs/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/errs/errors.go -------------------------------------------------------------------------------- /find.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/find.sh -------------------------------------------------------------------------------- /for_each_go_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/for_each_go_file.sh -------------------------------------------------------------------------------- /gen/restapi/configure_dev_analytics_affiliation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/gen/restapi/configure_dev_analytics_affiliation.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/go.sum -------------------------------------------------------------------------------- /health/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/health/handlers.go -------------------------------------------------------------------------------- /health/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/health/service.go -------------------------------------------------------------------------------- /helm/da-affiliation/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/.helmignore -------------------------------------------------------------------------------- /helm/da-affiliation/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/Chart.yaml -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/API_DB_ENDPOINT.secret.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/secrets/API_DB_ENDPOINT.secret.example -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/AUTH0_CLIENT_ID.secret.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/secrets/AUTH0_CLIENT_ID.secret.example -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/AUTH0_DOMAIN.secret.example: -------------------------------------------------------------------------------- 1 | your.auth0.domain.org -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/AUTH0_USERNAME_CLAIM.secret.example: -------------------------------------------------------------------------------- 1 | https://your.auth0.domain.org/claims/user -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/CERT.secret.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/secrets/CERT.secret.example -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/CORS_ALLOWED_ORIGINS.secret.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/secrets/CORS_ALLOWED_ORIGINS.secret.example -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/ELASTIC_PASSWORD.secret.example: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/ELASTIC_URL.secret.example: -------------------------------------------------------------------------------- 1 | http://127.0.0.1:19200 -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/ELASTIC_USERNAME.secret.example: -------------------------------------------------------------------------------- 1 | user -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/SH_DB_ENDPOINT.secret.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/secrets/SH_DB_ENDPOINT.secret.example -------------------------------------------------------------------------------- /helm/da-affiliation/secrets/SYNC_URL.secret.example: -------------------------------------------------------------------------------- 1 | http://my-deploy.io:6060 -------------------------------------------------------------------------------- /helm/da-affiliation/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/da-affiliation/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/da-affiliation/templates/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/templates/api.yaml -------------------------------------------------------------------------------- /helm/da-affiliation/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/templates/namespace.yaml -------------------------------------------------------------------------------- /helm/da-affiliation/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/templates/secrets.yaml -------------------------------------------------------------------------------- /helm/da-affiliation/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/da-affiliation/values.yaml -------------------------------------------------------------------------------- /helm/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/delete.sh -------------------------------------------------------------------------------- /helm/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/helm/setup.sh -------------------------------------------------------------------------------- /logging/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/logging/common.go -------------------------------------------------------------------------------- /logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/logging/logger.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/main_test.go -------------------------------------------------------------------------------- /map_org_names.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/map_org_names.yaml -------------------------------------------------------------------------------- /platform/organization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/platform/organization.go -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/serverless.yml -------------------------------------------------------------------------------- /sh/api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/api.sh -------------------------------------------------------------------------------- /sh/api_local_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/api_local_prod.sh -------------------------------------------------------------------------------- /sh/api_local_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/api_local_test.sh -------------------------------------------------------------------------------- /sh/api_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/api_logs.sh -------------------------------------------------------------------------------- /sh/check_affs_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/check_affs_data.sh -------------------------------------------------------------------------------- /sh/check_finos_projs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/check_finos_projs.sh -------------------------------------------------------------------------------- /sh/check_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/check_login.sh -------------------------------------------------------------------------------- /sh/check_unknowns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/check_unknowns.sh -------------------------------------------------------------------------------- /sh/compare_commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/compare_commits.sh -------------------------------------------------------------------------------- /sh/curl_delete_enrollment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_enrollment.sh -------------------------------------------------------------------------------- /sh/curl_delete_enrollments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_enrollments.sh -------------------------------------------------------------------------------- /sh/curl_delete_identity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_identity.sh -------------------------------------------------------------------------------- /sh/curl_delete_matching_blacklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_matching_blacklist.sh -------------------------------------------------------------------------------- /sh/curl_delete_org_domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_org_domain.sh -------------------------------------------------------------------------------- /sh/curl_delete_organization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_organization.sh -------------------------------------------------------------------------------- /sh/curl_delete_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_profile.sh -------------------------------------------------------------------------------- /sh/curl_delete_slug_mapping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_delete_slug_mapping.sh -------------------------------------------------------------------------------- /sh/curl_es_unaffiliated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_es_unaffiliated.sh -------------------------------------------------------------------------------- /sh/curl_get_affiliation_both.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_affiliation_both.sh -------------------------------------------------------------------------------- /sh/curl_get_affiliation_multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_affiliation_multi.sh -------------------------------------------------------------------------------- /sh/curl_get_affiliation_single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_affiliation_single.sh -------------------------------------------------------------------------------- /sh/curl_get_all_yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_all_yaml.sh -------------------------------------------------------------------------------- /sh/curl_get_find_organization_by_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_find_organization_by_id.sh -------------------------------------------------------------------------------- /sh/curl_get_find_organization_by_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_find_organization_by_name.sh -------------------------------------------------------------------------------- /sh/curl_get_identity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_identity.sh -------------------------------------------------------------------------------- /sh/curl_get_list_organizations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_list_organizations.sh -------------------------------------------------------------------------------- /sh/curl_get_list_organizations_domains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_list_organizations_domains.sh -------------------------------------------------------------------------------- /sh/curl_get_list_profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_list_profiles.sh -------------------------------------------------------------------------------- /sh/curl_get_list_projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_list_projects.sh -------------------------------------------------------------------------------- /sh/curl_get_list_slug_mappings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_list_slug_mappings.sh -------------------------------------------------------------------------------- /sh/curl_get_matching_blacklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_matching_blacklist.sh -------------------------------------------------------------------------------- /sh/curl_get_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_profile.sh -------------------------------------------------------------------------------- /sh/curl_get_profile_by_username.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_profile_by_username.sh -------------------------------------------------------------------------------- /sh/curl_get_profile_enrollments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_profile_enrollments.sh -------------------------------------------------------------------------------- /sh/curl_get_profile_nested.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_profile_nested.sh -------------------------------------------------------------------------------- /sh/curl_get_slug_mapping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_slug_mapping.sh -------------------------------------------------------------------------------- /sh/curl_get_top_contributors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_top_contributors.sh -------------------------------------------------------------------------------- /sh/curl_get_top_contributors_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_top_contributors_csv.sh -------------------------------------------------------------------------------- /sh/curl_get_top_contributors_query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_top_contributors_query.sh -------------------------------------------------------------------------------- /sh/curl_get_unaffiliated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_get_unaffiliated.sh -------------------------------------------------------------------------------- /sh/curl_list_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_list_users.sh -------------------------------------------------------------------------------- /sh/curl_merge_unmerge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_merge_unmerge.sh -------------------------------------------------------------------------------- /sh/curl_post_add_enrollment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_add_enrollment.sh -------------------------------------------------------------------------------- /sh/curl_post_add_identities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_add_identities.sh -------------------------------------------------------------------------------- /sh/curl_post_add_identity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_add_identity.sh -------------------------------------------------------------------------------- /sh/curl_post_add_organization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_add_organization.sh -------------------------------------------------------------------------------- /sh/curl_post_add_slug_mapping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_add_slug_mapping.sh -------------------------------------------------------------------------------- /sh/curl_post_add_unique_identity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_add_unique_identity.sh -------------------------------------------------------------------------------- /sh/curl_post_bulk_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_bulk_update.sh -------------------------------------------------------------------------------- /sh/curl_post_matching_blacklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_post_matching_blacklist.sh -------------------------------------------------------------------------------- /sh/curl_put_cache_top_contributors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_cache_top_contributors.sh -------------------------------------------------------------------------------- /sh/curl_put_det_aff_range.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_det_aff_range.sh -------------------------------------------------------------------------------- /sh/curl_put_edit_enrollment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_edit_enrollment.sh -------------------------------------------------------------------------------- /sh/curl_put_edit_enrollment_by_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_edit_enrollment_by_id.sh -------------------------------------------------------------------------------- /sh/curl_put_edit_organization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_edit_organization.sh -------------------------------------------------------------------------------- /sh/curl_put_edit_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_edit_profile.sh -------------------------------------------------------------------------------- /sh/curl_put_edit_slug_mapping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_edit_slug_mapping.sh -------------------------------------------------------------------------------- /sh/curl_put_hide_emails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_hide_emails.sh -------------------------------------------------------------------------------- /sh/curl_put_map_org_names.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_map_org_names.sh -------------------------------------------------------------------------------- /sh/curl_put_merge_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_merge_all.sh -------------------------------------------------------------------------------- /sh/curl_put_merge_enrollments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_merge_enrollments.sh -------------------------------------------------------------------------------- /sh/curl_put_merge_unique_identities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_merge_unique_identities.sh -------------------------------------------------------------------------------- /sh/curl_put_move_identity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_move_identity.sh -------------------------------------------------------------------------------- /sh/curl_put_org_domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_org_domain.sh -------------------------------------------------------------------------------- /sh/curl_put_sync_sf_profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_put_sync_sf_profiles.sh -------------------------------------------------------------------------------- /sh/curl_unarchive_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/curl_unarchive_profile.sh -------------------------------------------------------------------------------- /sh/es.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./sh/es_local_docker.sh 3 | -------------------------------------------------------------------------------- /sh/es_blanks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/es_blanks.sh -------------------------------------------------------------------------------- /sh/es_documents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/es_documents.sh -------------------------------------------------------------------------------- /sh/es_local_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/es_local_docker.sh -------------------------------------------------------------------------------- /sh/es_unknowns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/es_unknowns.sh -------------------------------------------------------------------------------- /sh/example_add_identities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/example_add_identities.json -------------------------------------------------------------------------------- /sh/example_bulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/example_bulk.json -------------------------------------------------------------------------------- /sh/example_bulk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/example_bulk2.json -------------------------------------------------------------------------------- /sh/finos_blanks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/finos_blanks.sh -------------------------------------------------------------------------------- /sh/finos_fix_projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/finos_fix_projects.sh -------------------------------------------------------------------------------- /sh/finos_rolls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/finos_rolls.sh -------------------------------------------------------------------------------- /sh/finos_unknowns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/finos_unknowns.sh -------------------------------------------------------------------------------- /sh/fix_blank_orgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/fix_blank_orgs.sh -------------------------------------------------------------------------------- /sh/fix_dot_git_in_finos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/fix_dot_git_in_finos.sh -------------------------------------------------------------------------------- /sh/fix_es_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/fix_es_docs.sh -------------------------------------------------------------------------------- /sh/fix_finos_git_unknowns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/fix_finos_git_unknowns.sh -------------------------------------------------------------------------------- /sh/fix_unknowns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/fix_unknowns.sh -------------------------------------------------------------------------------- /sh/get_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/get_token.sh -------------------------------------------------------------------------------- /sh/local_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/local_api.sh -------------------------------------------------------------------------------- /sh/mariadb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb.sh -------------------------------------------------------------------------------- /sh/mariadb_drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_drop.sh -------------------------------------------------------------------------------- /sh/mariadb_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_init.sh -------------------------------------------------------------------------------- /sh/mariadb_init_default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_init_default.sh -------------------------------------------------------------------------------- /sh/mariadb_local_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_local_docker.sh -------------------------------------------------------------------------------- /sh/mariadb_readonly_shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_readonly_shell.sh -------------------------------------------------------------------------------- /sh/mariadb_reinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_reinit.sh -------------------------------------------------------------------------------- /sh/mariadb_root_shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_root_shell.sh -------------------------------------------------------------------------------- /sh/mariadb_sortinghat_shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/mariadb_sortinghat_shell.sh -------------------------------------------------------------------------------- /sh/merge_gits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/merge_gits.sh -------------------------------------------------------------------------------- /sh/project_svc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/project_svc.sh -------------------------------------------------------------------------------- /sh/psql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/psql.sh -------------------------------------------------------------------------------- /sh/psql_api_shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/psql_api_shell.sh -------------------------------------------------------------------------------- /sh/psql_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/psql_init.sh -------------------------------------------------------------------------------- /sh/psql_local_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/psql_local_docker.sh -------------------------------------------------------------------------------- /sh/psql_shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/psql_shell.sh -------------------------------------------------------------------------------- /sh/restore_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/restore_backup.sh -------------------------------------------------------------------------------- /sh/sh_structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/sh_structure.sql -------------------------------------------------------------------------------- /sh/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/shared.sh -------------------------------------------------------------------------------- /sh/top_contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/top_contributors.json -------------------------------------------------------------------------------- /sh/top_contributors_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/top_contributors_response.json -------------------------------------------------------------------------------- /sh/update_finos_rolls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/update_finos_rolls.sh -------------------------------------------------------------------------------- /sh/update_mapping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/update_mapping.sh -------------------------------------------------------------------------------- /sh/uuids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/uuids.json -------------------------------------------------------------------------------- /sh/validate_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sh/validate_token.sh -------------------------------------------------------------------------------- /shared/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/shared/service.go -------------------------------------------------------------------------------- /shdb/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/shdb/service.go -------------------------------------------------------------------------------- /sql/add_last_modified_by.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/add_last_modified_by.sql -------------------------------------------------------------------------------- /sql/add_locked_by.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/add_locked_by.sql -------------------------------------------------------------------------------- /sql/add_permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/add_permissions.sql -------------------------------------------------------------------------------- /sql/check_results.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/check_results.sql -------------------------------------------------------------------------------- /sql/check_sh_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/check_sh_db.sql -------------------------------------------------------------------------------- /sql/profiles_without_identities_and_enrollments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/profiles_without_identities_and_enrollments.sql -------------------------------------------------------------------------------- /sql/structure_updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/structure_updates.sql -------------------------------------------------------------------------------- /sql/testing_api.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/sql/testing_api.sql -------------------------------------------------------------------------------- /swagger/dev-analytics-affiliation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/swagger/dev-analytics-affiliation.yaml -------------------------------------------------------------------------------- /swagger/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/swagger/errors.go -------------------------------------------------------------------------------- /usersvc/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LF-Engineering/dev-analytics-affiliation/HEAD/usersvc/user.go --------------------------------------------------------------------------------