Skip to content

IFTA ya! is an online service for calculating an reporting IFTA Taxes used by truck owners and drivers. This repo contains the backend api developed usign Flask and Flask RESTX as an extension of Flask RESTPlus

Ceci-Aguilera/ifta_flask_backend_api

Repository files navigation

IFTA ya LOGO

IFTA ya!

Python version Flask version Flask-SQLAlchemy PostgreSQL version Flutter version Next js version Commit activity Last Commit

Table of Contents

  1. Description (What, Why, and How?)
  2. Install (Run) with Docker
  3. Installation without Docker
  4. Run together with the NEXT js Frontend (with and without Docker)
  5. Folders and Files of interest
  6. Deploying in VPS
  7. Screenshots of the Frontend React App
  8. Screenshots of the Flutter (Android + IOS) App
  9. Useful Links

Description

  • What is IFTA ya! ?

IFTA ya! is a fast, simple, and secure solution for calculating and reporting IFTA Taxes. It aims to help truck owners to keep their IFTA Tax Reports up to date while in the highway or office. There is no need to pass information to third-party companies as IFTA ya! has all the tools needed to fast store the information, analyze it, calculate the taxes, and create accurate reports for each truck and quarter. It also allows truck owners to manage their fleets, active drivers, and trucks.

  • What inspired IFTA ya! ?

The IFTA Tax Report of a truck have to be calculated and reported every 3 month by the truck's owner. To do so, the truck driver (which can be the truck owner or not) has to keep all the billing information about the fuel gas added to the truck as well as all the miles traveled. This information is then given to the truck owner, and then to a Tax specialist or to an expensive Tax software company. In this process, the driver can lose days searching for the bills that are often lost, and miles are not accurate reported. Therefore, the need for an alternative, in this case, IFTA ya!

  • How does IFTA ya! work ?

Flutter Plus Flask Plus Flask

IFTA ya! has 3 main apps: a Next js Frontend app (where owner operator's actions take place), a Flask Backend API (this repo and where most of the logic and calculations occur), and a Flutter app for both Android and IOS devices (that is used for the truck driver, possibly the owner operator, to input new Entries when adding Fuel or recording Miles).

LINKS TO THE REPOSITORIES:

How do the 3 apps work together?

When an owner operator creates an account, it is possible to administrate all the trucks, drivers, payments, and reports from the Next js App. The first step after registration is creating a Truck and a Driver to manage it (possibly, the owner operator itself) This actions are done via axios call to the Flask Backend API. Then, the driver must download the Flutter app from the Google Play Store (for Android) or the App Store (For IOS). The application should be used by drivers to register the amount and price of the Fuel Gallons added and amount of Miles driven. Then the Flask Backend finds the quarter (based on the date) and the Tax for the fuel in each state, and with this information, it calculates and updates the IFTA Tax Report for each state visited by the driver in the truck, and also the overall tax information of the quarter. These changes can be visualized in the Next js App by the owner of the truck. This means that if a client has 10 trucks, he can assign a Driver to each of them, and each driver then downloads the Flutter app and keeps the IFTA Tax Report for the truck up to date without the client (owner of the truck) needing to do it himself.

When a driver logs in into the Flutter app, the app tries to find the truck that was assigned to him by the owner operator. Therefore, each time the driver adds fuel gallons or miles, it is not needed to specify the truck that is driving, as it has been already configured. To change the current driver the owner operator can go to the Next js App. Note that this method guarantees that even if a truck has multiple drivers in a quarter, its taxes can be easily deduced.

Notes about IFTA Taxes:

  • An owner operator is a Truck driver that owns a truck.
  • An owner operator can have multiple trucks and drive only one.
  • A different IFTA Tax Report is presented for each truck that a client owns, that is, if a client has 10 trucks, then each truck has its own IFTA Tax Report that is independent of the others.
  • Drivers do not have to present the IFTA Tax Report, as this is only a responsibility of the truck owner.
  • To understand how IFTA Taxes are calculated and reported visit this Link. In reality, taxes are a bit more difficult to calculate and report as each state has its own standards and rules, however the previous link resumes the core of IFTA Taxes for a first approach.

Install (Run) with Docker

  1. Clone the repo:

    git clone https://github.com/Ceci-Aguilera/ifta_flask_backend_api.git
  2. Install Docker and Docker Compose

  3. Configure the environment variables using one of the following methods:

    i. Create an .env file inside the config folder and set up the following environment variables:

     SECRET_KEY                      (for example "someSecurityPassword")
     JWT_SECRET_KEY                  (use secrets.token_hex(12) from python secrets)
     SECURITY_PASSWORD_SALT          (for example "someSecurityPassword")
     ADMIN_EMAIL_CREDENTIAL          (email to use to create a Admin user)
     ADMIN_PASSWORD_CREDENTIAL       (the password for the Admin user)
     MAIL_SERVER                     (the server for sending emails using Flask-Mail)
     MAIL_PORT
     MAIL_USERNAME                  
     MAIL_PASSWORD
     MAIL_STRING_ID                  (a short random string to pass when using office 365)
     STRIPE_TEST_PUBLISHABLE_KEY
     STRIPE_TEST_SECRET_KEY
     FRONTEND_APP                    (an allowed origin)
    

    or

    ii. Copy and modify the content of the .example.env file to the .env file:

    cp config/.example.env config/.env
  4. Run the command:

    docker-compose up -d --build
  5. Congratulations =) !!! the app should be running in localhost:5000

