Skip to content

sammy123k/club-websystem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About this project

The aim of the project is to build a new website for the CSUSB Information Security Club. It will provide a central place to manage club membership, club events and RSVPs, projects and project sign-ups, etc. We are building this loosely according to the original database diagram located on Google Drive here (you must have the free Draw.IO plugin installed first): New Multi-club Website - Data Model. If you would like write-access to this diagram, contact Kenneth Johnson.

Key goals

  • Easy to contribute to - At any time, an interested person should be able to easily clone the repo, use this Readme to setup a development environment, and begin contributing right away. So keep this Readme up-to-date.
  • Easy to manage - The administration of the website content should be intuitive, even for future club officers who may not have any web development or programming experience.
  • Well-documented - This codebase will be handed down to future students, so it must be self-explanatory. Use code comments liberally.
  • Secure - As a cybersecurity club, our website must have security included from the beginning. So while programming, keep your hacker hat on!
  • Cross-platform and mobile-friendly - While programming, test your code on multiple browsers, operating systems, and devices.
  • Supports multiple clubs - While it is currently used only by the InfoSec Club, it originally was intended as a multi-club codebase, with independent front-ends (templates, static content) for each club. Let's keep it that way, in case a club wants to join in the future.

Developers

To get involved, follow the instructions below under the Development heading.

Technology used

Platform

  • To ensure future club members can easily maintain this project, the popular Python programming language was chosen (at this time we're using Python 2.7, but we'll convert to Python 3 eventually).

