Skip to content

dctacademy/e-learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

e-learning

This is done to help the students who are learning front end development either React / Angular / Vue to build an application to test out their skills.

This is backened app built with technnologies: NodeJS, ExpressJS and MongoDB.
other tools: Postman, REST APIs.
Packages:
    "bcryptjs": "^2.4.3",
    "cors": "^2.8.5",
    "express": "^4.17.1",
    "jsonwebtoken": "^8.5.1",
    "lodash": "^4.17.21",
    "mongoose": "^6.0.12",
    "mongoose-unique-validator": "^3.0.0",
    "nodemon": "^2.0.14",
    "uuid": "^8.3.2",
    "validator": "^13.6.0""

The modules are as follows

  1. User
  2. Student
  3. Course
  4. Lecture

User Resource

# action method url request response auth (headers) Role
1. register a user (admin) POST /admin/register
  • username*
  • email*
  • password*
  • academy
    • name*
    • website
  • { "notice": "Successfully created admin for < Academy name >" }
or
  • { "errors": "admin for this academy is already created" }
no no
2. login a user (admin) POST /admin/login
  • email*
  • password*
  • token
no no
3. get user info GET /admin/account -
  • _id
  • email
  • username
  • role
  • academy
    • academyId
    • name
    • website
{ Authorization : <token>} admin
4. update user info PUT /admin
  • email
  • username
  • academy
    • name
    • website
  • _id
  • email
  • username
  • role
  • academy
    • academyId
    • name
    • website
{ Authorization : <token>} admin

note - * indicates a required field

Student Resource

# action method url request response auth (headers) Role
1. register a student POST /admin/students
  • name*
  • email*
  • password*
  • isAllowed
  • _id
  • name
  • email
  • password
  • student
  • true (default true)
  • courses empty array
  • user
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
2. login a student POST /students/login
  • email*
  • password*
  • token
no no
3. get student information GET /students/:id -
  • _id
  • name
  • email
  • role
  • isAllowed
  • empty array / array of courses
  • user
{ Authorization : <token>} admin or student
4. update student info PUT /students/:id
  • name
  • email
  • isAllowed (boolean)
  • _id
  • name
  • email
  • role
  • isAllowed
  • empty array / array of courses
  • user
{ Authorization : <token>} admin
5. get all students GET /admin/students - empty array / array of students { Authorization : <token>} admin
6. delete student DELETE /admin/students/:id -
  • _id
  • name
  • email
  • role
  • isAllowed
  • user
  • empty array / array of courses
{ Authorization : <token>} admin

note - * indicates a required field

Course Resource

# action method url request response auth (headers) Role
1. get all courses (admin) GET /courses - empty array / array of courses { Authorization : <token>} admin
2. get all courses (student) GET /courses - empty array / array of courses { Authorization : <token>} student
3. create a course POST /courses
  • name*
  • description*
  • duration*
  • releaseDate
  • isDelete
  • category*
  • validity*
  • level*
  • author*
  • _id
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • empty array / array of students
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
4. get a course info GET /courses/:id -
  • _id
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • empty array or array of students
  • createdAt
  • updatedAt
{ Authorization : <token>} admin or student
5. update course info PUT /courses/:id
  • _id
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • _id
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • empty array / array of students
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
6. delete course DELETE /courses/:id -
  • _id
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • empty array / array of students
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
7. enroll to the course by admin PATCH /courses/enroll?courseId=< courseId >&studentId=< studentId > -
  • _id
  • students - array of students
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
8. unenroll to the course by admin PATCH /courses/unenroll?courseId=< courseId >&studentId=< studentId > -
  • _id
  • students - array of students / empty array
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
9. enroll to the course by logged in student PATCH /courses/enroll?courseId=< courseId > -
  • students - arrya of students
  • _id
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • createdAt
  • updatedAt
{ Authorization : <token>} student
10. unenroll to the course by logged in student PATCH /courses/unenroll?courseId=< courseId > -
  • students - arrya of objects
  • _id
  • name
  • description
  • duration
  • releaseDate
  • isDelete
  • category
  • validity
  • level
  • author
  • createdAt
  • updatedAt
{ Authorization : <token>} student
11. enrolled courses GET /courses/enrolled - empty array / array of courses { Authorization : <token>} student

Choose the courses - 'HTML', 'CSS', 'javascript', 'reactjs', 'nodejs','expressjs', 'mongodb'

Choose the levels - 'beginner', 'intermediate', 'expert'

Release Date format - YYYY-MM-DD

Validity and duration fields - Number type in months (Ex: 6)

note - * indicates a required field

Lecture Resource

# action method url request response auth (headers) Role
1. get all lectures (admin) GET /courses/:id/lectures - empty array / array of lectures { Authorization : <token>} admin or student
2. create a lecture POST /courses/:id/lectures
  • title*
  • description*
  • assetType*
  • assetURL*
  • comments
  • students
  • course
  • isDelete
  • _id
  • title
  • description
  • assetType
  • assetURL
  • empty array
  • students empty array
  • user
  • course
  • isDelete
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
3. get a lecture info GET /courses/:courseId/lectures/:id -
  • _id
  • title
  • description
  • assetType
  • assetURL
  • empty array / array of comments
  • empty array / array of students
  • user
  • course
  • isDelete
  • createdAt
  • updatedAt
{ Authorization : <token>} admin or student
4. update lecture info PUT /courses/:courseId/lectures/:id
  • title
  • description
  • assetType
  • assetURL
  • empty array / array of students
  • course
  • isDelete
  • _id
  • title
  • description
  • assetType
  • assetURL
  • empty array / array of comments
  • empty array / array of students
  • user
  • course
  • isDelete
  • createdAt
  • updatedAt
{ Authorization : <token>} admin
5. delete lecture DELETE /courses/:courseId/lectures/:id -
  • _id
  • title
  • description
  • assetType
  • assetURL
  • empty array / array of comments
  • empty array / array of students
  • user
  • course
  • isDelete
  • createdAt
  • updatedAt
{ Authorization : <token>} admin

asset URL you can take it from YouTube

asset types - 'video', 'audio', 'text', 'pdf', 'img'

note - * indicates a required field

About

back end app for students projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published