Installation without Docker

  1. Clone the repo:

    git clone https://github.com/Ceci-Aguilera/ifta_flask_backend_api.git
  2. Create a virtual env and Pip install dependencies:

    pip install -r requirements.txt
  3. Open the app.py file and change the parameter of create_app to 'development' (by default it is set to production)

  4. Set up postgresql database (See Useful Links). For development the default credentials are:

        Database name: ifta_test_db
        Database user: ifta_test_user
        Database password: ifta_test_pass
        Database host: localhost
        Database port: 5432
    
  5. Config the environment variables using one of the following methods:

    i. Create an .env file inside the config folder and set up the following environment variables:

     SECRET_KEY                      (for example "someSecurityPassword")
     JWT_SECRET_KEY                  (use secrets.token_hex(12) from python secrets)
     SECURITY_PASSWORD_SALT          (for example "someSecurityPassword")
     ADMIN_EMAIL_CREDENTIAL          (email to use to create a Admin user)
     ADMIN_PASSWORD_CREDENTIAL       (the password for the Admin user)
     FRONTEND_APP                    (An allowed origin)
     MAIL_SERVER                     (the server for sending emails using Flask-Mail)
     MAIL_PORT
     MAIL_USERNAME
     MAIL_PASSWORD
     MAIL_STRING_ID                  (a short random string to pass when using office 365)
     STRIPE_TEST_PUBLISHABLE_KEY
     STRIPE_TEST_SECRET_KEY
     FRONTEND_APP                    (an allowed origin)
    

    or

    ii. Copy and modify the content of the .example.env file to the .env file:

    cp config/.example.env config/.env
  6. Change the parameter of the function create_app() in the api/__init__.py file from 'testing' to 'development'

  7. Run the migrations

    flask db init
    flask db migrate
    flask db upgrade

    NOTE: In case of an error regarding revision of migration, run:

    flask db revision --rev-id <revision_id_in_error>
    flask db migrate
    flask db upgrade
  8. Run the app

    python app.py

    NOTE: To change the initial configuration edit the files app.py and config/config.py files. The env variables for the config/config.py files are retrieved from config/.env using decouple.config.

  9. Congratulations =) !!! the app should be running in localhost:5050

Run with the NEXT js Frontend (with and without Docker)

