An application that allows families to communicate to each other location updates and view location check-in details
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Joshua Sigona f2e8b34192 Prepare project for development 4 years ago
bin Prepare project for development 4 years ago
gradle/wrapper Prepare project for development 4 years ago
src Prepare project for development 4 years ago
README.md Update README.md 4 years ago
build.gradle Prepare project for development 4 years ago
gradlew Prepare project for development 4 years ago
gradlew.bat Prepare project for development 4 years ago
settings.gradle Prepare project for development 4 years ago

README.md

Family Tracker

An application that allows a family to track family members via live tracking and check-in to locations with notifications.

App Features

  1. Create Family Profiles
  2. Add Family Members
  3. Add Tracking Device
  4. View GeoMap showing live GPS data.
  5. Get notifications when Family Members have arrived at new destinations.

User Stories

  • As a parent, I want to be able to know where my kids are while they are at school.
  • As a parent, I want to be able to access all locations where my kids have been that day.
  • As a parent, I want to know when my kids have checked into a new location.
  • As a parent, if my kid is not at an intended location I would like to be notified.
  • As a parent, my kids' data should not be accessible to others.
  • As a user, I should be able to view the locations of all my family members.
  • As a user, I should be able to opt-in and opt-out of tracking as appropriate.
  • As a user, I should be warned if a location I am going to is suspicious or susceptible to danger.

Data Endpoints

All endpoints require an authentication token provided by your mobile tracking device upon registration. They must be passed in as a parameter for all endpoints as ?auth=XXXXXXX

GET /family - Gets all family profiles. Each family profile contains a member object.

GET /family/{name} - Get a family by name.

GET /member/{firstname}/{lastname} - Gets a family member by first and last name.

GET /member/{firstname}/{lastname}/location - Gets current location of a member.

POST /member/{firstname}/{lastname} - Register a new member with a mobile device.

POST /member/{firstname}/{lastname}/location - Checks into a new location.

PATCH /member/{firstname}/{lastname}/location - Update current location statistics.

PATCH /member/{firstname}/{lastname}/type - Updates a member type. Valid types include parent,user, and admin.

DELETE /family/{family} - Removes a family.

DELETE /family/{family}/member/{firstname}/{lastname} - Removes family member from a family.