Send Open edX events to selected URLs.
Project description
openedx-events-sender
Purpose
Send Open edX events to selected URLs.
Getting Started
Developing
One Time Setup
# Clone the repository
git clone git@github.com:open-craft/openedx-events-sender.git
cd openedx-events-sender
# Set up a virtualenv using virtualenvwrapper with the same name as the repo and activate it
mkvirtualenv -p python3.8 openedx-events-sender
Every time you develop something in this repo
# Activate the virtualenv
workon openedx-events-sender
# Grab the latest code
git checkout main
git pull
# Install/update the dev requirements
make requirements
# Run the tests and quality checks (to verify the status before you make any changes)
make validate
# Make a new branch for your changes
git checkout -b <your_github_username>/<short_description>
# Using your favorite editor, edit the code to make your change.
vim ...
# Run your new tests
pytest ./path/to/new/tests
# Run all the tests and quality checks
make validate
# Commit all your changes
git commit ...
git push
# Open a PR and ask for review.
Deploying
Native Installation
To deploy this to an Open edX instance, include it in the EDXAPP_PRIVATE_REQUIREMENTS or EDXAPP_EXTRA_REQUIREMENTS variables.
Include the require configuration settings in EDXAPP_LMS_ENV_EXTRA variable.
Tutor Installation
To install this in the Open edX build, include it in the config.yml file using the OPENEDX_EXTRA_PIP_REQUIREMENTS variable.
You need to rebuild the Open edX image:
tutor images build openedx
Add the required configuration settings using a yaml tutor plugin:
name: events_sender_plugin
version: 0.1.0
patches:
lms-env: |
EVENT_SENDER_ENROLLMENT_URL: "https://webhook.site/xyz"
EVENT_SENDER_ENROLLMENT_HEADERS: {"Authorization": "TEST DATA"}
EVENT_SENDER_ENROLLMENT_FIELD_MAPPING: {
"user_pii_email": "email",
"course_course_key": "course_id",
"is_active": "is_active"
}
Documentation
Events
COURSE_ENROLLMENT_CHANGED
Example payload
{
"event": "org.openedx.learning.course.enrollment.changed.v1",
"user_id": 42,
"user_is_active": true,
"user_pii_username": "test",
"user_pii_email": "test@example.com",
"user_pii_name": "Test Name",
"course_course_key": "course-v1:edX+DemoX+Demo_Course",
"course_display_name": "Demonstration Course",
"course_start": "2022-09-30 00:00:00",
"course_end": null,
"mode": "audit",
"is_active": true,
"creation_date": "2022-09-30 12:34:56",
"created_by": null
}
Configuration
To send this event, you need to set EVENT_SENDER_ENROLLMENT_URL in your settings.
You can pass custom headers by setting EVENT_SENDER_ENROLLMENT_HEADERS.
You can define custom field mapping with EVENT_SENDER_ENROLLMENT_FIELD_MAPPING. E.g. If you would like to send email instead of user_pii_email, set this to the following value:
{
"user_pii_email": "email"
}
You can also define event-specific metadata by prefixing variables from EventMetadata with metadata_. E.g. to get the event’s name, you should specify metadata_event_type as a key in the mapping.
Note: if you want to use custom mapping, you need to define all values that will be sent. If you define an empty field mapping, then an empty dict will be sent in the request.
Getting Help
If you’re having trouble, we have discussion forums at https://discuss.openedx.org where you can connect with others in the community.
Our real-time conversations are on Slack. You can request a Slack invitation, then join our community Slack workspace.
For anything non-trivial, the best path is to open an issue in this repository with as many details about the issue you are facing as you can provide.
https://github.com/open-craft/openedx-events-sender/issues
For more information about these options, see the Getting Help page.
License
The code in this repository is licensed under the AGPL 3.0 unless otherwise noted.
Please see LICENSE.txt for details.
Contributing
Contributions are very welcome. Please read How To Contribute for details.
This project is currently accepting all types of contributions, bug fixes, security fixes, maintenance work, or new features. However, please make sure to have a discussion about your new feature idea with the maintainers prior to beginning development to maximize the chances of your change being accepted. You can start a conversation by creating a new issue on this repo summarizing your idea.
The Open edX Code of Conduct
All community members are expected to follow the Open edX Code of Conduct.
People
The assigned maintainers for this component and other project details may be found in Backstage. Backstage pulls this data from the catalog-info.yaml file in this repo.
Reporting Security Issues
Please do not report security issues in public. Please email security@tcril.org.
Change Log
Unreleased
[1.0.0] - 2022-10-17
Added
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file openedx-events-sender-1.0.0.tar.gz
.
File metadata
- Download URL: openedx-events-sender-1.0.0.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ed1b0445780e21e4365bece91ca4f891f54a3702a8fe1011ac59239a72bbe84 |
|
MD5 | c6c5ff2eb73a8e4ab5b4ff71513f6ddf |
|
BLAKE2b-256 | bc5675cf5506026841addaf3510ed1065425b7d23f9f88023757b6c70cf58242 |
File details
Details for the file openedx_events_sender-1.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: openedx_events_sender-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 20.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d48bb5f03eb18d5367e4f4d09f6000090a0e98add2587d4408aa881c12f12a82 |
|
MD5 | 1487b29c9259134dac2ede785859ac5a |
|
BLAKE2b-256 | b7c956ee95b32aec2da748e640e82e04561171559af4515cc2a130328549a3b8 |