Giter Club home page Giter Club logo

csms's Introduction

CSMS - A RESTful API for Applying a rate to a charge detail record

Installation

For Simplicity of installation, this repository is provided with MakeFile.

You need to have installed docker and docker-compose on your operating system. First Clone the repository and change directory to the project directory. Then Simply run make command in your terminal to install and set everything up and running.

Now, you can access the application through the following URL:

http://localhost:8000

If you see It works! then everything is ready.

Docker Compose

You may need to go through all the steps:

  1. To build slim and mysql images and run their containers:

    docker-compose up -d --build slim

  2. To build composer image and install all projects dependencies:

    docker-compose run --rm composer install

  3. To run database migrations with phinx tool for development and testing environment:

    docker-compose run --rm --entrypoint vendor/bin/phinx composer migrate

    docker-compose run --rm --entrypoint vendor/bin/phinx composer migrate --environment=testing

  4. To run phpstan code analyses:

    docker-compose run --rm composer analyse

  5. To run tests:

    docker-compose run --rm composer test

Tests

Tests are developed with PHPUnit – The PHP Testing Framework. And code has been analysed with PHPStan

Analyse can be run by running:

  docker-compose run --rm composer analyse

Tests can be run by running:

  docker-compose run --rm composer test

Test and Analyse results

test and analyse

Special Note

To meet functional requirements

The way that the response are formatted right now ( I mean on master branch commit 367b657 )is much more convenient and well designed than the way on the assessment need, by the way, to meet the Functional requirements, I did it the other way in this pull request.

API Documentation

Restful API Documentation Generated by Postman

Some notes and suggestions

API designers typically focus on questions like “What does this service need to do?” or “What does this service need to provide?”, while API consumers are focused on “How can I use this API to do what I need?”, or more accurately, “How can I spend the bare minimum of effort to get what I need out of this API?”.

Rather than thinking about what your API can do, think about the different ways it may need or want to be used and then focus on making those tasks as easy as possible for your API’s consumers. We have to take into account security, performance, and ease of use for API consumers.

In my opinion we could make some changes to this API. I only mention some of them and also there would be more specific and general things base on the problem description:

We could implement some sort of different endpoints to make a desired design. For example, provide a small RESTful API that will expose the rate's resource identifier and change the /rate API to accept the rate identifier instead of the whole record. It totally depends on needs!

Also, it would be a great idea to have a standard formatted response, as we can use json api best practices for this to format our response body in a very good way.

Security

Security is obviously one of the most important things to build into web services and APIs. For most APIs, I prefer a simple token-based authentication (JWT), where the token is a random hash assigned to the user and they can reset it at any point if it has been stolen. Allow the token to be passed in through POST or an HTTP header. I choose a secure token. Something irreversible is best.

Stability and Consistency by Versioning

A good URL scheme will include major versions in the URL. Any change to the output format or supported data types should result in bumping up to a new major version. Generally, it’s acceptable to keep the same version if all you are doing is adding keys or nodes to your output, but to be on the safe side, any time the output changes, bump a version. In addition to being stable over time, APIs need to be internally consistent.

And last but not least, Documentation is very important

Here are some useful links and best practices that provide bunch of great information about the topic:

Thanks for your consideration 😊

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.