Note: Before following these steps clone this repository. From now on the selected folder that contains the clone will be referred as project_root. So far, it should look like this:

   project_root
   └── ifta_flask_backend_api
  1. Assuming that your are at the project_root, clone the NEXT js Frontend repository:
       git clone https://github.com/Ceci-Aguilera/ifta_flask_backend_api.git
    Now the project_root folder should look like:
    project_root
    ├── ifta_flask_backend_api
    └── ifta_frontend
  • If Using Docker and Docker Compose

    1. Copy the content of the docker-compose-connect.yml to a new file docker-compose.yml in the project_root. The docker-compose-connect.yml file can be found at the root of this repository and also at the root of the NEXT js Frontend repository (Either file is fine to copy).

    2. Follow the instruction to configure the environment variables of the NEXT js Frontend that can be found in the section Install (Run) with Docker in the Readme.md of the NEXT js Frontend repository. The only env variable needed is the Flask Backend url, which by default should be http://localhost:5000.

    3. Follow the instructions on the Install (Run) with Docker section of this Readme.md to configure the environment variables for this repo. Note: Right now the project_root should look like:

      project_root
      ├── ifta_flask_backend_api
      ├── ifta_frontend
      └── docker-compose.yml
    4. Run the command:

      docker-compose up --build
    5. Congratulations =) !!! the frontend app should be running in localhost:3000 while the backend is at localhost:5000

  • Running without Docker and Docker Compose

    1. Follow the instruction to configure the environment variables of the NEXT js Frontend that can be found in the section Installation without Docker in the Readme.md of the NEXT js Frontend repository. The only env variable needed is the Flask Backend url, which by default should be http://localhost:5050.
    2. Follow the instructions on the Installation without Docker section of this Readme.md to configure the environment variables for this repo.
    3. Congratulations =) !!! the frontend app should be running in localhost:3000 while the backend is at localhost:5050

Folders and Files of interest

  • At the root is located a file named app.py which together with the config/config.py file determine the behavior of the Flask app, and so the .env file is located inside the config folder. Most of the weight of the configuration is actually in the init.py file inside the api folder. This init.py file initializes most of the different pieces of the app such as the Database, Flask-Secure, Flask-Admin, .... Thus, in case of wanting to change what services are included this file will probably be the one to be altered.
  • The migrations folder contains all files auto-generated by Flask-SQLAlchemy.
  • Finally, the api folder contains the main apps/folders of the project, each of them has a models.py file and a views.py file. In addition, it has the static and template folders that manage static files and html (jinja2) templates respectively.
  • The api/user_account folder contains all the models and views for the owner operators and driver.
  • The api/quarter_entries folder contains all the models and views for the calculations and report of the IFTA Taxes
  • The api/admin folder contains all the models and views for the administration of IFTA ya!

Deploy to VPS using PostgreSQL, Nginx, and Gunicorn

  1. Clone the repo:

    git clone https://github.com/Ceci-Aguilera/ifta_flask_backend_api.git
  2. Install the dependencies:

    sudo apt-get update
    sudo apt-get install python3-pip python3-dev libpq-dev postgresql postgresql-contrib nginx
  3. Set up the postgresql database (See Useful Links)

  4. Create an .env file and configure the environment variables

  5. Create a virtual env and activate it:

    virtualenv myprojectenv
    source myprojectenv/bin/activate
  6. Pip install the requirements:

    pip install -r requirements.txt
  7. Pip install gunicorn:

    pip install gunicorn
  8. Open app.py and add host='0.0.0.0' to the create_app() function

  9. Delete the migrations folder in case it exits, and create an empty folder with the same name

  10. Test configuration so far:

    flask db init
    flask db migrate
    flask db upgrade
    
    python app.py
  11. Change the frontend domain for reset password in the api/templates/user-account/send-request-reset-password.html file (currently http://localhost:3000)

  12. Create wsgi.py file:

    sudo vim wsgi.py

    and copy and paste this:

    from app import app
     
    if __name__ == "__main__":
    app.run()

   and then run

gunicorn --bind 0.0.0.0:5050 wsgi:app
  1. Complete the setup of the website with this link

  2. Set up Cors to allow the frontend to fetch and post requests (See Useful Links)

Screenshots of Selected Pages of the Frontend NEXT JS App

Mobile View

alt text alt text alt text

alt text alt text alt text

---

Desktop

View of the Landing Page

alt text


View of the Account Information Page

alt text


View of the Drivers Information Page when Modal is open

alt text


View of the Quarters Resume Page for selected Truck

alt text


Screenshots of the Flutter (Android + IOS) App

alt text alt text alt text

alt text alt text alt text


Useful Links

Database (PostgreSQL and SQLAlchemy)

Authentication and Admin Panel

Rest Api using Restx

Managing PDFs and other files

Docker and Docker Compose with Flask + Postgresql

Sending Emails with Flask-Mail

Cors Headers Configuration

About

IFTA ya! is an online service for calculating an reporting IFTA Taxes used by truck owners and drivers. This repo contains the backend api developed usign Flask and Flask RESTX as an extension of Flask RESTPlus

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published