• Stars
    star
    100
  • Rank 339,342 (Top 7 %)
  • Language
    PHP
  • License
    MIT License
  • Created over 8 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

API provider/proxy that provides plaintext responses - Documentation: https://docs.decapi.me/

DecAPI

What is DecAPI?

DecAPI started out as an API designed primarily for Twitch chatbots that supported sending requests to external APIs.
These chatbots would send requests to the APIs and then just return the response directly, which is the whole reason DecAPI mainly responds in plaintext.

While the primary usage of DecAPI is still related to Twitch chatbots, it's also used by other developers for stream overlays, websites etc.
Even though I generally allow everyone to rely on DecAPI for their data, I still recommend relying on the direct APIs whenever possible.

Development history

DecAPI is a personal project I started writing in 2014 (V1), which eventually became a big pile of undocumented, and badly written mess.

The current version of DecAPI (V2) was started in early 2016 and is an attempt to rewrite the codebase, while also keeping backwards compatibility, but also have it somewhat structured (unlike V1).
V2 is based on the Laravel framework.

Contributing

The CONTRIBUTING document has been moved to .github/CONTRIBUTING.md

Layout

The layout of the application can be reflected upon by looking at the routes/web.php file. Each group uses their own controller located in app/Http/Controllers, and each sub-route usually has their own method in said controller.

The standard layout will be https://example.com/main-route/sub-route/parameter - where parameter can be something like the channel name.

To keep it backwards compatible, routes also support /main-route/sub-route?channel=decicus or /main-route/sub-route.php?channel=decicus.

Requirements

The following things are required for setting this up:

Setup

I only recommend setting this up for development purposes.

  • Rename .env.example to .env and fill in the information in the .env file. Primarly the database and Twitch information.
    • If you are setting this up on a publicly accessible environment, make sure to set the APP_DEBUG value to false to not leak any credentials.
    • Twitch: You can create a Twitch application here: Twitch developer console - The redirect URL has to be http://your.url/auth/twitch/callback and TWITCH_REDIRECT_URI in the .env file has to be set to the same URL.
    • YouTube: Read the Getting Started page and Creating API keys section.
    • Papertrail: This is (optionally) used for external error logging. If you wish to use it, register on Papertrail and set the PAPERTRAIL_LOG_DESTINATION to whatever Papertrail gives you that's in the logsX.papertrailapp.com:YYYY format.
      • X and YYYY are numbers, and are just placeholders.
    • Steam: You can obtain a Steam API key here: Steam API Developer Portal
    • Twitter: Create a developer application on Twitter and insert the consumer key & consumer secret.
  • Run composer install in the project directory.
  • Run php artisan key:generate from the command line in the base project directory, to generate the application key.
  • Run php artisan migrate from the command line in the base project directory.
  • Point your web server to the /public directory of the repo.
    • I recommend using apache2 and configuring it to set AllowOverride to All for the specific directory in the vhost, so the .htaccess file can set the settings.
  • Setup the task scheduler by pointing a cron entry to * * * * * php /path/to/decapi/artisan schedule:run >> /dev/null 2>&1.
    • You can see what commands the scheduler runs in app/Console/Kernel.php.

Documentation

Documentation is currently work in progress and can be found here:

Bugs & reports

If you find a bug or an issue, please create an issue in this repository.

If it's a security issue and you'd like to contact me privately, please send me an email at [email protected].

Rate limits

Certain routes may have rate limiting applied to them to prevent abuse or to make sure DecAPI doesn't get blocked by the API provider.
The rate limits are set to something I consider "fair". Which primarily means they are set to something that should not hinder the normal user, but also should not allow them to go spam requests for no good reason.

Rate limiting is done by using Laravel's throttle middleware. This means you can check HTTP headers sent with the request to figure out information about your rate-limit:

  • X-RateLimit-Limit - How many requests per 1 minute (60 seconds) is allowed.
  • X-RateLimit-Remaining - How many requests you have left for this time period.
  • Retry-After - How many seconds until you can make requests again (Only when you have actually hit your rate limit).
    • Another note: If you have hit your rate limit, you will receive a 429 Too many requests HTTP status code.

Below is an overview over what routes are currently rate limited. If the route is not specified, it does not have a rate limit.

Rate limits per route are separate from each other.
If you've sent 45 requests to /steam routes, you will still have the ability to send another 100 requests to /twitch routes.

  • /twitch/* - All sub-routes under /twitch
    • Limit: 100 requests per 60 seconds.
  • /steam/* - All sub-routes under /steam
    • Limit: 15 requests per 60 seconds.

License

MIT License

Special thanks to

  • xgerhard - For implementing the /twitch/subage & /twitch/latest_sub routes.

More Repositories

1

twitch-log-bot

Logs Twitch chats to Google Cloud Datastore
JavaScript
13
star
2

DecAPI-Docs

Documentation for DecAPI - https://decapi.me/
Vue
9
star
3

linux-dayz-docker

Messing around with a DayZ server in a Docker container
Shell
7
star
4

Hostbot

A hosting bot thing for Twitch using node
JavaScript
6
star
5

TTT-Scoreboard-Ranks-for-ULX

Allows you to customize scoreboard ranks in TTT via the ULX admin mod.
Lua
4
star
6

twitch-oauth-token

Generates a Twitch OAuth token with the specified scopes
HTML
3
star
7

Discord-Log

Logs Discord chats
JavaScript
3
star
8

discord-server-change

A bot that changes Discord voice server regions via commands
JavaScript
3
star
9

DEB

Discord Emotes Bot - Implements Twitch and BTTV emotes into Discord.
JavaScript
2
star
10

Twitch-Active-Streams

Active stream tracker for Twitch
PHP
2
star
11

Ghetto-Hidden

A modified TTT gamemode.
Lua
2
star
12

illuminati-bot

Logs Discord chats
JavaScript
2
star
13

AdRequests

The continuation of AdRequests by Glyciant
PHP
1
star
14

Twitch-API-PHP

A PHP class for utilizing the Twitch API - Keep in mind that this in work in progress, and may have bugs. Use with caution.
PHP
1
star
15

nightbot-oauth-token

Generates a Nightbot OAuth token with the specified scopes
JavaScript
1
star
16

Twitch-Subscriber-Area

Updated on this page from now on: https://github.com/The-Blacklist/Twitch-Subscriber-Area
PHP
1
star
17

cf-workers-short-urls

Cloudflare Worker for a simple URL shortener/redirector using Workers KV
JavaScript
1
star
18

twitch-subscriptions-viewer

[OUTDATED] View your subscription details
JavaScript
1
star
19

twitch-recap

Customize your Twitch viewer/streamer recap 2020
HTML
1
star
20

ULX-Commands-by-Decicus

The GitHub repository for my ULX commands.
Lua
1
star
21

Twitch-Events

So you can let users sign up to events with their Twitch account.
PHP
1
star