pip install pipenv
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
The configuration file must be in json format. e.g.
{
"LMS_URL": "path-to-lms-running-server",
"OPEN_EDX_OAUTH_TOKEN": "oAuth-lms-token",
"AWS_ACCESS_KEY_ID": "S3-AWS-access-key",
"AWS_SECRET_ACCESS_KEY": "S3-AWS-secret-key",
"SUPPORTED_REPORTS": [
"completion_report",
"last_page_accessed",
"time_spent_report",
"Add a new one, if you add a new report backend"
],
"COMPLETION_REPORT": {
"REPORT_URL": "example:/proversity-reports/api/v0/generate-completion-report",
"BACKEND_REPORT": "example:proversity_reports_script.report_backend.completion_report:CompletionReportBackend",
"SPREADSHEET_DATA": {
"completion_sheet_id_<course_id>": "Spreadsheet id for completion report.",
"general_course_sheet_id_<course_id>": "Spreadsheet id for course structure report."
}
},
"LAST_PAGE_ACCESSED": {
"REPORT_URL": "path-to-report-generation-url",
"BACKEND_REPORT": "absolute-path-to-report-backend-module:report-backend-class-name"
"SPREADSHEET_DATA": {
"last_page_accessed_table_<course_id>": "Spreadsheet id for last page accessed report.",
"last_page_accessed_bar_char_<course_id>": "Spreadsheet id for last page accessed report.",
}
},
"TIME_SPENT_REPORT": {
"REPORT_URL": "path-to-report-generation-url",
"BACKEND_REPORT": "absolute-path-to-report-backend-module:report-backend-class-name",
"SPREADSHEET_DATA": {
"time_spent_sheet_id_<course_id>": "Spreadsheet id for time spent report."
},
"EXTRA_DATA": {
You can add here any data you will use in the report backend.
"MY_CUSTOM_ITEM": "MY_CUSTOM_VALUE"
},
"EXTRA_REQUEST_DATA": {
You can add any additional request field you want to include with the report request.
You can overwrite any extra request data item from command arguments, to do so
you only need to add the command argument with the same name that you defined in the
configuration file and the extra request data item will be overwritten with the command argument value.
"my-additional-request-field": "my-additional-request-value"
}
},
"LAST-LOGIN-REPORT":{
"REPORT_URL":"example:/proversity-reports/api/v0/generate-last-login-report",
"BACKEND_REPORT":"proversity_reports_script.report_backend.last_login_report:LastLoginReportBackend",
"EXTRA_DATA":{
"BUCKET_NAME":"Name of the bucket to store the reports",
"SPREADSHEET_DATA":{
"last_login_report_<course_id>":"Spreadsheet id for last login report."
}
}
},
"ACTIVITY-COMPLETION-REPORT":{
"REPORT_URL":"example:/proversity-reports/api/v0/generate-activity-completion-report",
"BACKEND_REPORT":"proversity_reports_script.report_backend.activity_completion_report:ActivityCompletionReportBackend",
"EXTRA_REQUEST_DATA":{
"required_activity_ids":[
...
],
"block_types":[
"freetextresponse",
"activetabe",
...
]
},
"EXTRA_DATA":{
"BUCKET_NAME":"Name of the bucket to store the reports",
"SPREADSHEET_DATA":{
"activity_completion_report_<course_id>":"Spreadsheet id for activity completion report."
}
}
},
"Add a new key in uppercase according to the new SUPPORTED_REPORTS value.
The new key must have the keys REPORT_URL and BACKEND_REPORT."
"COURSES": [
course-id
],
"GOOGLE_OAUTH_CREDENTIALS": {
"installed": {
"client_id": "Google oAuth client ID",
"project_id": "Google console project ID",
"auth_uri": "oAuth uri",
"token_uri": "oAuth token uri",
"auth_provider_x509_cert_url": "String",
"client_secret": "Google oAuth client secret",
"redirect_uris": [
"Google oAuth urls"
]
}
}
}
GOOGLE_OAUTH_CREDENTIALS come from downloaded Google oAuth credentials in json format.
python3 ./fetch_report.py --report "supported-report-name" --config-file "path-to-config-file" --oauth-config-file "path-to-google-oauth-credentials-file" --api_version "v0 or v1"
This command creates a new file called "google-oauth-credentials.json" containing the authorized Google oAuth credentials. (token)
python3 ./get_google_oauth_permissions.py --config-file "path-to-config-file"