1
0

First commit

This commit is contained in:
2020-04-29 23:58:18 +02:00
commit f3230a32ce
108 changed files with 77210 additions and 0 deletions

19
routes/api.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});

18
routes/channels.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
use Illuminate\Support\Facades\Broadcast;
/*
|--------------------------------------------------------------------------
| Broadcast Channels
|--------------------------------------------------------------------------
|
| Here you may register all of the event broadcasting channels that your
| application supports. The given channel authorization callbacks are
| used to check if an authenticated user can listen to the channel.
|
*/
Broadcast::channel('App.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});

19
routes/console.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based console
| commands. Each Closure is bound to a command instance allowing a
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->describe('Display an inspiring quote');

66
routes/web.php Normal file
View File

@@ -0,0 +1,66 @@
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view("home");
})->name("home");
Route::prefix("me")->group(function () {
Route::get("dashboard", "UserController@showDashboard")->name("me.dashboard");
});
Route::prefix("oauth")->group(function () {
Route::prefix("twitch")->group(function () {
Route::get("login", "UserController@login")->name("oauth.twitch.login");
Route::get("/", "UserController@authorized")->name("oauth.twitch");
Route::get("logout", "UserController@logout")->name("oauth.twitch.logout");
});
});
Route::prefix("hooks")->group(function () {
Route::prefix("twitch")->group(function() {
Route::post("subscribe", "WebhookController@subscribe")->name("hooks.twitch.subscribe");
Route::prefix("action")->group(function () {
// Route::get("/", "WebhookController@listAction")->name("hooks.twitch.action.list");
Route::post("/", "WebhookController@addAction")->name("hooks.twitch.action.add");
// Route::delete("/", "WebhookController@deleteAction")->name("hooks.twitch.action.delete");
Route::prefix("test")->group(function () {
Route::post("discord", "WebhookController@testWebhook")->name("hooks.twitch.action.test.discord");
});
});
Route::get("stream", "WebhookController@verifySubscription")->name("hooks.twitch.stream");
Route::post("stream", "WebhookController@streamUpdate");
});
});