Giter Site home page Giter Site logo

demot's Introduction

DeMoT (Detention Monitoring Tool)

Sa se dezvolte o aplicatie Web pentru gestiunea vizitelor de care beneficiaza persoanele condamnate la executarea unei pedepse intr-un penitenciar sau intr-o casa de corectie. Fiecarei vizite i se vor atasa informatii privind individul ori indivizii care efectueaza vizita -- minimal, se vor considera: identitatea, fotografia, relatia cu condamnatul (ruda, tutore legal, avocat, prieten), natura vizitei. De asemenea, vor fi consemnate: data realizarii intrevederii, natura si durata acesteia (e.g., consultare privind recursul procesului, vizita amicala), posibile obiecte/date furnizate condamnatului sau oferite de condamnat vizitatorului/vizitatorilor, rezumatul discutiilor efectuate (daca nu e incalcata confidentialitatea), starea de sanatate si de spirit a detinutului, martorul/martorii la intalnire etc. Instrumentul implementat va genera statistici -- documente HTML, CSV si JSON -- vizand vizitele realizate per individ, perioada de timp, in functie de categoria pedepsei savarsite sau alte criterii. Pentru interactiunea cu utilizator, se va oferi un design Web responsiv.

Schedule inmate visits (the easy way). Easy for the visitor, easy for the institution.

DeMoT follows the Model View Controller pattern, has clean URLs and a simple structure inspired by PHP Mini.
Written in PHP 7 with only native code, no frameworks or libraries.

Installation

  1. Clone this repository

      git clone https://github.com/codebicycle/demot.git
    
  2. Create a new user and grant permissions in mysql

    Login to mysql as the root user

      mysql -u root -p
    

    at the mysql prompt

      -- replace database_name with demot
      CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
      GRANT ALL PRIVILEGES ON database_name . * TO 'newuser'@'localhost';
      GRANT EVENT ON database_name . * TO 'newuser'@'localhost';
    
  3. Edit the database credentials in application/config/config.php

  4. Execute the .sql statements in the _install/ folder (with PHPMyAdmin for example).

  5. Make sure you have mod_rewrite activated on your server / in your environment. Some guidelines: Ubuntu 14.04 LTS, Ubuntu 12.04 LTS, EasyPHP on Windows, AMPPS on Windows/Mac OS, XAMPP for Windows, MAMP on Mac OS

Resources

PHP Mini, simple MVC skeleton PHP application

PHP PSR-1 coding standard

MVC from scratch, rewrite rules

Small classes, great overall answer (codereview)

CSS star rating

Git Cheatsheet

Create a local branch tracking a remote branch from the repository

git checkout -b branch_name origin/branch_name

Git Workflow

Once a pull request is accepted, you need to make sure your local dev branch is synchronized with the repository dev branch. Then, you merge the feature branch into dev and push the updated dev back to the central repository.

https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow

http://nvie.com/posts/a-successful-git-branching-model/

URL Structure Sample

Path Controller#Action Used for
/inmates inmates#index display a list of inmates
/inmates/add inmates#add return an HTML form for creating a new inmate
/inmates/create inmates#create create a new inmate
/inmates/show/:id inamtes#show(id) display a specific inmate
/inamtes/edit/:id inmates#edit(id) return a HTML form for editing a specific inmate
/inmates/update/:id inmates#update(id) update specific inmate
/inmates/delete/:id inmates#delete(id) delete a specific inmate

Security Measures

  • Sql injection prevention by using bind parameters
  • XSS prevention by using htmlspecialchars() when outputting to HTML
  • Parameters whitelisting

TODO:

  • REST routes HTTP verbs
  • CSRF prevention
  • Custom page titles
  • Redirect with header() to controller#action (not require)
    • Always die() after a redirect
  • Set guard_id on approved/rejected appointments
  • Remove debugging statements like print_r($_POST) to prevent XSS attacks
  • Flash messages
  • Password min 8 max 32
  • Clean visitors appointments
  • Filter appointments
  • Pagination
  • Single page for Appointment form
  • Semantic navigation <nav>
  • Make datalists dynamic (most popular from database)
  • Update session username when editing profile
  • Recurring visiting rights reset on start of month
  • Limit POST data size
  • Inmate statistics
    • total visits
    • average visit duration
    • average physical/emotional state
    • bans
    • top visitors
  • Visitor statistics
    • total visits
    • average visit duration
    • most visited inmates

License

This project is licensed under the MIT License. This means you can use and modify it for free in private or commercial projects.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.