-
Notifications
You must be signed in to change notification settings - Fork 27
feat: add data attributes definition for learning subdomain #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,137 @@ | ||
| """ | ||
| Data attributes for events within the architecture subdomain `learning`. | ||
|
|
||
| These attributes follow the form of attr objects specified in OEP-49 data | ||
| pattern. | ||
| """ | ||
| from datetime import datetime | ||
|
|
||
| import attr | ||
| from opaque_keys.edx.keys import CourseKey | ||
|
|
||
|
|
||
| @attr.s(frozen=True) | ||
| class UserNonPersonalData: | ||
| """ | ||
| Attributes defined for Open edX user object based on non-PII data. | ||
|
|
||
| Arguments: | ||
| id (int): unique identifier for the Django User object. | ||
| is_active (bool): indicates whether the user is active. | ||
| """ | ||
|
|
||
| id = attr.ib(type=int) | ||
| is_active = attr.ib(type=bool) | ||
|
|
||
|
|
||
| @attr.s(frozen=True) | ||
| class UserPersonalData: | ||
| """ | ||
| Attributes defined for Open edX user object based on PII data. | ||
|
|
||
| Arguments: | ||
| username (str): username associated with the Open edX user. | ||
| email (str): email associated with the Open edX user. | ||
| name (str): email associated with the Open edX user's profile. | ||
| """ | ||
|
|
||
| username = attr.ib(type=str) | ||
| email = attr.ib(type=str) | ||
| name = attr.ib(type=str, factory=str) | ||
|
|
||
|
|
||
| @attr.s(frozen=True) | ||
| class UserData(UserNonPersonalData): | ||
| """ | ||
| Attributes defined for Open edX user object. | ||
|
|
||
| This class extends UserNonPersonalData to include PII data completing the | ||
| user object. | ||
|
|
||
| Arguments: | ||
| pii (UserPersonalData): user's Personal Identifiable Information. | ||
| """ | ||
|
|
||
| pii = attr.ib(type=UserPersonalData) | ||
|
|
||
|
|
||
| @attr.s(frozen=True) | ||
| class CourseData: | ||
| """ | ||
| Attributes defined for Open edX Course Overview object. | ||
|
|
||
| Arguments: | ||
| course_key (str): identifier of the Course object. | ||
| display_name (str): display name associated with the course. | ||
| start (datetime): start date for the course. | ||
| end (datetime): end date for the course. | ||
| """ | ||
|
|
||
| course_key = attr.ib(type=CourseKey) | ||
| display_name = attr.ib(type=str, factory=str) | ||
| start = attr.ib(type=datetime, default=None) | ||
| end = attr.ib(type=datetime, default=None) | ||
|
|
||
|
|
||
| @attr.s(frozen=True) | ||
| class CourseEnrollmentData: | ||
| """ | ||
| Attributes defined for Open edX Course Enrollment object. | ||
|
|
||
| Arguments: | ||
| user (UserData): user associated with the Course Enrollment. | ||
| course (CourseData): course where the user is enrolled in. | ||
| mode (str): course mode associated with the course. | ||
| is_active (bool): whether the enrollment is active. | ||
| creation_date (datetime): creation date of the enrollment. | ||
| created_by (UserData): if available, who created the enrollment. | ||
| """ | ||
|
|
||
| user = attr.ib(type=UserData) | ||
| course = attr.ib(type=CourseData) | ||
| mode = attr.ib(type=str) | ||
| is_active = attr.ib(type=bool) | ||
| creation_date = attr.ib(type=datetime) | ||
| created_by = attr.ib(type=UserData, default=None) | ||
|
|
||
|
|
||
| @attr.s(frozen=True) | ||
| class CertificateData: | ||
| """ | ||
| Attributes defined for Open edX Certificate data object. | ||
|
|
||
| Arguments: | ||
| user (UserData): user associated with the Certificate. | ||
| course (CourseData): course where the user obtained the certificate. | ||
| mode (str): course mode associated with the course. | ||
| grade (str): user's grade in this course run. | ||
| current_status (str): current certificate status. | ||
| previous_status (str): if available, pre-event certificate status. | ||
| download_url (str): URL where the PDF version of the certificate. | ||
| name (str): user's name. | ||
| """ | ||
|
|
||
| user = attr.ib(type=UserData) | ||
| course = attr.ib(type=CourseData) | ||
| mode = attr.ib(type=str) | ||
| grade = attr.ib(type=str) | ||
| download_url = attr.ib(type=str) | ||
| name = attr.ib(type=str) | ||
| current_status = attr.ib(type=str) | ||
| previous_status = attr.ib(type=str, factory=str) | ||
|
|
||
|
|
||
| @attr.s(frozen=True) | ||
| class CohortData: | ||
| """ | ||
| Attributes defined for Open edX Cohort Membership object. | ||
|
|
||
| Arguments: | ||
| user (UserData): user assigned to the group. | ||
| course (CourseData): course associated with the course group. | ||
| name (str): name of the cohort group. | ||
| """ | ||
|
|
||
| user = attr.ib(type=UserData) | ||
| course = attr.ib(type=CourseData) | ||
| name = attr.ib(type=str) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,3 +3,4 @@ | |
|
|
||
| django | ||
| attrs | ||
| edx-opaque-keys[django] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @felipemontoya, thanks for the recommendation! Do you think we are ready to merge?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we are