makiftutuncu / MuezzinAPI

A web server application for Islamic prayer times
MIT License
34 stars 3 forks source link
actors akka firebase islamic-prayer-times playframework prayer-times scala

Muezzin API

Welcome to Muezzin API web service!

This application provides Islamic prayer times for more than 200 countries, their cities and many of their districts. Data is read from Republic of Turkey, Presidency of Religious Affairs' website and provided in a simple JSON structure.

The application will be running at https://muezzin-staging.herokuapp.com.

Technical Details

Muezzin API application is developed using Play Framework and Scala. The application utilizes Akka Actors actors for scheduling jobs, WS for making HTTP requests, Firebase Realtime Database for data persistance and Errors for error handling.

Deploying Muezzin API to AWS ElasticBeanstalk

Add host of your EB host to application.conf under play.filters.hosts.allowed. Here's an example:

play {
  filters.hosts {
    allowed = [
      "muezzin.123456.eu-west-1.elasticbeanstalk.com",
      "muezzin.herokuapp.com",
      "muezzin-staging.herokuapp.com",
      "localhost:9000"
    ]
  }
}

Then run sbt elastic-beanstalk:dist to create ZIP file that you can upload to your ElasticBeanstalk.

Thanks @gokhanayhan38 for his help.

API Reference

General

Example Response With Errors
{
  "errors": [
    {
      "name": "requestFailed",
      "reason": "Diyanet returned invalid content type.",
      "data": "applocation/xml"
    }
  ]
}

Countries

GET: /countries

It returns available countries.

Example Response
{
  "countries": {
    "2": {
      "name": "Turkey",
      "nameTurkish": "Türkiye",
      "nameNative": "Türkiye"
    }
  }
}

Cities

GET: /countries/<countryId>/cities

It returns available cities of given countryId.

Example Response
{
  "cities": {
    "540": {
      "name": "İzmir"
    }
  }
}

Districts

GET: /countries/<countryId>/cities/<cityId>/districts

It returns available districts of given cityId of countryId. Please note that some cities might not have districts available.

Example Response
{
  "districts": {
    "9552": {
      "name": "Aliağa"
    }
  }
}

Prayer Times

GET: /prayerTimes/country/<countryId>/city/<cityId>/district/<districtId>

It returns prayer times for a month belonging to given countryId, cityId and districtId. Please note that there are no times available for past dates and more than 1 month future dates. Diyanet only provides 1 month of prayer times starting from current time. Therefore, it is client's responsibility to keep requested prayer times and request more whenever needed.

Example Response
{
  "prayerTimes": {
    "2016-08-23": {
      "fajr": "04:56",
      "shuruq": "06:26",
      "dhuhr": "13:21",
      "asr": "17:02",
      "maghrib": "20:03",
      "isha": "21:26",
      "qibla": "12:00"
    }
  }
}

License

Muezzin API is licensed under the terms of the MIT License.

MIT License

Copyright (c) 2017 Mehmet Akif Tütüncü

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.