Python packages (installed with pip)

  • For a web framework, we chose the well-supported Django because, compared to other frameworks and micro-frameworks, a lot of needed functionality comes ready out of the box. Primarily, Django provides our user authentication, routing of HTTP requests directly to Python functions, and abstracting the database models with its built-in ORM. It also includes built-in protections for many security mistakes, such as cross-site request forgery.
  • django-registration-redux extends Django's authentication features to also make new user sign-ups easy.
  • django-versatileimagefield is a drop-in replacement for Django's ImageField that will automatically generate the desired resolutions for an image.
    • This will also install Pillow for the actual image processing.
  • django-admin-bootstrapped customizes the adiministration pages of Django (/admin) to use Bootstrap.
  • django-crispy-forms provides a "crispy" template tag that will render forms using Bootstrap. It also allows quite a bit of form layout customization from Python instead of using HTML.
  • django-mailer stores all outgoing emails in the database instead of sending them right away. This way, any send failures don't cause the page rendering to fail. Also, it allows us to batch and retry failed emails.
    • This will also install lockfile for managing file locks.
  • html2text is used in the our custom email template engine to generate a plaintext (markdown-like) version of an email if none is provided.
  • CommonMark provides a Python renderer for markdown code using the CommonMark specifications, instead of the older and somewhat vague Markdown specs.
  • sqlparse is needed to be able to run custom SQL commands in database migrations (with Django's RunSQL).

Front-end

  • We follow the latest HTML5 and CSS3 standards.
  • Bootstrap provides mobile-friendly pages that are responsive to browser sizes.
  • FullCalendar provides a Javascript calendar much like Google Calendar.
  • jQuery makes many of our Javascript tasks much easier. It is also required by Bootstrap and FullCalendar.
  • Commonmark.js is used for rendering CommonMark client-side, using only Javascript.
  • Lodash, modern build provides some extra Javascript functionality used in our split-view CommonMark editor.
  • Autosize is also used in the split-view CommonMark editor for resizing the TEXTAREA as necessary to contain all the CommonMark code without using scrollbars.
  • CSS Toggle is used in the event creating/editing form to theme the HTML Input checkmarks and option buttons into nice colorful sliders.

Database

  • All user data (member list, page content other than templates, etc.) is stored in a postgresql database named 'clubwebsystem'. See below for how postgresql is configured.

Development

Forking the repository

See Fork a Repo and Pull Requests.

Setting up your development environment

Install the following Linux packages. Note: Package names and methods of installing them may be different for different distributions of Linux.

  • python2
  • python2-virtualenv
  • python2-pip
  • git

Make a directory and clone the repository into it:

$ mkdir ~/club-websystem
$ cd ~/club-websystem
$ git clone git@github.com:Alofoxx/club-websystem.git ./

Before you do anything else, create a virtual environment and activate it:

$ virtualenv --python=python2 ./
$ source bin/activate

Install all required python dependencies:

$ pip install -r requirements.txt

Install postgresql database server

If postgresql is not included by default in your distro of Linux, install it. See the Official Documentation. The installation will automatically create a postgres system user. Make sure than user's home directory (usually /var/lib/postgres) is owned by postgres and not `root':

# chown postgres:postgres /var/lib/postgres

For security reasons, do all maintenance of the postgresql databases within this account (shown below as [postgres]$). Initially it is a locked account, but it's a simple matter to just bypass that:

# su - postgres

or:

$ sudo -i -u postgres

If you really need to be able to login to that account without first having root access or sudo privileges, then set an account password for postgres:

# passwd postgres

If the database clustor (the actual storage area for the various databases) has not yet been initialized, do that with the initdb command. You may use any directory for storage, but a good one to choose in /data under the postgresql user's home directory (check with cat /etc/passwd).

[postgres]$ initdb -D ~/data -E UTF8

This should create a data directory owned by the postgres user, and unreadable by any other user (permissions=700).

Now, logout of the postgres user and enable/start the postgresql service. This is very distro-dependent, so research your distro. As an example, on Arch, you'd do it this way:

# systemctl enable postgresql
# systemctl start postgresql

Now open up a SQL shell (it actually connects to a built-in database named postgres).

$ psql

Type \? to see a list of postgres commands, or \h for SQL commands.

Now create a limited database user ("role") and a new database:

postgres=# CREATE ROLE cws;
postgres=# CREATE DATABASE clubwebsystem;

If you need to connect a SQL shell to that new database, you can run

[postgres]$ psql -d clubwebsystem

from the postgres user, or this from your own account:

$ psql -d clubwebsystem -U postgres

Ongoing collaboration

Each development day should start by activating your virtual environment and pulling any recent commits from the team.

$ cd ~/club-websystem/src
$ source ../bin/activate

When you pull the recent commits, you have two choices...

  1. Pulling the latest database from the repo will overwrite any changes you may have made. If you would rather keep the data in your database and simply use migrations to upgrade the models, do this as your git pull:

     $ mkdir -p ~/tmp
     $ mv {./,~/tmp/}db.sqlite3
     $ git pull
     $ mv {~/tmp/,./}db.sqlite3
    
  2. The database in the repo usually has the latest migrations. If you want to dump your copy of the database in favor of the one in the repo, just perform git pull. But this will give an error if your copy has changed, so just move it out of the way first:

     $ mv -i db.sqlite3{,.bak}
     $ git pull
    

After pulling recent changes, you should verify the latest migrations have been applied:

$ python manage.py showmigrations

If any are listed with a [ ] instead of a [X], then apply them with this command:

$ python manage.py migrate

Then, collect the various static files into the static_in_env folder:

$ python manage.py collectstatic

For development use only, Django provides a simple webserver that you can start with the following command. In production, we'll use apache or nginx instead.

$ python manage.py runserver 0.0.0.0:8000

Passwords

For development purposes only, the Django superuser is root with a password of pw. You can log into the main site or the /admin site using these credentials. To be consistent, use the same password for any other accounts used for development.

Production

Web server

[Need details]

Setting up the production environment

The production server must at least contain these requirements:

  • nginx
  • python v2.7.x
  • virtualenv for python2
  • libjpeg-dev
  • zlib1g-dev
  • a virtual environment setup with the packages listed in requirements.txt

If you get a "decoder zip not available" when uploading a new profile photo, take the following steps:

# apt-get install libjpeg-dev zlib1g-dev
$ pip uninstall Pillow
$ pip install --no-cache-dir $(grep ^Pillow requirements.txt)

For email to work in production, you must add django-mailer to the server's crontab. Since django-mailer puts all outbound email into the database instead of immediately sending it, we use its send_mail command to actually send out the emails. Any email that fails will be changed to priority deferred. The retry_deferred command will mark all deferred emails as medium priority, so the next pass of send_mail will attempt to send them again.

As an example, to send mail each 5 minutes and queue the failed emails for retry each 20 minutes, add this to the server's crontab:

0,5,10,15,20,25,30,35,40,45,50,55  * * * * (< path to venv >/mailer send_mail --cron 1)
1,21,41                            * * * * (< path to venv >/mailer retry_deferred --cron 1)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published