Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bernard-borg/cis2055-nemesys
Repository for the NEMESYS Web Assignment for Bernard Borg and Nathan Portelli as part of the CIS2205 UOM Unit.
https://github.com/bernard-borg/cis2055-nemesys
Last synced: 15 days ago
JSON representation
Repository for the NEMESYS Web Assignment for Bernard Borg and Nathan Portelli as part of the CIS2205 UOM Unit.
- Host: GitHub
- URL: https://github.com/bernard-borg/cis2055-nemesys
- Owner: Bernard-Borg
- Created: 2021-03-10T17:10:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-27T20:53:18.000Z (over 2 years ago)
- Last Synced: 2024-05-06T00:18:10.390Z (6 months ago)
- Language: JavaScript
- Size: 6.98 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NEMESYS
For now, this is going to be a document detailing the project specifications.
NEMESYS is a near-miss exposure and reporting system which allows University students and staff to report dangerous situations that might be present around the UOM campus.
**Types of users: Reporters, Investigators, Administrators**
Reporters can;
* Create a report
* Edit/delete their own reports
* Browse all reports
* Upvote reportsUser information (_italic_ = optional);
* Name (string)
* Email (string)
* Password (hashed value)
* Number of personal reports (int)
* _Photo (default image)_
* _Phone_Report properties;
* Date of report (date)
* Location (double: longitude, latitude)
* Date and time when hazard was spotted (datetime)
* Hazard type (database table)
* Description
* Status (database table) - only modifyable by investigators
* Open
* No action required
* Being investigated
* Closed
* Details of person (user class)
* Number of upvotes
* _Photo_Investigators can;
* Review reports
* Add an investigation entry to each report before closing the case (only one investigation per report)
* Add and edit investigations for individual reports
* Change the status of a report (_an email is sent to the reporter when status has been changed_)Investigation properties;
* Description of investigation (string)
* Date of action (date)
* Investigator's details (investigator class)Optional additional features;
* Email notifications when a new report has been submitted (received by investigators - observer pattern?)
* Watching of reports by other reporters (publisher-subscriber pattern?)
* Contact reporter (for investigations)
* Google SSO---
Speculated pages needed;
* Profile page (for each user)
* Home page (page containing reports, small section of hall of fame with link to actual hall of fame - optional features are sorting by date of report/top upvoted, with tabs for opened, closed, etc reports)
* Hall of fame page based on number of reports (optionally, also based on number of upvotes)
* Login page and register page
* Report page (with ability to edit and delete for the reporter who made the report)
* Investigation page (for investigator to change information)