├── .docker ├── nginx │ └── decapi.conf └── volumes │ └── .gitignore ├── .dockerignore ├── .editorconfig ├── .env.example ├── .gitattributes ├── .github ├── CONTRIBUTING.md └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── access.log ├── app ├── CachedTwitchUser.php ├── Console │ ├── Commands │ │ ├── AddBlacklistedIp.php │ │ ├── DecryptString.php │ │ ├── GenerateNewRateLimitApiKey.php │ │ ├── ImportSubcountTokens.php │ │ ├── Inspire.php │ │ ├── ListRateLimitApiKeys.php │ │ ├── RefreshIpBlacklistCache.php │ │ ├── RefreshIzurviveLocations.php │ │ ├── SetRateLimitApiKeyStatus.php │ │ ├── UpdateCachedTwitchUsers.php │ │ └── ValidateTwitchAuthUsers.php │ └── Kernel.php ├── Events │ └── Event.php ├── Exceptions │ ├── BttvApiException.php │ ├── CurrencyApiException.php │ ├── Handler.php │ ├── TwitchApiException.php │ └── TwitchFormatException.php ├── Helpers │ ├── Helper.php │ └── Nightbot.php ├── Http │ ├── Controllers │ │ ├── ArmaController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── PasswordController.php │ │ ├── BttvController.php │ │ ├── Controller.php │ │ ├── DayZController.php │ │ ├── FfzController.php │ │ ├── GeneralController.php │ │ ├── MathController.php │ │ ├── MiscController.php │ │ ├── RandomController.php │ │ ├── SteamController.php │ │ ├── TwitchApiController.php │ │ ├── TwitchAuthController.php │ │ ├── TwitchController.php │ │ └── YouTubeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── IPBasedBlacklist.php │ │ ├── RateLimitWithWhitelist.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SetLocaleMiddleware.php │ │ ├── TrustProxies.php │ │ ├── TwitchRemoveAtSigns.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ └── Request.php │ └── Resources │ │ ├── Bttv │ │ ├── ChannelEmote.php │ │ ├── ChannelEmoteCollection.php │ │ ├── SharedEmote.php │ │ ├── SharedEmoteCollection.php │ │ ├── TwitchUser.php │ │ └── User.php │ │ └── Twitch │ │ ├── AppToken.php │ │ ├── AuthToken.php │ │ ├── Channel.php │ │ ├── ChannelCollection.php │ │ ├── ChannelFollowers.php │ │ ├── Emote.php │ │ ├── EmoteCollection.php │ │ ├── Follow.php │ │ ├── FollowUser.php │ │ ├── FollowUserCollection.php │ │ ├── Pagination.php │ │ ├── Stream.php │ │ ├── StreamCollection.php │ │ ├── Streams.php │ │ ├── Subscription.php │ │ ├── SubscriptionCollection.php │ │ ├── Subscriptions.php │ │ ├── Team.php │ │ ├── TeamCollection.php │ │ ├── TeamUser.php │ │ ├── User.php │ │ ├── UserCollection.php │ │ ├── UserToken.php │ │ ├── Video.php │ │ └── VideoCollection.php ├── IpBlacklist.php ├── IzurviveLocation.php ├── IzurviveLocationSpelling.php ├── Jobs │ └── Job.php ├── Listeners │ └── .gitkeep ├── Logging │ └── PapertrailLogger.php ├── Policies │ └── .gitkeep ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── BttvApiProvider.php │ ├── CurrencyApiProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ ├── TwitchApiProvider.php │ └── YouTubeApiProvider.php ├── RateLimitApiKeys.php ├── Repositories │ ├── BttvApiRepository.php │ ├── CurrencyApiRepository.php │ ├── TwitchApiRepository.php │ └── YouTubeApiRepository.php ├── Services │ ├── BttvApiClient.php │ ├── CurrencyApiClient.php │ └── TwitchApiClient.php ├── TwitchHelpArticle.php ├── TwitchHelpCategory.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── compile.php ├── currency.php ├── database.php ├── datadog-helper.php ├── dayz.php ├── feed.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sentry.php ├── services.php ├── session.php ├── steam-api.php ├── twitch.php ├── view.php ├── youtube-cache.php └── youtube.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2016_09_19_071057_create_sessions_table.php │ ├── 2016_09_19_074036_create_users_table.php │ ├── 2017_01_13_144815_modify_users_table_to_string_ids.php │ ├── 2017_01_14_014430_create_cached_twitch_users_table.php │ ├── 2017_03_30_121400_modify_users_table_to_remove_username.php │ ├── 2017_04_11_122956_create_twitch_help_categories_table.php │ ├── 2017_04_11_123004_create_twitch_help_articles_table.php │ ├── 2018_06_15_180512_create_izurvive_locations.php │ ├── 2018_06_15_183306_create_izurvive_location_spellings.php │ ├── 2018_07_03_004238_create_rate_limit_api_keys_table.php │ ├── 2018_07_14_001410_create_ip_blacklist_table.php │ ├── 2019_04_30_112531_modify_users_table_to_add_refresh_token.php │ └── 2023_09_30_231536_modify_users_table_add_api_token_column.php └── seeders │ ├── .gitkeep │ └── DatabaseSeeder.php ├── docker-compose.example.yml ├── error.log ├── fortrabbit.yml ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── custom.css │ ├── darkly.css │ └── united.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.php ├── js │ └── bootstrap.min.js ├── robots.txt ├── svg │ ├── 403.svg │ ├── 404.svg │ ├── 500.svg │ └── 503.svg └── web.config ├── ray.php ├── readme.md ├── resources ├── assets │ └── sass │ │ └── app.scss ├── lang │ ├── cs │ │ └── time.php │ ├── de │ │ ├── auth.php │ │ ├── generic.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── time.php │ │ ├── twitch.php │ │ └── validation.php │ ├── en │ │ ├── auth.php │ │ ├── generic.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── time.php │ │ ├── twitch.php │ │ ├── validation.php │ │ └── youtube.php │ ├── es │ │ └── time.php │ ├── fr │ │ └── time.php │ ├── ko │ │ ├── generic.php │ │ ├── time.php │ │ ├── twitch.php │ │ └── youtube.php │ ├── nl │ │ ├── auth.php │ │ ├── generic.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── time.php │ │ ├── twitch.php │ │ ├── validation.php │ │ └── youtube.php │ ├── no │ │ ├── generic.php │ │ ├── time.php │ │ └── twitch.php │ ├── pt │ │ ├── generic.php │ │ ├── time.php │ │ ├── twitch.php │ │ └── youtube.php │ ├── ro │ │ ├── auth.php │ │ ├── generic.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── time.php │ ├── ru │ │ ├── generic.php │ │ ├── time.php │ │ └── twitch.php │ └── tr │ │ ├── auth.php │ │ ├── generic.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── time.php │ │ ├── twitch.php │ │ ├── validation.php │ │ └── youtube.php └── views │ ├── auth │ └── twitch.blade.php │ ├── base.blade.php │ ├── bttv │ ├── emotelist.blade.php │ ├── home.blade.php │ └── nav.blade.php │ ├── dayz │ └── izurvive.blade.php │ ├── errors │ ├── 429.blade.php │ └── 503.blade.php │ ├── home.blade.php │ ├── privacy-policy.blade.php │ ├── shared │ └── list.blade.php │ ├── twitch │ ├── followage.blade.php │ ├── followed.blade.php │ ├── subage.blade.php │ ├── subcount.blade.php │ ├── sublist.blade.php │ └── subpoints.blade.php │ └── vendor │ ├── .gitkeep │ └── feed │ ├── atom.blade.php │ └── rss.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── tests ├── ExampleTest.php └── TestCase.php /.docker/nginx/decapi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/.docker/nginx/decapi.conf -------------------------------------------------------------------------------- /.docker/volumes/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .docker/volumes -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /access.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/CachedTwitchUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/CachedTwitchUser.php -------------------------------------------------------------------------------- /app/Console/Commands/AddBlacklistedIp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/AddBlacklistedIp.php -------------------------------------------------------------------------------- /app/Console/Commands/DecryptString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/DecryptString.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateNewRateLimitApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/GenerateNewRateLimitApiKey.php -------------------------------------------------------------------------------- /app/Console/Commands/ImportSubcountTokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/ImportSubcountTokens.php -------------------------------------------------------------------------------- /app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /app/Console/Commands/ListRateLimitApiKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/ListRateLimitApiKeys.php -------------------------------------------------------------------------------- /app/Console/Commands/RefreshIpBlacklistCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/RefreshIpBlacklistCache.php -------------------------------------------------------------------------------- /app/Console/Commands/RefreshIzurviveLocations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/RefreshIzurviveLocations.php -------------------------------------------------------------------------------- /app/Console/Commands/SetRateLimitApiKeyStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/SetRateLimitApiKeyStatus.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdateCachedTwitchUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/UpdateCachedTwitchUsers.php -------------------------------------------------------------------------------- /app/Console/Commands/ValidateTwitchAuthUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Commands/ValidateTwitchAuthUsers.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Exceptions/BttvApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Exceptions/BttvApiException.php -------------------------------------------------------------------------------- /app/Exceptions/CurrencyApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Exceptions/CurrencyApiException.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/TwitchApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Exceptions/TwitchApiException.php -------------------------------------------------------------------------------- /app/Exceptions/TwitchFormatException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Exceptions/TwitchFormatException.php -------------------------------------------------------------------------------- /app/Helpers/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Helpers/Helper.php -------------------------------------------------------------------------------- /app/Helpers/Nightbot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Helpers/Nightbot.php -------------------------------------------------------------------------------- /app/Http/Controllers/ArmaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/ArmaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BttvController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/BttvController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DayZController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/DayZController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FfzController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/FfzController.php -------------------------------------------------------------------------------- /app/Http/Controllers/GeneralController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/GeneralController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MathController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/MathController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MiscController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/MiscController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RandomController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/RandomController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SteamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/SteamController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TwitchApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/TwitchApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TwitchAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/TwitchAuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TwitchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/TwitchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/YouTubeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Controllers/YouTubeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/IPBasedBlacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/IPBasedBlacklist.php -------------------------------------------------------------------------------- /app/Http/Middleware/RateLimitWithWhitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/RateLimitWithWhitelist.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocaleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/SetLocaleMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/TwitchRemoveAtSigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/TwitchRemoveAtSigns.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Http/Resources/Bttv/ChannelEmote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Bttv/ChannelEmote.php -------------------------------------------------------------------------------- /app/Http/Resources/Bttv/ChannelEmoteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Bttv/ChannelEmoteCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Bttv/SharedEmote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Bttv/SharedEmote.php -------------------------------------------------------------------------------- /app/Http/Resources/Bttv/SharedEmoteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Bttv/SharedEmoteCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Bttv/TwitchUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Bttv/TwitchUser.php -------------------------------------------------------------------------------- /app/Http/Resources/Bttv/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Bttv/User.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/AppToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/AppToken.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/AuthToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/AuthToken.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Channel.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/ChannelCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/ChannelCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/ChannelFollowers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/ChannelFollowers.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Emote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Emote.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/EmoteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/EmoteCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Follow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Follow.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/FollowUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/FollowUser.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/FollowUserCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/FollowUserCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Pagination.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Stream.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/StreamCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/StreamCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Streams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Streams.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Subscription.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/SubscriptionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/SubscriptionCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Subscriptions.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Team.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/TeamCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/TeamCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/TeamUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/TeamUser.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/User.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/UserCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/UserCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/UserToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/UserToken.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/Video.php -------------------------------------------------------------------------------- /app/Http/Resources/Twitch/VideoCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Http/Resources/Twitch/VideoCollection.php -------------------------------------------------------------------------------- /app/IpBlacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/IpBlacklist.php -------------------------------------------------------------------------------- /app/IzurviveLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/IzurviveLocation.php -------------------------------------------------------------------------------- /app/IzurviveLocationSpelling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/IzurviveLocationSpelling.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Logging/PapertrailLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Logging/PapertrailLogger.php -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BttvApiProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/BttvApiProvider.php -------------------------------------------------------------------------------- /app/Providers/CurrencyApiProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/CurrencyApiProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TwitchApiProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/TwitchApiProvider.php -------------------------------------------------------------------------------- /app/Providers/YouTubeApiProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Providers/YouTubeApiProvider.php -------------------------------------------------------------------------------- /app/RateLimitApiKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/RateLimitApiKeys.php -------------------------------------------------------------------------------- /app/Repositories/BttvApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Repositories/BttvApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/CurrencyApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Repositories/CurrencyApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/TwitchApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Repositories/TwitchApiRepository.php -------------------------------------------------------------------------------- /app/Repositories/YouTubeApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Repositories/YouTubeApiRepository.php -------------------------------------------------------------------------------- /app/Services/BttvApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Services/BttvApiClient.php -------------------------------------------------------------------------------- /app/Services/CurrencyApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Services/CurrencyApiClient.php -------------------------------------------------------------------------------- /app/Services/TwitchApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/Services/TwitchApiClient.php -------------------------------------------------------------------------------- /app/TwitchHelpArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/TwitchHelpArticle.php -------------------------------------------------------------------------------- /app/TwitchHelpCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/TwitchHelpCategory.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/currency.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/database.php -------------------------------------------------------------------------------- /config/datadog-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/datadog-helper.php -------------------------------------------------------------------------------- /config/dayz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/dayz.php -------------------------------------------------------------------------------- /config/feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/feed.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/sentry.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/session.php -------------------------------------------------------------------------------- /config/steam-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/steam-api.php -------------------------------------------------------------------------------- /config/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/twitch.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/view.php -------------------------------------------------------------------------------- /config/youtube-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/youtube-cache.php -------------------------------------------------------------------------------- /config/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/config/youtube.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/2016_09_19_071057_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2016_09_19_071057_create_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2016_09_19_074036_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2016_09_19_074036_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2017_01_13_144815_modify_users_table_to_string_ids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2017_01_13_144815_modify_users_table_to_string_ids.php -------------------------------------------------------------------------------- /database/migrations/2017_01_14_014430_create_cached_twitch_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2017_01_14_014430_create_cached_twitch_users_table.php -------------------------------------------------------------------------------- /database/migrations/2017_03_30_121400_modify_users_table_to_remove_username.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2017_03_30_121400_modify_users_table_to_remove_username.php -------------------------------------------------------------------------------- /database/migrations/2017_04_11_122956_create_twitch_help_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2017_04_11_122956_create_twitch_help_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2017_04_11_123004_create_twitch_help_articles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2017_04_11_123004_create_twitch_help_articles_table.php -------------------------------------------------------------------------------- /database/migrations/2018_06_15_180512_create_izurvive_locations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2018_06_15_180512_create_izurvive_locations.php -------------------------------------------------------------------------------- /database/migrations/2018_06_15_183306_create_izurvive_location_spellings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2018_06_15_183306_create_izurvive_location_spellings.php -------------------------------------------------------------------------------- /database/migrations/2018_07_03_004238_create_rate_limit_api_keys_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2018_07_03_004238_create_rate_limit_api_keys_table.php -------------------------------------------------------------------------------- /database/migrations/2018_07_14_001410_create_ip_blacklist_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2018_07_14_001410_create_ip_blacklist_table.php -------------------------------------------------------------------------------- /database/migrations/2019_04_30_112531_modify_users_table_to_add_refresh_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2019_04_30_112531_modify_users_table_to_add_refresh_token.php -------------------------------------------------------------------------------- /database/migrations/2023_09_30_231536_modify_users_table_add_api_token_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/migrations/2023_09_30_231536_modify_users_table_add_api_token_column.php -------------------------------------------------------------------------------- /database/seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /docker-compose.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/docker-compose.example.yml -------------------------------------------------------------------------------- /error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fortrabbit.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | post: artisan migrate --force -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/css/darkly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/css/darkly.css -------------------------------------------------------------------------------- /public/css/united.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/css/united.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/svg/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/svg/403.svg -------------------------------------------------------------------------------- /public/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/svg/404.svg -------------------------------------------------------------------------------- /public/svg/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/svg/500.svg -------------------------------------------------------------------------------- /public/svg/503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/svg/503.svg -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/public/web.config -------------------------------------------------------------------------------- /ray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/ray.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/cs/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/cs/time.php -------------------------------------------------------------------------------- /resources/lang/de/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/de/auth.php -------------------------------------------------------------------------------- /resources/lang/de/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/de/generic.php -------------------------------------------------------------------------------- /resources/lang/de/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/de/pagination.php -------------------------------------------------------------------------------- /resources/lang/de/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/de/passwords.php -------------------------------------------------------------------------------- /resources/lang/de/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/de/time.php -------------------------------------------------------------------------------- /resources/lang/de/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/de/twitch.php -------------------------------------------------------------------------------- /resources/lang/de/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/de/validation.php -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/generic.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/time.php -------------------------------------------------------------------------------- /resources/lang/en/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/twitch.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/en/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/en/youtube.php -------------------------------------------------------------------------------- /resources/lang/es/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/es/time.php -------------------------------------------------------------------------------- /resources/lang/fr/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/fr/time.php -------------------------------------------------------------------------------- /resources/lang/ko/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ko/generic.php -------------------------------------------------------------------------------- /resources/lang/ko/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ko/time.php -------------------------------------------------------------------------------- /resources/lang/ko/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ko/twitch.php -------------------------------------------------------------------------------- /resources/lang/ko/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ko/youtube.php -------------------------------------------------------------------------------- /resources/lang/nl/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/auth.php -------------------------------------------------------------------------------- /resources/lang/nl/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/generic.php -------------------------------------------------------------------------------- /resources/lang/nl/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/pagination.php -------------------------------------------------------------------------------- /resources/lang/nl/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/passwords.php -------------------------------------------------------------------------------- /resources/lang/nl/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/time.php -------------------------------------------------------------------------------- /resources/lang/nl/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/twitch.php -------------------------------------------------------------------------------- /resources/lang/nl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/validation.php -------------------------------------------------------------------------------- /resources/lang/nl/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/nl/youtube.php -------------------------------------------------------------------------------- /resources/lang/no/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/no/generic.php -------------------------------------------------------------------------------- /resources/lang/no/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/no/time.php -------------------------------------------------------------------------------- /resources/lang/no/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/no/twitch.php -------------------------------------------------------------------------------- /resources/lang/pt/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/pt/generic.php -------------------------------------------------------------------------------- /resources/lang/pt/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/pt/time.php -------------------------------------------------------------------------------- /resources/lang/pt/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/pt/twitch.php -------------------------------------------------------------------------------- /resources/lang/pt/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/pt/youtube.php -------------------------------------------------------------------------------- /resources/lang/ro/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ro/auth.php -------------------------------------------------------------------------------- /resources/lang/ro/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ro/generic.php -------------------------------------------------------------------------------- /resources/lang/ro/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ro/pagination.php -------------------------------------------------------------------------------- /resources/lang/ro/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ro/passwords.php -------------------------------------------------------------------------------- /resources/lang/ro/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ro/time.php -------------------------------------------------------------------------------- /resources/lang/ru/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ru/generic.php -------------------------------------------------------------------------------- /resources/lang/ru/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ru/time.php -------------------------------------------------------------------------------- /resources/lang/ru/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/ru/twitch.php -------------------------------------------------------------------------------- /resources/lang/tr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/auth.php -------------------------------------------------------------------------------- /resources/lang/tr/generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/generic.php -------------------------------------------------------------------------------- /resources/lang/tr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/pagination.php -------------------------------------------------------------------------------- /resources/lang/tr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/passwords.php -------------------------------------------------------------------------------- /resources/lang/tr/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/time.php -------------------------------------------------------------------------------- /resources/lang/tr/twitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/twitch.php -------------------------------------------------------------------------------- /resources/lang/tr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/validation.php -------------------------------------------------------------------------------- /resources/lang/tr/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/lang/tr/youtube.php -------------------------------------------------------------------------------- /resources/views/auth/twitch.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/auth/twitch.blade.php -------------------------------------------------------------------------------- /resources/views/base.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/base.blade.php -------------------------------------------------------------------------------- /resources/views/bttv/emotelist.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/bttv/emotelist.blade.php -------------------------------------------------------------------------------- /resources/views/bttv/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/bttv/home.blade.php -------------------------------------------------------------------------------- /resources/views/bttv/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/bttv/nav.blade.php -------------------------------------------------------------------------------- /resources/views/dayz/izurvive.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/dayz/izurvive.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- 1 | 429 - Too Many Requests 2 | -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/privacy-policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/privacy-policy.blade.php -------------------------------------------------------------------------------- /resources/views/shared/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/shared/list.blade.php -------------------------------------------------------------------------------- /resources/views/twitch/followage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/twitch/followage.blade.php -------------------------------------------------------------------------------- /resources/views/twitch/followed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/twitch/followed.blade.php -------------------------------------------------------------------------------- /resources/views/twitch/subage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/twitch/subage.blade.php -------------------------------------------------------------------------------- /resources/views/twitch/subcount.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/twitch/subcount.blade.php -------------------------------------------------------------------------------- /resources/views/twitch/sublist.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/twitch/sublist.blade.php -------------------------------------------------------------------------------- /resources/views/twitch/subpoints.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/twitch/subpoints.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/feed/atom.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/vendor/feed/atom.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/feed/rss.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/resources/views/vendor/feed/rss.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decicus/DecAPI/HEAD/tests/TestCase.php --------------------------------------------------------------------------------