No description
php
This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2016-07-11 17:06:37 +02:00
bin simple account management with deletion 2016-07-11 16:57:48 +02:00
cache initial release 2016-07-10 17:32:38 +02:00
config copied too much from local env ... 2016-07-11 17:06:37 +02:00
data simple account management with deletion 2016-07-11 16:57:48 +02:00
log initial release 2016-07-10 17:32:38 +02:00
public simple account management with deletion 2016-07-11 16:57:48 +02:00
src simple account management with deletion 2016-07-11 16:57:48 +02:00
.gitignore initial release 2016-07-10 17:32:38 +02:00
composer.json simple account management with deletion 2016-07-11 16:57:48 +02:00
README.md update readme 2016-07-11 17:02:27 +02:00

README

A simple webinterface for users. This app uses admin_rest module of prosody. So prosody.im is a hard dependency. The interface allows users

  • to have two step verification (as an alternative to the integrated register_web module),
  • to delete of their accounts and
  • to change their password.

This app uses

  • Slim Version 3
  • Slim Auth
  • Eloquent ORM
  • PHPMigration
  • GUMP Validation
  • Twig
  • Curl
  • PHPMailer
  • Symfony Translation
  • Sqlite

as dependencies.

Requirements

  • admin_rest module of prosody
  • composer
  • sqlite pdo, mb_string

Install

  • Install composer
  • Change directory to project home
  • Copy config/env.example to config/env and adjust to your needs
  • composer install
  • php bin/phpmig migrate
  • start server with php -S localhost:8080 -t public public/index.php
  • point browser to localhost:8080 to have a preview

Deployment

  • Set up a cron job using php projectRootDir/bin/UsersAwaitingVerificationCleanUpCronJob.php to clean up users who signed up but did not verify their account periodically.

  • Point your document root to public/.

  • Example nginx conf:

    root   .../public;
    index index.php;    
    
    rewrite_log on;
    
    location / {
        try_files $uri $uri/ @ee;
    }
    
    location @ee {
        rewrite ^(.*) /index.php?$1 last;
    }
    
    # php fpm
    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass   unix:/var/run/php-fpm/php-fpm.sock;
        include        fastcgi_params;
    }    
    

Upgrade

  • Change directory to project home
  • git pull
  • composer update
  • look for changes
  • php bin/phpmig migrate

Translations

This app uses Symfony Translator. It's bootstraped in Util\TranslationHelper and locales are placed under data/locale/. Adjust to your needs or help translating.

Changelog

  • 0.1.3:

    • add authentication after sign up
    • only logged in users can delete their account (with the help of the token)
    • only logged in users can change their account password
  • 0.1.2:

    • Bugfixes
  • 0.1.1:

    • updated readme and env.example
    • fix some language validator inconsistencies
    • added admin notifications
    • added possiblity for users to delete their account
    • added back index page
    • works with mod_admin_rest version afc42d7
  • 0.1:

    • initial release
    • works with mod_admin_rest version afc42d7