commit and push the atrocious bullshit
This commit is contained in:
commit
c064d02cb8
|
|
@ -0,0 +1,15 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_size = 2
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
* text=auto
|
||||
*.css linguist-vendored
|
||||
*.scss linguist-vendored
|
||||
*.js linguist-vendored
|
||||
CHANGELOG.md export-ignore
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
/node_modules
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/vendor
|
||||
.env
|
||||
.env.backup
|
||||
.phpunit.result.cache
|
||||
docker-compose.override.yml
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
php:
|
||||
preset: laravel
|
||||
disabled:
|
||||
- no_unused_imports
|
||||
finder:
|
||||
not-name:
|
||||
- index.php
|
||||
- server.php
|
||||
js:
|
||||
finder:
|
||||
not-name:
|
||||
- webpack.mix.js
|
||||
css: true
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400"></a></p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://travis-ci.org/laravel/framework"><img src="https://travis-ci.org/laravel/framework.svg" alt="Build Status"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
|
||||
</p>
|
||||
|
||||
## About Laravel
|
||||
|
||||
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
|
||||
|
||||
- [Simple, fast routing engine](https://laravel.com/docs/routing).
|
||||
- [Powerful dependency injection container](https://laravel.com/docs/container).
|
||||
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
|
||||
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
|
||||
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
|
||||
- [Robust background job processing](https://laravel.com/docs/queues).
|
||||
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
|
||||
|
||||
Laravel is accessible, powerful, and provides tools required for large, robust applications.
|
||||
|
||||
## Learning Laravel
|
||||
|
||||
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
|
||||
|
||||
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
|
||||
|
||||
## Laravel Sponsors
|
||||
|
||||
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).
|
||||
|
||||
### Premium Partners
|
||||
|
||||
- **[Vehikl](https://vehikl.com/)**
|
||||
- **[Tighten Co.](https://tighten.co)**
|
||||
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
|
||||
- **[64 Robots](https://64robots.com)**
|
||||
- **[Cubet Techno Labs](https://cubettech.com)**
|
||||
- **[Cyber-Duck](https://cyber-duck.co.uk)**
|
||||
- **[Many](https://www.many.co.uk)**
|
||||
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
|
||||
- **[DevSquad](https://devsquad.com)**
|
||||
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
|
||||
- **[OP.GG](https://op.gg)**
|
||||
|
||||
## Contributing
|
||||
|
||||
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
|
||||
|
||||
## Security Vulnerabilities
|
||||
|
||||
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
|
||||
|
||||
## License
|
||||
|
||||
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace App\Console;
|
||||
|
||||
use Illuminate\Console\Scheduling\Schedule;
|
||||
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
||||
|
||||
class Kernel extends ConsoleKernel
|
||||
{
|
||||
/**
|
||||
* The Artisan commands provided by your application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $commands = [
|
||||
//
|
||||
];
|
||||
|
||||
/**
|
||||
* Define the application's command schedule.
|
||||
*
|
||||
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
||||
* @return void
|
||||
*/
|
||||
protected function schedule(Schedule $schedule)
|
||||
{
|
||||
// $schedule->command('inspire')->hourly();
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the commands for the application.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function commands()
|
||||
{
|
||||
$this->load(__DIR__.'/Commands');
|
||||
|
||||
require base_path('routes/console.php');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
||||
use Throwable;
|
||||
|
||||
class Handler extends ExceptionHandler
|
||||
{
|
||||
/**
|
||||
* A list of the exception types that are not reported.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $dontReport = [
|
||||
//
|
||||
];
|
||||
|
||||
/**
|
||||
* A list of the inputs that are never flashed for validation exceptions.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $dontFlash = [
|
||||
'current_password',
|
||||
'password',
|
||||
'password_confirmation',
|
||||
];
|
||||
|
||||
/**
|
||||
* Register the exception handling callbacks for the application.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
$this->reportable(function (Throwable $e) {
|
||||
//
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
if (isset($_SERVER["HTTP_CF_CONNECTING_IP"])) {
|
||||
$_SERVER['REMOTE_ADDR'] = $_SERVER["HTTP_CF_CONNECTING_IP"];
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,227 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\User;
|
||||
use App\Models\Server;
|
||||
use App\Models\GameToken;
|
||||
use App\Models\InviteKey;
|
||||
use App\Models\Item;
|
||||
use App\Models\OwnedItems;
|
||||
use App\Models\RenderQueue;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Support\Str;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
|
||||
class AdminController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
$this->middleware('admin');
|
||||
}
|
||||
|
||||
public function index(Request $request) {
|
||||
return view('admin.index');
|
||||
}
|
||||
|
||||
public function truncategametokens(Request $request) {
|
||||
GameToken::Truncate();
|
||||
|
||||
return redirect('/admin')->with('message', 'Cleared all Game Tokens from the database.');
|
||||
}
|
||||
|
||||
public function truncateservers(Request $request) {
|
||||
Server::Truncate();
|
||||
|
||||
return redirect('/admin')->with('message', 'Cleared all Servers from the database.');
|
||||
}
|
||||
|
||||
public function invitekeys(Request $request) {
|
||||
$invitekeys = InviteKey::query();
|
||||
|
||||
return view('admin.invitekeys')->with('invitekeys', $invitekeys->orderBy('updated_at', 'DESC')->paginate(10)->appends($request->all()));
|
||||
}
|
||||
|
||||
public function createinvitekey(Request $request) {
|
||||
return view('admin.createinvitekey');
|
||||
}
|
||||
|
||||
public function generateinvitekey(Request $request) {
|
||||
$request->validate([
|
||||
'uses' => ['required', 'min:1', 'max:20', 'integer']
|
||||
]);
|
||||
|
||||
$inviteKey = InviteKey::create([
|
||||
'creator' => $request->user()->id,
|
||||
'token' => 'TadahKey-' . Str::random(25),
|
||||
'uses' => $request['uses']
|
||||
]);
|
||||
|
||||
return redirect('/admin/createinvitekey')->with('success', 'Created invite key. Key: "' . $inviteKey->token . '"');
|
||||
}
|
||||
|
||||
public function disableinvitekey(Request $request, $id) {
|
||||
$invitekey = InviteKey::find($id);
|
||||
|
||||
if (!$invitekey) {
|
||||
return abort(404);
|
||||
}
|
||||
|
||||
$invitekey->uses = 0;
|
||||
$invitekey->save();
|
||||
|
||||
return redirect('/admin/invitekeys')->with('message', 'Invite key ID: ' . $invitekey->id . ', Token: ' . $invitekey->token . ' disabled.');
|
||||
}
|
||||
|
||||
public function ban(Request $request) {
|
||||
return view('admin.ban');
|
||||
}
|
||||
|
||||
public function banuser(Request $request) {
|
||||
$request->validate([
|
||||
'username' => ['required', 'min:3', 'max:50'],
|
||||
'banreason' => ['required', 'max:2000'],
|
||||
'unbandate' => ['required', 'date']
|
||||
]);
|
||||
|
||||
$user = User::where('username', $request['username'])->first();
|
||||
|
||||
if (!$user) {
|
||||
return redirect('/admin/ban')->with('error', 'That user does not exist. Name: ' . $request['username']);
|
||||
}
|
||||
|
||||
if ($user->banned) {
|
||||
return redirect('/admin/ban')->with('error', 'That user is already banned. Reason: ' . $user->ban_reason);
|
||||
}
|
||||
|
||||
if ($request->user()->id == $user->id) {
|
||||
return redirect('/admin/ban')->with('error', 'You\'re trying to ban yourself?');
|
||||
}
|
||||
|
||||
$user->banned = true;
|
||||
$user->ban_reason = $request['banreason'];
|
||||
$user->banned_until = Carbon::parse($request['unbandate']);
|
||||
$user->save();
|
||||
|
||||
return redirect('/admin/ban')->with('success', $user->username . ' has been banned until ' . $user->banned_until);
|
||||
}
|
||||
|
||||
public function unban(Request $request) {
|
||||
return view('admin.unban');
|
||||
}
|
||||
|
||||
public function unbanuser(Request $request) {
|
||||
$request->validate([
|
||||
'username' => ['required', 'min:3', 'max:20']
|
||||
]);
|
||||
|
||||
$user = User::where('username', $request['username'])->first();
|
||||
|
||||
if (!$user) {
|
||||
return redirect('/admin/unban')->with('error', 'That user does not exist. Name: ' . $request['username']);
|
||||
}
|
||||
|
||||
if (!$user->banned) {
|
||||
return redirect('/admin/unban')->with('error', 'That user is not banned.');
|
||||
}
|
||||
|
||||
if ($request->user()->id == $user->id) {
|
||||
return redirect('/admin/unban')->with('error', 'but... but... but... you are not banned......');
|
||||
}
|
||||
|
||||
$user->banned = false;
|
||||
$user->ban_reason = null;
|
||||
$user->banned_until = null;
|
||||
$user->save();
|
||||
|
||||
return redirect('/admin/unban')->with('success', $user->username . ' has been unbanned.');
|
||||
}
|
||||
|
||||
public function xmlitem(Request $request)
|
||||
{
|
||||
return view('admin.newxmlitem');
|
||||
}
|
||||
|
||||
public function createxmlitem(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'name' => ['required', 'string', 'max:100'],
|
||||
'description' => ['string', 'max:2000'],
|
||||
'price' => ['required', 'integer', 'min:0', 'max:999999'],
|
||||
'xml' => ['required', 'string'],
|
||||
'type' => ['required', 'string']
|
||||
]);
|
||||
|
||||
$item = Item::create([
|
||||
'name' => $request['name'],
|
||||
'description' => $request['description'],
|
||||
'creator' => $request->user()->id,
|
||||
'thumbnail_url' => $request['thumbnailurl'],
|
||||
'price' => $request['price'],
|
||||
'type' => $request['type'],
|
||||
'sales' => 0,
|
||||
'onsale' => true,
|
||||
'approved' => config('app.assets_approved_by_default')
|
||||
]);
|
||||
|
||||
Storage::disk('public')->put('items/' . $item->id, $request['xml']);
|
||||
|
||||
if ($item->type == "Hat" || $item->type == "Model" || $item->type == "Gear") {
|
||||
RenderQueue::create([
|
||||
'type' => 'xml',
|
||||
'target_id' => $item->id
|
||||
]);
|
||||
}
|
||||
|
||||
if ($item->type == "Package") {
|
||||
RenderQueue::create([
|
||||
'type' => 'clothing',
|
||||
'target_id' => $item->id
|
||||
]);
|
||||
}
|
||||
|
||||
OwnedItems::create([
|
||||
'user_id' => $request->user()->id,
|
||||
'item_id' => $item->id,
|
||||
'wearing' => false
|
||||
]);
|
||||
|
||||
return redirect(route('catalog.item', $item->id))->with('message', 'XML asset successfully created.');
|
||||
}
|
||||
|
||||
public function robloxitemdata(Request $request, $id)
|
||||
{
|
||||
$response = Http::asForm()->get('https://api.roblox.com/marketplace/productinfo', [
|
||||
"assetId" => $id
|
||||
]);
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function robloxxmldata(Request $request, $id, $version)
|
||||
{
|
||||
$response = Http::get('https://assetdelivery.roblox.com/v1/asset?id=' . intval($id) . "&version=" . intval($version));
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function regenalluserthumbs(Request $request)
|
||||
{
|
||||
if (!$request->user()->id == 1) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$users = User::all();
|
||||
foreach ($users as $user) {
|
||||
RenderQueue::create([
|
||||
"type" => "user",
|
||||
"target_id" => $user->id
|
||||
]);
|
||||
}
|
||||
|
||||
return "OK";
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Item;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Illuminate\Support\Facades\Response;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class AssetController extends Controller
|
||||
{
|
||||
public function getasset(Request $request)
|
||||
{
|
||||
if (!$request->id) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$item = Item::findOrFail($request->id);
|
||||
|
||||
if (Storage::disk('public')->exists('items/' . $item->id)) {
|
||||
$response = Response::make(Storage::disk('public')->get('items/' . $item->id, 200));
|
||||
$response->header('Content-Type', 'application/octet-stream');
|
||||
return $response;
|
||||
} else {
|
||||
abort(404);
|
||||
}
|
||||
}
|
||||
|
||||
public function getxmlasset(Request $request)
|
||||
{
|
||||
if (!$request->id) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$item = Item::findOrFail($request->id);
|
||||
|
||||
if ($item->isXmlAsset()) {
|
||||
if (Storage::disk('public')->exists('items/' . $request->id)) {
|
||||
$response = Response::make(Storage::disk('public')->get('items/' . $request->id, 200));
|
||||
$response->header('Content-Type', 'application/octet-stream');
|
||||
return $response;
|
||||
} else {
|
||||
return abort(404);
|
||||
}
|
||||
}
|
||||
|
||||
return view('client.xmlasset')->with('item', $item);
|
||||
}
|
||||
|
||||
public function robloxredirect(Request $request)
|
||||
{
|
||||
if (!$request->id) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
if ($request->id == "humHealth") {
|
||||
return view('client.humanoidHealth');
|
||||
}
|
||||
|
||||
return redirect('https://assetdelivery.roblox.com/v1/asset/?id=' . $request->id);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\ConfirmsPasswords;
|
||||
|
||||
class ConfirmPasswordController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Confirm Password Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling password confirmations and
|
||||
| uses a simple trait to include the behavior. You're free to explore
|
||||
| this trait and override any functions that require customization.
|
||||
|
|
||||
*/
|
||||
|
||||
use ConfirmsPasswords;
|
||||
|
||||
/**
|
||||
* Where to redirect users when the intended url fails.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $redirectTo = RouteServiceProvider::HOME;
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||||
|
||||
class ForgotPasswordController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling password reset emails and
|
||||
| includes a trait which assists in sending these notifications from
|
||||
| your application to your users. Feel free to explore this trait.
|
||||
|
|
||||
*/
|
||||
|
||||
use SendsPasswordResetEmails;
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
||||
|
||||
class LoginController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Login Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller handles authenticating users for the application and
|
||||
| redirecting them to your home screen. The controller uses a trait
|
||||
| to conveniently provide its functionality to your applications.
|
||||
|
|
||||
*/
|
||||
|
||||
use AuthenticatesUsers;
|
||||
|
||||
/**
|
||||
* Where to redirect users after login.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $redirectTo = RouteServiceProvider::HOME;
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('guest')->except('logout');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,111 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use App\Models\User;
|
||||
use App\Models\BodyColors;
|
||||
use App\Models\InviteKey;
|
||||
use App\Models\RenderQueue;
|
||||
use App\Rules\InviteKeyRule;
|
||||
use Illuminate\Foundation\Auth\RegistersUsers;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
|
||||
class RegisterController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Register Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller handles the registration of new users as well as their
|
||||
| validation and creation. By default this controller uses a trait to
|
||||
| provide this functionality without requiring any additional code.
|
||||
|
|
||||
*/
|
||||
|
||||
use RegistersUsers;
|
||||
|
||||
/**
|
||||
* Where to redirect users after registration.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $redirectTo = RouteServiceProvider::HOME;
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('guest');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a validator for an incoming registration request.
|
||||
*
|
||||
* @param array $data
|
||||
* @return \Illuminate\Contracts\Validation\Validator
|
||||
*/
|
||||
protected function validator(array $data)
|
||||
{
|
||||
return Validator::make($data, [
|
||||
'username' => ['required', 'string', 'min:3', 'max:20', 'unique:users', 'alpha_num'],
|
||||
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
|
||||
'password' => ['required', 'string', 'min:4', 'confirmed'],
|
||||
'invite_key' => ['string', new InviteKeyRule()]
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new user instance after a valid registration.
|
||||
*
|
||||
* @param array $data
|
||||
* @return \App\Models\User
|
||||
*/
|
||||
protected function create(array $data)
|
||||
{
|
||||
if (!config('app.registration_enabled')) {
|
||||
return abort(403);
|
||||
}
|
||||
|
||||
$user = User::create([
|
||||
'username' => $data['username'],
|
||||
'email' => $data['email'],
|
||||
'password' => Hash::make($data['password']),
|
||||
'register_ip' => '0.0.0.0',
|
||||
'last_ip' => '0.0.0.0'
|
||||
]);
|
||||
|
||||
BodyColors::create([
|
||||
'user_id' => $user->id,
|
||||
'head_color' => 1,
|
||||
'torso_color' => 1010,
|
||||
'left_arm_color' => 1,
|
||||
'right_arm_color' => 1,
|
||||
'left_leg_color' => 26,
|
||||
'right_leg_color' => 26
|
||||
]);
|
||||
|
||||
RenderQueue::create([
|
||||
'type' => 'user',
|
||||
'target_id' => $user->id
|
||||
]);
|
||||
|
||||
|
||||
if (isset($data['invite_key'])) {
|
||||
$invitekey = InviteKey::where('token', $data['invite_key'])->first();
|
||||
$user->invite_key = $data['invite_key'];
|
||||
$user->save();
|
||||
|
||||
$invitekey->uses = $invitekey->uses - 1;
|
||||
$invitekey->save();
|
||||
}
|
||||
|
||||
return $user;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\ResetsPasswords;
|
||||
|
||||
class ResetPasswordController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling password reset requests
|
||||
| and uses a simple trait to include this behavior. You're free to
|
||||
| explore this trait and override any methods you wish to tweak.
|
||||
|
|
||||
*/
|
||||
|
||||
use ResetsPasswords;
|
||||
|
||||
/**
|
||||
* Where to redirect users after resetting their password.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $redirectTo = RouteServiceProvider::HOME;
|
||||
}
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\VerifiesEmails;
|
||||
|
||||
class VerificationController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Email Verification Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling email verification for any
|
||||
| user that recently registered with the application. Emails may also
|
||||
| be re-sent if the user didn't receive the original email message.
|
||||
|
|
||||
*/
|
||||
|
||||
use VerifiesEmails;
|
||||
|
||||
/**
|
||||
* Where to redirect users after verification.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $redirectTo = RouteServiceProvider::HOME;
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
$this->middleware('signed')->only('verify');
|
||||
$this->middleware('throttle:6,1')->only('verify', 'resend');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,135 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\BodyColors;
|
||||
|
||||
class BodyColorsController extends Controller
|
||||
{
|
||||
public $colors = [
|
||||
["name" => "Light blue", "id" => "45", "rgb" => "180,210,228"],
|
||||
["name" => "Pastel light blue", "id" => "1024", "rgb" => "175,221,255"],
|
||||
["name" => "Pastel Blue", "id" => "11", "rgb" => "128,187,219"],
|
||||
["name" => "Medium blue", "id" => "102", "rgb" => "110,153,202"],
|
||||
["name" => "Bright blue", "id" => "23", "rgb" => "13,105,172"],
|
||||
["name" => "Really blue", "id" => "1010", "rgb" => "0,0,255"],
|
||||
["name" => "Deep blue", "id" => "1012", "rgb" => "33,84,185"],
|
||||
["name" => "Navy blue", "id" => "1011", "rgb" => "0,32,96"],
|
||||
["name" => "Pastel blue-green", "id" => "1027", "rgb" => "159,243,233"],
|
||||
["name" => "Teal", "id" => "1018", "rgb" => "18,238,212"],
|
||||
["name" => "Sand green", "id" => "151", "rgb" => "120,144,130"],
|
||||
["name" => "Grime", "id" => "1022", "rgb" => "127,142,100"],
|
||||
["name" => "Sand blue", "id" => "135", "rgb" => "116,134,157"],
|
||||
["name" => "Toothpaste", "id" => "1019", "rgb" => "0,255,255"],
|
||||
["name" => "Cyan", "id" => "1013", "rgb" => "4,175,236"],
|
||||
["name" => "Bright bluish green", "id" => "107", "rgb" => "0,143,156"],
|
||||
["name" => "Pastel green", "id" => "1028", "rgb" => "204,255,204"],
|
||||
["name" => "Medium green", "id" => "29", "rgb" => "161,196,140"],
|
||||
["name" => "Br. yellowish green", "id" => "119", "rgb" => "164,189,71"],
|
||||
["name" => "Bright green", "id" => "37", "rgb" => "75,151,75"],
|
||||
["name" => "Camo", "id" => "1021", "rgb" => "58,125,21"],
|
||||
["name" => "Lime green", "id" => "1020", "rgb" => "58,125,21"],
|
||||
["name" => "Dark green", "id" => "28", "rgb" => "40,127,71"],
|
||||
["name" => "Earth green", "id" => "141", "rgb" => "39,70,45"],
|
||||
["name" => "Pastel yellow", "id" => "1029", "rgb" => "255,255,204"],
|
||||
["name" => "Cool yellow", "id" => "226", "rgb" => "253,234,141"],
|
||||
["name" => "Olive", "id" => "1008", "rgb" => "193,190,66"],
|
||||
["name" => "Bright yellow", "id" => "24", "rgb" => "245,205,48"],
|
||||
["name" => "Deep orange", "id" => "1017", "rgb" => "255,175,0"],
|
||||
["name" => "New Yeller", "id" => "1009", "rgb" => "255,255,0"],
|
||||
["name" => "Deep orange", "id" => "1005", "rgb" => "255,176,0"],
|
||||
["name" => "Br. yellowish orange", "id" => "105", "rgb" => "226,155,64"],
|
||||
["name" => "Pastel orange", "id" => "1025", "rgb" => "255,201,201"],
|
||||
["name" => "Light orange", "id" => "125", "rgb" => "234,184,146"],
|
||||
["name" => "Medium red", "id" => "101", "rgb" => "218,134,122"],
|
||||
["name" => "Dusty Rose", "id" => "1007", "rgb" => "163,75,75"],
|
||||
["name" => "Olive", "id" => "1016", "rgb" => "193,190,66"],
|
||||
["name" => "Hot pink", "id" => "1032", "rgb" => "255,0,191"],
|
||||
["name" => "Really red", "id" => "1004", "rgb" => "255,0,0"],
|
||||
["name" => "Bright red", "id" => "21", "rgb" => "196,40,28"],
|
||||
["name" => "Light reddish violet", "id" => "9", "rgb" => "232,186,200"],
|
||||
["name" => "Pastel violet", "id" => "1026", "rgb" => "177,167,255"],
|
||||
["name" => "Alder", "id" => "1006", "rgb" => "180,128,255"],
|
||||
["name" => "Sand red", "id" => "153", "rgb" => "149,121,119"],
|
||||
["name" => "Lavender", "id" => "1023", "rgb" => "140,91,159"],
|
||||
["name" => "Magenta", "id" => "1015", "rgb" => "170,0,170"],
|
||||
["name" => "Royal purple", "id" => "1031", "rgb" => "98,37,209"],
|
||||
["name" => "Bright violet", "id" => "104", "rgb" => "107,50,124"],
|
||||
["name" => "Brick yellow", "id" => "5", "rgb" => "215,197,154"],
|
||||
["name" => "Pastel brown", "id" => "1030", "rgb" => "255,204,153"],
|
||||
["name" => "Nougat", "id" => "18", "rgb" => "204,142,105"],
|
||||
["name" => "Bright orange", "id" => "106", "rgb" => "218,133,65"],
|
||||
["name" => "Dark orange", "id" => "38", "rgb" => "160,95,53"],
|
||||
["name" => "CGA brown", "id" => "1014", "rgb" => "170,85,0"],
|
||||
["name" => "Brown", "id" => "217", "rgb" => "124,92,70"],
|
||||
["name" => "Reddish brown", "id" => "192", "rgb" => "105,64,40"],
|
||||
["name" => "Institutional white", "id" => "1001", "rgb" => "248,248,248"],
|
||||
["name" => "White", "id" => "1", "rgb" => "242,243,243"],
|
||||
["name" => "Light stone grey", "id" => "208", "rgb" => "229,228,223"],
|
||||
["name" => "Mid gray", "id" => "1002", "rgb" => "205,205,205"],
|
||||
["name" => "Medium stone grey", "id" => "194", "rgb" => "163,162,165"],
|
||||
["name" => "Dark stone grey", "id" => "199", "rgb" => "99,95,98"],
|
||||
["name" => "Black", "id" => "26", "rgb" => "27,42,53"],
|
||||
["name" => "Really black", "id" => "1003", "rgb" => "17,17,17"]
|
||||
];
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function characterBodyColors(Request $request)
|
||||
{
|
||||
$bodyColors = BodyColors::where('user_id', $request->user()->id)->firstOrFail();
|
||||
|
||||
return view('users.charactercolors')->with(['colors' => $bodyColors, 'codes' => $this->colors, 'type' => null]);
|
||||
}
|
||||
|
||||
public function changeBodyColor(Request $request) {
|
||||
$colors = BodyColors::where('user_id', $request->user()->id)->firstOrFail();
|
||||
|
||||
if (!$request->color) {
|
||||
abort(500);
|
||||
}
|
||||
|
||||
if (!$request->part) {
|
||||
abort(500);
|
||||
}
|
||||
|
||||
if (!$this->colors[array_search($request->color, array_column($this->colors, 'id'))]) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
switch ($request->part) {
|
||||
default:
|
||||
abort(500);
|
||||
case "head":
|
||||
$colors->head_color = $request->color;
|
||||
break;
|
||||
case "torso":
|
||||
$colors->torso_color = $request->color;
|
||||
break;
|
||||
case "leftarm":
|
||||
$colors->left_arm_color = $request->color;
|
||||
break;
|
||||
case "leftleg":
|
||||
$colors->left_leg_color = $request->color;
|
||||
break;
|
||||
case "rightarm":
|
||||
$colors->right_arm_color = $request->color;
|
||||
break;
|
||||
case "rightleg":
|
||||
$colors->right_leg_color = $request->color;
|
||||
break;
|
||||
}
|
||||
|
||||
$colors->save();
|
||||
|
||||
if ($colors) {
|
||||
return $this->colors[array_search($request->color, array_column($this->colors, 'id'))]['rgb'];
|
||||
}
|
||||
|
||||
return abort(500);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,272 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Item;
|
||||
use App\Models\OwnedItems;
|
||||
use App\Models\RenderQueue;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use claviska\SimpleImage;
|
||||
use Illuminate\Support\Facades\Response;
|
||||
use App\Rules\AssetTypesRule;
|
||||
|
||||
class CatalogController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function index(Request $request, $requestType)
|
||||
{
|
||||
$type = "Hat";
|
||||
switch ($requestType) {
|
||||
case "hats":
|
||||
default:
|
||||
$type = "Hat";
|
||||
break;
|
||||
case "shirts":
|
||||
$type = "Shirt";
|
||||
break;
|
||||
case "pants":
|
||||
$type = "Pants";
|
||||
break;
|
||||
case "tshirts":
|
||||
$type = "T-Shirt";
|
||||
break;
|
||||
case "images":
|
||||
$type = "Image";
|
||||
break;
|
||||
case "faces":
|
||||
$type = "Face";
|
||||
break;
|
||||
case "gears":
|
||||
$type = "Gear";
|
||||
break;
|
||||
case "heads":
|
||||
$type = "Head";
|
||||
break;
|
||||
case "packages":
|
||||
$type = "Package";
|
||||
break;
|
||||
case "models":
|
||||
$type = "Model";
|
||||
break;
|
||||
}
|
||||
|
||||
$items = Item::where(['type' => $type, 'approved' => true, 'onsale' => true])->orderBy('created_at', 'desc');
|
||||
|
||||
if (request('search')) {
|
||||
$items->where('name', 'LIKE', '%' . request('search') . '%');
|
||||
}
|
||||
|
||||
return view('catalog.index')->with(['items' => $items->paginate(20)->appends($request->all()), 'type' => $type, 'search' => request('search')]);
|
||||
}
|
||||
|
||||
public function item(Request $request, $id)
|
||||
{
|
||||
$item = Item::findOrFail($id);
|
||||
$ownedItem = OwnedItems::where(['user_id' => $request->user()->id, 'item_id' => $item->id])->first();
|
||||
|
||||
return view('catalog.item')->with(['item' => $item, 'ownedItem' => $ownedItem]);
|
||||
}
|
||||
|
||||
public function upload(Request $request)
|
||||
{
|
||||
return view('catalog.upload');
|
||||
}
|
||||
|
||||
public function processupload(Request $request)
|
||||
{
|
||||
// TODO: #1 Modify thumbnail code below for new asset types in the future (audio, mesh, etc.)
|
||||
|
||||
if (! config('app.item_creation_enabled')) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'name' => ['required', 'string', 'max:100'],
|
||||
'description' => ['string', 'max:2000'],
|
||||
'price' => ['required', 'integer', 'min:0', 'max:999999'],
|
||||
'type' => ['required', new AssetTypesRule()],
|
||||
'asset' => ['required', 'max:51200', 'image']
|
||||
]);
|
||||
|
||||
$user = $request->user();
|
||||
|
||||
if ($request['type'] == "Face" && !$user->admin || $request['type'] == "Hat") {
|
||||
return abort(403);
|
||||
}
|
||||
|
||||
if ($user->money < config('app.asset_upload_cost')) {
|
||||
return redirect('/catalog/upload')->with('error', 'You do not have enough money to upload an asset.');
|
||||
}
|
||||
|
||||
$user->money = $user->money - config('app.asset_upload_cost');
|
||||
$user->save();
|
||||
|
||||
$item = Item::create([
|
||||
'name' => $request['name'],
|
||||
'description' => $request['description'],
|
||||
'creator' => $user->id,
|
||||
'price' => $request['price'],
|
||||
'type' => $request['type'],
|
||||
'sales' => 0,
|
||||
'onsale' => true,
|
||||
'approved' => config('app.assets_approved_by_default')
|
||||
]);
|
||||
|
||||
try {
|
||||
$img = new SimpleImage($request->file('asset'));
|
||||
|
||||
switch ($request->type) {
|
||||
case "Face":
|
||||
case "T-Shirt":
|
||||
default:
|
||||
$img->bestFit(250, 250);
|
||||
break;
|
||||
case "Shirt":
|
||||
$img->crop(165, 201, 424, 74);
|
||||
break;
|
||||
case "Pants":
|
||||
$img->crop(217, 482, 371, 355);
|
||||
break;
|
||||
}
|
||||
|
||||
$savePath = storage_path() . "/app/public/items/" . $item->id . '_thumbnail.png';
|
||||
$img->toFile($savePath, 'image/png', 75);
|
||||
} catch (\Exception $exception) {
|
||||
Storage::disk('public')->copy('items/asset-error.png', 'items/' . $item->id . '_thumbnail.png');
|
||||
}
|
||||
|
||||
$request->file('asset')->move(storage_path() . "/app/public/items/", $item->id);
|
||||
|
||||
OwnedItems::create([
|
||||
'user_id' => $user->id,
|
||||
'item_id' => $item->id,
|
||||
'wearing' => false
|
||||
]);
|
||||
|
||||
if ($item->type == "Shirt" || $item->type == "Pants") {
|
||||
RenderQueue::create([
|
||||
'type' => 'clothing',
|
||||
'target_id' => $item->id
|
||||
]);
|
||||
}
|
||||
|
||||
return redirect('/item/' . $item->id)->with('message', 'Item successfully uploaded.');
|
||||
}
|
||||
|
||||
public function configure(Request $request, $id)
|
||||
{
|
||||
$item = Item::findOrFail($id);
|
||||
$user = $request->user();
|
||||
|
||||
if (!$item) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
if (!$user == $item->user && !$user->admin) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
return view('catalog.configure')->with('item', $item);
|
||||
}
|
||||
|
||||
public function processconfigure(Request $request, $id)
|
||||
{
|
||||
$item = Item::findOrFail($id);
|
||||
$user = $request->user();
|
||||
|
||||
if (!$item) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
if (!$user == $item->user && !$user->admin) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'name' => ['required', 'string', 'max:100'],
|
||||
'description' => ['string', 'max:2000'],
|
||||
'price' => ['required', 'integer', 'min:0', 'max:999999'],
|
||||
'xml' => ['string']
|
||||
]);
|
||||
|
||||
$item->name = $request['name'];
|
||||
$item->description = $request['description'];
|
||||
$item->price = $request['price'];
|
||||
$item->onsale = $request->has('onsale'); // check boxes are weird
|
||||
|
||||
if ($item->isXmlAsset()) {
|
||||
$item->thumbnail_url = $request['thumbnailurl'];
|
||||
|
||||
Storage::disk('public')->put('items/' . $item->id, $request['xml']);
|
||||
}
|
||||
|
||||
$item->save();
|
||||
|
||||
return redirect(route('catalog.item', $item->id))->with('message', 'Changes saved successfully.');
|
||||
}
|
||||
|
||||
public function buyitem(Request $request, $id)
|
||||
{
|
||||
$item = Item::findOrFail($id);
|
||||
$ownedItem = OwnedItems::where(['user_id' => $request->user()->id, 'item_id' => $item->id])->first();
|
||||
|
||||
if (!$item->onsale) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
if (!$item->approved) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
if ($ownedItem) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
if ($request->user()->money < $item->price) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
OwnedItems::create([
|
||||
'user_id' => $request->user()->id,
|
||||
'item_id' => $item->id,
|
||||
'wearing' => false
|
||||
]);
|
||||
|
||||
$request->user()->money = $request->user()->money - $item->price;
|
||||
$request->user()->save();
|
||||
|
||||
$item->user->money = $item->user->money + $item->price;
|
||||
$item->user->save();
|
||||
|
||||
$item->sales = $item->sales + 1;
|
||||
$item->save();
|
||||
|
||||
return redirect(route('catalog.item', $item->id))->with('message', 'Item purchased successfully.');
|
||||
}
|
||||
|
||||
public function getthumbnail(Request $request, $id)
|
||||
{
|
||||
$item = Item::findOrFail($id);
|
||||
|
||||
if ($item->thumbnail_url) {
|
||||
return redirect($item->thumbnail_url);
|
||||
}
|
||||
|
||||
$path = 'items/asset-error.png'; // default image (not found)
|
||||
if (Storage::disk('public')->exists('items/' . $item->id . '_thumbnail.png')) {
|
||||
$path = $item->approved ?
|
||||
('items/' . $id . '_thumbnail.png') : // item thumbnail if it's approved
|
||||
'items/asset-notapproved.png'; // not approved image otherwise
|
||||
}
|
||||
|
||||
$response = Response::make(Storage::disk('public')
|
||||
->get($path, 200))
|
||||
->header('Content-Type', 'image/png');
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,158 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Str;
|
||||
use App\Models\Server;
|
||||
use App\Models\GameToken;
|
||||
use App\Models\User;
|
||||
use App\Models\BodyColors;
|
||||
use App\Models\OwnedItems;
|
||||
use App\Models\Item;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Illuminate\Support\Facades\Response;
|
||||
|
||||
class ClientController extends Controller
|
||||
{
|
||||
public function generate(Request $request, $serverId)
|
||||
{
|
||||
if (Server::find($serverId)) {
|
||||
$tokenString = Str::random(20);
|
||||
|
||||
$token = new GameToken;
|
||||
$token->user_id = $request->user()->id;
|
||||
$token->server_id = $serverId;
|
||||
$token->token = $tokenString;
|
||||
$token->save();
|
||||
|
||||
return $tokenString;
|
||||
} else {
|
||||
return abort(404);
|
||||
}
|
||||
}
|
||||
|
||||
public function join(Request $request, $requestToken)
|
||||
{
|
||||
$token = GameToken::where('token', $requestToken)->first();
|
||||
|
||||
if (!$token) {
|
||||
return 'game:SetMessage("Invalid join token. If this error persists, contact us.")';
|
||||
}
|
||||
|
||||
return view('client.join')->with('token', $token);
|
||||
}
|
||||
|
||||
public function host(Request $request, $secret)
|
||||
{
|
||||
$server = Server::where('secret', $secret)->first();
|
||||
|
||||
if (!$server) {
|
||||
return 'print("Invalid server.")';
|
||||
}
|
||||
|
||||
return view('client.host')->with('server', $server);
|
||||
}
|
||||
|
||||
public function admin(Request $request, $secret)
|
||||
{
|
||||
$server = Server::where('secret', $secret)->first();
|
||||
|
||||
if (!$server) {
|
||||
return 'print("Invalid server.")';
|
||||
}
|
||||
|
||||
$admins = User::where('admin', true)->get();
|
||||
|
||||
return view('client.admin')->with(['server' => $server, 'admins' => $admins]);
|
||||
}
|
||||
|
||||
public function bodycolors(Request $request, $id)
|
||||
{
|
||||
$user = User::findOrFail($id);
|
||||
$bodycolors = BodyColors::where('user_id', $user->id)->firstOrFail();
|
||||
|
||||
return view('users.bodycolors')->with('bodycolors', $bodycolors);
|
||||
}
|
||||
|
||||
public function charapp(Request $request, $id)
|
||||
{
|
||||
$user = User::findOrFail($id);
|
||||
|
||||
$appearance = array();
|
||||
$appearance[] = url('/users/' . $user->id . '/bodycolors');
|
||||
|
||||
$wearingItems = OwnedItems::where(['user_id' => $user->id, 'wearing' => true])->get();
|
||||
|
||||
foreach ($wearingItems as $wearingItem) {
|
||||
$item = Item::find($wearingItem->item_id);
|
||||
|
||||
if ($item->approved) {
|
||||
if ($item->isXmlAsset()) {
|
||||
$appearance[] = url('/asset?id=' . $item->id);
|
||||
} else {
|
||||
$appearance[] = url('/xmlasset?id=' . $item->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return join(';', $appearance);
|
||||
}
|
||||
|
||||
public function ping(Request $request, $secret)
|
||||
{
|
||||
$server = Server::where('secret', $secret)->first();
|
||||
|
||||
if (!$server) {
|
||||
return abort(404);
|
||||
}
|
||||
|
||||
Cache::put('server_online' . $server->id, true, Carbon::now()->addMinutes(1));
|
||||
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
public function getuserthumbnail(Request $request)
|
||||
{
|
||||
$user = User::findOrFail($request->userId);
|
||||
|
||||
$path = 'items/asset-error.png'; // default image (not found)
|
||||
if (Storage::disk('public')->exists('users/user_' . $user->id . '.png')) {
|
||||
$path = $user->banned ?
|
||||
'items/asset-notapproved.png' : // user thumbnail if they're not banned
|
||||
('users/user_' . $user->id . '.png'); // otherwise not approved if they're banned
|
||||
}
|
||||
|
||||
$response = Response::make(Storage::disk('public')
|
||||
->get($path, 200))
|
||||
->header('Content-Type', 'image/png');
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function signscript(Request $request)
|
||||
{
|
||||
if (!$request->script) {
|
||||
abort(400);
|
||||
}
|
||||
|
||||
if (!$request->version) {
|
||||
abort(400);
|
||||
}
|
||||
|
||||
$signature = "";
|
||||
openssl_sign("\r\n" . $request->script, $signature, "-----BEGIN RSA PRIVATE KEY-----\nMIICXAIBAAKBgQCz+CJqGw2KhlX4fodgGk93S3jekukBqjXoUARhD5UEFZnjWQxLe/oRNQacHNnsvRlfI0r2Z8IrFiHUA+L7jdVZJG4vdk620OCGUy1xVbdDpV/Ja/4mF7HUC+2n+OMhVunAVX4/1rBWSRyCAl2PJ6ysgkY9DHWtZpXpBLrsdMgsrQIDAQABAoGAYIenbeI00Shc1HyJgDKcjRAeNMP31rzFTWYd8zG4bAhqElehEJve9XvLn9CZ0zFaen0jqCbfLt0gJ+gtx1+8Hr1T9WIfFvvv2MoUN+p5s0r/8DRUpzi2Yv6SfTeJNubO0XctJ4hoIOsLGt4Hik6pmrRhn61bCdav6vNbdVot9MECQQDnUNAx6w7hPRInJh7960yNWiR0HjIFgGtB25RYq4vflshxcVEjPtfkXDNDGzw3xGTGZFXTGQynmUtYR3vik/WPAkEAxyyd6XgY/8kOYCLOcu9JrJCS/iG0WjiqPSep+8HKe9OqXBQqjZNzTQJzCR3ogcPbYfQq7lwcA6n9UJWiSQD0AwJAX2dPVydRrchYclkgsy2XFz20h0fk7av3kOQVnTSzrfYsmc1Y36aNuJvmcKkM/xs7TTAYzcYpF/77ul9RUzQfNQJACUBFRWbSom7QQB7dv/DlVyKP8UXXfqlLHvQMrSjfIsk+DHDTWSgUHuuSNEYzWnOiaPZSWCfnFTR8E5Yfp4xnyQJBAIr5UxtuUY3LaztdQb4m9xwl9dX6E+tUXUu+xmwWbu99VSWfWJ7ppja6gracYqwwf3vlnpS5591Wi6jhrCiwtoo=\n-----END RSA PRIVATE KEY-----", OPENSSL_ALGO_SHA1);
|
||||
|
||||
$base64signature = base64_encode($signature);
|
||||
|
||||
$signedscript = "";
|
||||
if ($request->version == "new") {
|
||||
$signedscript = "--rbxsig%" . $base64signature . "%\r\n" . $request->script;
|
||||
} else {
|
||||
$signedscript = "%" . $base64signature . "%\r\n" . $request->script;
|
||||
}
|
||||
|
||||
return $signedscript;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
||||
use Illuminate\Foundation\Validation\ValidatesRequests;
|
||||
use Illuminate\Routing\Controller as BaseController;
|
||||
|
||||
class Controller extends BaseController
|
||||
{
|
||||
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
|
||||
}
|
||||
|
|
@ -0,0 +1,257 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\ForumCategory;
|
||||
use App\Models\ForumThread;
|
||||
use App\Models\ForumPost;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class ForumController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function index(Request $request)
|
||||
{
|
||||
$categories = ForumCategory::orderBy('priority', 'desc')->take(50)->get();
|
||||
|
||||
return view('forum.index')->with('categories', $categories);
|
||||
}
|
||||
|
||||
public function getcategory(Request $request, $id)
|
||||
{
|
||||
$category = ForumCategory::findOrFail($id);
|
||||
$posts = ForumThread::where('category_id', $id)->orderBy('stickied', 'desc')->orderBy('updated_at', 'desc');
|
||||
|
||||
return view('forum.category')->with(['posts' => $posts->paginate(15), 'category' => $category]);
|
||||
}
|
||||
|
||||
public function createthread(Request $request, $id)
|
||||
{
|
||||
$category = ForumCategory::findOrFail($id);
|
||||
|
||||
if ($category->admin_only) {
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
}
|
||||
|
||||
return view('forum.newpost')->with('category', $category);
|
||||
}
|
||||
|
||||
public function docreatethread(Request $request, $id)
|
||||
{
|
||||
$category = ForumCategory::findOrFail($id);
|
||||
|
||||
if ($category->admin_only) {
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
}
|
||||
|
||||
if (Cache::has('user-posted' . $request->user()->id)) {
|
||||
return redirect(route('forum.createthread', $category->id))->with('error', 'Posts can only be made every ' . config('app.posting_cooldown') . ' seconds.');
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'title' => ['required', 'string', 'max:100'],
|
||||
'body' => ['required', 'string', 'min:3', 'max:2000']
|
||||
]);
|
||||
|
||||
Cache::put('user-posted' . $request->user()->id, true, Carbon::now()->addSeconds(config('app.posting_cooldown')));
|
||||
|
||||
$thread = ForumThread::create([
|
||||
'category_id' => $category->id,
|
||||
'user_id' => $request->user()->id,
|
||||
'title' => $request->title,
|
||||
'body' => $request->body,
|
||||
'stickied' => false,
|
||||
'locked' => false
|
||||
]);
|
||||
|
||||
$category->touch();
|
||||
|
||||
return redirect(route('forum.getthread', $thread->id))->with('message', 'Successfully posted thread.');
|
||||
}
|
||||
|
||||
public function getthread(Request $request, $id)
|
||||
{
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
$replies = ForumPost::where('thread_id', $thread->id)->orderBy('created_at', 'asc');
|
||||
$category = $thread->category;
|
||||
|
||||
return view('forum.post', ['post' => $thread, 'replies' => $replies->paginate(14), 'category' => $category]);
|
||||
}
|
||||
|
||||
public function editthread(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
|
||||
return view('forum.editpost')->with('post', $thread);
|
||||
}
|
||||
|
||||
public function doeditthread(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
|
||||
$request->validate([
|
||||
'title' => ['required', 'string', 'max:100'],
|
||||
'body' => ['required', 'string', 'min:3', 'max:2000']
|
||||
]);
|
||||
|
||||
$thread->title = $request->title;
|
||||
$thread->body = $request->body;
|
||||
$thread->save();
|
||||
|
||||
$thread->category->touch();
|
||||
|
||||
return redirect(route('forum.getthread', $thread->id))->with('message', 'Successfully edited thread.');
|
||||
}
|
||||
|
||||
public function deletethread(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
$category = $thread->category;
|
||||
|
||||
foreach ($thread->replies as $reply) {
|
||||
$reply->delete();
|
||||
}
|
||||
|
||||
$thread->delete();
|
||||
|
||||
return redirect(route('forum.category', $category->id))->with('message', 'Successfully deleted thread.');
|
||||
}
|
||||
|
||||
public function togglestickythread(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
|
||||
$thread->stickied = !$thread->stickied;
|
||||
$thread->save();
|
||||
|
||||
return redirect(route('forum.getthread', $thread->id))->with('message', 'Successfully toggled thread sticky.');
|
||||
}
|
||||
|
||||
public function togglelock(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
|
||||
$thread->locked = !$thread->locked;
|
||||
$thread->save();
|
||||
|
||||
return redirect(route('forum.getthread', $thread->id))->with('message', 'Successfully toggled thread lock.');
|
||||
}
|
||||
|
||||
public function createreply(Request $request, $id)
|
||||
{
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
|
||||
if ($thread->locked) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
return view('forum.newreply')->with('post', $thread);
|
||||
}
|
||||
|
||||
public function docreatereply(Request $request, $id)
|
||||
{
|
||||
$thread = ForumThread::findOrFail($id);
|
||||
|
||||
if ($thread->locked) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
if (Cache::has('user-posted' . $request->user()->id)) {
|
||||
return redirect(route('forum.createreply', $thread->id))->with('error', 'Posts can only be made every ' . config('app.posting_cooldown') . ' seconds.');
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'body' => ['required', 'string', 'min:3', 'max:2000']
|
||||
]);
|
||||
|
||||
Cache::put('user-posted' . $request->user()->id, true, Carbon::now()->addSeconds(config('app.posting_cooldown')));
|
||||
|
||||
$reply = ForumPost::create([
|
||||
'thread_id' => $thread->id,
|
||||
'category_id' => $thread->category->id,
|
||||
'user_id' => $request->user()->id,
|
||||
'body' => $request->body,
|
||||
'stickied' => false
|
||||
]);
|
||||
|
||||
$thread->touch();
|
||||
$thread->category->touch();
|
||||
|
||||
return redirect(route('forum.getthread', $thread->id))->with('message', 'Successfully posted reply.');
|
||||
}
|
||||
|
||||
public function editreply(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$reply = ForumPost::findOrFail($id);
|
||||
|
||||
return view('forum.editreply')->with('reply', $reply);
|
||||
}
|
||||
|
||||
public function doeditreply(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$reply = ForumPost::findOrFail($id);
|
||||
|
||||
$request->validate([
|
||||
'body' => ['required', 'string', 'min:3', 'max:2000']
|
||||
]);
|
||||
|
||||
$reply->body = $request->body;
|
||||
$reply->save();
|
||||
|
||||
$reply->category->touch();
|
||||
|
||||
return redirect(route('forum.getthread', $reply->thread->id))->with('message', 'Successfully edited reply.');
|
||||
}
|
||||
|
||||
public function deletereply(Request $request, $id)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
$reply = ForumPost::findOrFail($id);
|
||||
$thread = $reply->thread;
|
||||
|
||||
$reply->delete();
|
||||
|
||||
return redirect(route('forum.getthread', $thread->id))->with('message', 'Successfully deleted reply.');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Server;
|
||||
|
||||
class HomeController extends Controller
|
||||
{
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the application dashboard.
|
||||
*
|
||||
* @return \Illuminate\Contracts\Support\Renderable
|
||||
*/
|
||||
public function index(Request $request)
|
||||
{
|
||||
$servers = Server::where('creator', $request->user()->id)->get();
|
||||
|
||||
return view('home')->with('servers', $servers);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\RenderQueue;
|
||||
|
||||
class RenderController extends Controller
|
||||
{
|
||||
public function getQueue(Request $request) {
|
||||
$queue = RenderQueue::all();
|
||||
|
||||
$string = '';
|
||||
foreach ($queue as $queueitem) {
|
||||
$string = $string . $queueitem->type . ':' . $queueitem->target_id . ':' . $queueitem->id . ';';
|
||||
}
|
||||
|
||||
return substr_replace($string, "", -1);
|
||||
}
|
||||
|
||||
public function upload(Request $request) {
|
||||
$thumbnailKey = $request->thumbnailkey;
|
||||
$thumbQueueId = $request->thumbqueueid;
|
||||
|
||||
if (!$thumbnailKey == config('app.thumbnail_key')) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
if (!$thumbQueueId) {
|
||||
abort(400);
|
||||
}
|
||||
|
||||
if (!$request->hasFile('file')) {
|
||||
abort(400);
|
||||
}
|
||||
|
||||
$queue = RenderQueue::where(['id' => $thumbQueueId])->firstOrFail();
|
||||
|
||||
if ($queue->type == "user") {
|
||||
$request->file('file')->move(storage_path() . '/app/public/users/', 'user_' . $queue->target_id . '.png');
|
||||
} else {
|
||||
$request->file('file')->move(storage_path() . '/app/public/items/', $queue->target_id . '_thumbnail.png');
|
||||
}
|
||||
|
||||
$queue->delete();
|
||||
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
public function getClothingCharApp(Request $request, $id)
|
||||
{
|
||||
return url('/xmlasset?id=' . $id);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Server;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
class ServersController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function index(Request $request)
|
||||
{
|
||||
$servers = Server::orderBy('updated_at', 'DESC')
|
||||
->paginate(10)
|
||||
->appends($request->all());
|
||||
|
||||
return view('servers.index')->with('servers', $servers);
|
||||
}
|
||||
|
||||
public function server(Request $request, $id)
|
||||
{
|
||||
$server = Server::findOrFail($id);
|
||||
|
||||
return view('servers.server')->with('server', $server);
|
||||
}
|
||||
|
||||
public function create(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'name' => ['required', 'string', 'max:40'],
|
||||
'description' => ['string', 'max:250'],
|
||||
'ipaddress' => ['required', 'string', 'ipv4'],
|
||||
'port' => ['integer']
|
||||
]);
|
||||
|
||||
$server = Server::create([
|
||||
'name' => $request['name'],
|
||||
'description' => $request['description'],
|
||||
'creator' => $request->user()->id,
|
||||
'ip' => $request['ipaddress'],
|
||||
'port' => $request['port'],
|
||||
'secret' => Str::random(20)
|
||||
]);
|
||||
|
||||
return redirect(route('servers.index', $server->id));
|
||||
}
|
||||
|
||||
public function delete(Request $request, $id)
|
||||
{
|
||||
$user = $request->user();
|
||||
$server = Server::findOrFail($id);
|
||||
|
||||
if (!$user == $server->user && !$user->admin) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
$server->delete();
|
||||
|
||||
return redirect(route('servers.index'))->with('message', 'Server successfully deleted.');
|
||||
}
|
||||
|
||||
public function configure(Request $request, $id)
|
||||
{
|
||||
$server = Server::findOrFail($id);
|
||||
$user = $request->user();
|
||||
|
||||
if (!$server) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
if (!$user == $server->user && !$user->admin) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
return view('servers.configure')->with('server', $server);
|
||||
}
|
||||
|
||||
public function processconfigure(Request $request, $id)
|
||||
{
|
||||
$server = Server::findOrFail($id);
|
||||
$user = $request->user();
|
||||
|
||||
if (!$server) {
|
||||
abort(404);
|
||||
}
|
||||
|
||||
if (!$user == $server->user && !$user->admin) {
|
||||
abort(403);
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'name' => ['required', 'string', 'max:40'],
|
||||
'description' => ['string', 'max:250'],
|
||||
'ipaddress' => ['required', 'string', 'ipv4'],
|
||||
'port' => ['integer']
|
||||
]);
|
||||
|
||||
$server->name = $request['name'];
|
||||
$server->description = $request['description'];
|
||||
$server->ip = $request['ipaddress'];
|
||||
$server->port = $request['port'];
|
||||
|
||||
$server->save();
|
||||
|
||||
return redirect(route('servers.server', $server->id))->with('success', 'Changes saved successfully.');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,210 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use App\Models\Server;
|
||||
use App\Models\Item;
|
||||
use App\Models\OwnedItems;
|
||||
use App\Models\BodyColors;
|
||||
use App\Models\RenderQueue;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Arr;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Illuminate\Support\Facades\Response;
|
||||
|
||||
class UsersController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function index(Request $request)
|
||||
{
|
||||
$users = User::query();
|
||||
|
||||
if (request('search')) {
|
||||
$users->where('username', 'LIKE', '%' . request('search') . '%')->orderBy('last_online', 'desc');
|
||||
} else {
|
||||
$users->orderBy('last_online', 'desc');
|
||||
}
|
||||
|
||||
return view('users.index')->with('users', $users->paginate(10)->appends($request->all()));
|
||||
}
|
||||
|
||||
public function me(Request $request)
|
||||
{
|
||||
$servers = Server::where('creator', $request->user()->id)->get();
|
||||
|
||||
return view('users.user')->with('servers', $servers);
|
||||
}
|
||||
|
||||
public function profile(Request $request, $id)
|
||||
{
|
||||
$user = User::findOrFail($id);
|
||||
$servers = Server::where('creator', $user->id)->get();
|
||||
|
||||
return view('users.profile')->with(['user' => $user, 'servers' => $servers]);
|
||||
}
|
||||
|
||||
public function banned(Request $request)
|
||||
{
|
||||
if (!$request->user()->banned) {
|
||||
return redirect(route('home'));
|
||||
}
|
||||
|
||||
return view('users.banned');
|
||||
}
|
||||
|
||||
public function settings(Request $request)
|
||||
{
|
||||
return view('users.settings');
|
||||
}
|
||||
|
||||
public function getthumbnail(Request $request, $id)
|
||||
{
|
||||
$user = User::findOrFail($id);
|
||||
$userInQueue = RenderQueue::where(['type' => 'user', 'target_id' => $user->id])->first();
|
||||
|
||||
$path = 'items/asset-error.png'; // default image (not found)
|
||||
if (Storage::disk('public')->exists('users/user_' . $user->id . '.png')) {
|
||||
$path = $user->banned ?
|
||||
'items/asset-notapproved.png' : // user thumbnail if they're not banned
|
||||
('users/user_' . $user->id . '.png'); // otherwise not approved if they're banned
|
||||
}
|
||||
|
||||
if ($userInQueue) { // if user is in render queue, return loading spinner gif
|
||||
return redirect(asset('images/asset-loading.gif'));
|
||||
}
|
||||
|
||||
$response = Response::make(Storage::disk('public')
|
||||
->get($path, 200))
|
||||
->header('Content-Type', 'image/png');
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function characterItems(Request $request, $requestType)
|
||||
{
|
||||
$type = "Hat";
|
||||
switch ($requestType) {
|
||||
case "hats":
|
||||
default:
|
||||
$type = "Hat";
|
||||
break;
|
||||
case "shirts":
|
||||
$type = "Shirt";
|
||||
break;
|
||||
case "pants":
|
||||
$type = "Pants";
|
||||
break;
|
||||
case "tshirts":
|
||||
$type = "T-Shirt";
|
||||
break;
|
||||
case "images":
|
||||
$type = "Image";
|
||||
break;
|
||||
case "faces":
|
||||
$type = "Face";
|
||||
break;
|
||||
case "gears":
|
||||
$type = "Gear";
|
||||
break;
|
||||
case "heads":
|
||||
$type = "Head";
|
||||
break;
|
||||
case "packages":
|
||||
$type = "Package";
|
||||
break;
|
||||
}
|
||||
|
||||
$items = DB::table('owned_items')
|
||||
->join('items', 'owned_items.item_id', '=', 'items.id')
|
||||
->where('owned_items.user_id', $request->user()->id)
|
||||
->where('items.type', $type)
|
||||
->where('items.approved', 1)
|
||||
->select('items.id', 'items.thumbnail_url', 'items.name', 'items.type', 'owned_items.wearing')
|
||||
->orderBy('owned_items.created_at', 'desc')
|
||||
->get();
|
||||
|
||||
return view('users.characteritems', ['items' => $items, 'type' => $type]);
|
||||
}
|
||||
|
||||
public function toggleWearing(Request $request, $id)
|
||||
{
|
||||
$item = Item::findOrFail($id);
|
||||
$ownedItem = OwnedItems::where(['item_id' => $id, 'user_id' => $request->user()->id])->firstOrFail();
|
||||
|
||||
$wearingItems = DB::table('owned_items')
|
||||
->join('items', 'owned_items.item_id', '=', 'items.id')
|
||||
->where('owned_items.user_id', $request->user()->id)
|
||||
->where('owned_items.wearing', true)
|
||||
->where('items.type', $item->type)
|
||||
->select('owned_items.id', 'owned_items.item_id', 'owned_items.wearing')
|
||||
->get();
|
||||
|
||||
if (!$ownedItem->wearing) {
|
||||
if ($item->type == "Hat") {
|
||||
if (count($wearingItems) >= 5) {
|
||||
$wearingItem = OwnedItems::where(['id' => $wearingItems[0]->id, 'wearing' => true])->first();
|
||||
|
||||
if ($wearingItem) {
|
||||
$wearingItem->wearing = false;
|
||||
$wearingItem->save();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
foreach ($wearingItems as $wearingItem) {
|
||||
$wearingItem = OwnedItems::where(['id' => $wearingItem->id, 'user_id' => $request->user()->id])->first();
|
||||
$wearingItem->wearing = false;
|
||||
$wearingItem->save();
|
||||
}
|
||||
}
|
||||
|
||||
$ownedItem->wearing = true;
|
||||
$ownedItem->save();
|
||||
} else {
|
||||
$ownedItem->wearing = false;
|
||||
$ownedItem->save();
|
||||
}
|
||||
|
||||
return back();
|
||||
}
|
||||
|
||||
public function regenThumbnail(Request $request)
|
||||
{
|
||||
$user = $request->user();
|
||||
$userInQueue = RenderQueue::where(['type' => 'user', 'target_id' => $user->id])->first();
|
||||
|
||||
if ($userInQueue) {
|
||||
return 'INQUEUE';
|
||||
} else {
|
||||
RenderQueue::create([
|
||||
'type' => 'user',
|
||||
'target_id' => $user->id
|
||||
]);
|
||||
|
||||
return 'OK';
|
||||
}
|
||||
}
|
||||
|
||||
public function download(Request $request)
|
||||
{
|
||||
return view('client.download');
|
||||
}
|
||||
|
||||
public function savesettings(Request $request)
|
||||
{
|
||||
$user = $request->user();
|
||||
|
||||
$request->validate([
|
||||
'blurb' => ['max:700']
|
||||
]);
|
||||
|
||||
$user->blurb = $request->blurb;
|
||||
$user->save();
|
||||
|
||||
return redirect(route('users.settings'))->with('message', 'Settings saved successfully.');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\ForumThread;
|
||||
use App\Models\ForumPost;
|
||||
use App\Models\ForumCategory;
|
||||
use App\Models\RenderQueue;
|
||||
use App\Models\User;
|
||||
use App\Models\Item;
|
||||
|
||||
class WelcomeController extends Controller
|
||||
{
|
||||
public function welcome(Request $request)
|
||||
{
|
||||
$announcements = ForumThread::where(['category_id' => 1])->latest()->take(4)->get();
|
||||
$userCount = User::count();
|
||||
$renderQueueCount = RenderQueue::count();
|
||||
$threadCount = ForumThread::count();
|
||||
$postCount = ForumPost::count();
|
||||
$totalPosts = $threadCount + $postCount;
|
||||
$itemCount = Item::count();
|
||||
$newestUser = User::orderBy('joined', 'DESC')->first();
|
||||
|
||||
return view('welcome')->with(
|
||||
[
|
||||
'announcements' => $announcements,
|
||||
'userCount' => $userCount,
|
||||
'renderQueueCount' => $renderQueueCount,
|
||||
'threadCount' => $threadCount,
|
||||
'postCount' => $postCount,
|
||||
'totalPosts' => $totalPosts,
|
||||
'itemCount' => $itemCount,
|
||||
'newestUser' => $newestUser
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,70 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http;
|
||||
|
||||
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
||||
|
||||
class Kernel extends HttpKernel
|
||||
{
|
||||
/**
|
||||
* The application's global HTTP middleware stack.
|
||||
*
|
||||
* These middleware are run during every request to your application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $middleware = [
|
||||
// \App\Http\Middleware\TrustHosts::class,
|
||||
\App\Http\Middleware\TrustProxies::class,
|
||||
\Fruitcake\Cors\HandleCors::class,
|
||||
\App\Http\Middleware\PreventRequestsDuringMaintenance::class,
|
||||
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
|
||||
\App\Http\Middleware\TrimStrings::class,
|
||||
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
|
||||
];
|
||||
|
||||
/**
|
||||
* The application's route middleware groups.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $middlewareGroups = [
|
||||
'web' => [
|
||||
\App\Http\Middleware\EncryptCookies::class,
|
||||
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
|
||||
\Illuminate\Session\Middleware\StartSession::class,
|
||||
// \Illuminate\Session\Middleware\AuthenticateSession::class,
|
||||
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
|
||||
\App\Http\Middleware\VerifyCsrfToken::class,
|
||||
\Illuminate\Routing\Middleware\SubstituteBindings::class,
|
||||
\App\Http\Middleware\UserOnlineMiddleware::class,
|
||||
\App\Http\Middleware\IsBanned::class,
|
||||
\App\Http\Middleware\DailyMoneyMiddleware::class,
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'throttle:api',
|
||||
\Illuminate\Routing\Middleware\SubstituteBindings::class,
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
* The application's route middleware.
|
||||
*
|
||||
* These middleware may be assigned to groups or used individually.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $routeMiddleware = [
|
||||
'auth' => \App\Http\Middleware\Authenticate::class,
|
||||
'admin' => \App\Http\Middleware\IsAdmin::class,
|
||||
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
|
||||
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
|
||||
'can' => \Illuminate\Auth\Middleware\Authorize::class,
|
||||
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
|
||||
'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
|
||||
'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
|
||||
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
|
||||
'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
|
||||
];
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
||||
|
||||
class Authenticate extends Middleware
|
||||
{
|
||||
/**
|
||||
* Get the path the user should be redirected to when they are not authenticated.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return string|null
|
||||
*/
|
||||
protected function redirectTo($request)
|
||||
{
|
||||
if (! $request->expectsJson()) {
|
||||
return route('login');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class DailyMoneyMiddleware
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle(Request $request, Closure $next)
|
||||
{
|
||||
if (Auth::check()) {
|
||||
Auth::user()->last_online = Carbon::now();
|
||||
if(strtotime(Auth::user()->last_daily_reward) < Carbon::now()->timestamp - (86400)) {
|
||||
Auth::user()->money = Auth::user()->money + config('app.daily_reward');
|
||||
Auth::user()->last_daily_reward = Carbon::now();
|
||||
}
|
||||
Auth::user()->save();
|
||||
}
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
|
||||
|
||||
class EncryptCookies extends Middleware
|
||||
{
|
||||
/**
|
||||
* The names of the cookies that should not be encrypted.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
//
|
||||
];
|
||||
}
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class IsAdmin
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle(Request $request, Closure $next)
|
||||
{
|
||||
if (!$request->user()->admin) {
|
||||
return redirect('/home');
|
||||
}
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
class IsBanned
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle(Request $request, Closure $next)
|
||||
{
|
||||
if (Auth::user()) {
|
||||
if (Auth::user()->banned) {
|
||||
if (Route::currentRouteName() != "users.banned" and Route::currentRouteName() != "users.unban") {
|
||||
return redirect('/banned');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
|
||||
|
||||
class PreventRequestsDuringMaintenance extends Middleware
|
||||
{
|
||||
/**
|
||||
* The URIs that should be reachable while maintenance mode is enabled.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
//
|
||||
];
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class RedirectIfAuthenticated
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @param string|null ...$guards
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle(Request $request, Closure $next, ...$guards)
|
||||
{
|
||||
$guards = empty($guards) ? [null] : $guards;
|
||||
|
||||
foreach ($guards as $guard) {
|
||||
if (Auth::guard($guard)->check()) {
|
||||
return redirect(RouteServiceProvider::HOME);
|
||||
}
|
||||
}
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
|
||||
|
||||
class TrimStrings extends Middleware
|
||||
{
|
||||
/**
|
||||
* The names of the attributes that should not be trimmed.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
'current_password',
|
||||
'password',
|
||||
'password_confirmation',
|
||||
];
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Http\Middleware\TrustHosts as Middleware;
|
||||
|
||||
class TrustHosts extends Middleware
|
||||
{
|
||||
/**
|
||||
* Get the host patterns that should be trusted.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function hosts()
|
||||
{
|
||||
return [
|
||||
$this->allSubdomainsOfApplicationUrl(),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Fideloper\Proxy\TrustProxies as Middleware;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class TrustProxies extends Middleware
|
||||
{
|
||||
/**
|
||||
* The trusted proxies for this application.
|
||||
*
|
||||
* @var array|string|null
|
||||
*/
|
||||
protected $proxies;
|
||||
|
||||
/**
|
||||
* The headers that should be used to detect proxies.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
protected $headers = Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_HOST | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO | Request::HEADER_X_FORWARDED_AWS_ELB;
|
||||
}
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\User;
|
||||
use Closure;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
use Carbon\Carbon;
|
||||
|
||||
|
||||
class UserOnlineMiddleware
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle(Request $request, Closure $next)
|
||||
{
|
||||
if (Auth::check()) {
|
||||
Cache::put('last_online' . Auth::user()->id, true, Carbon::now()->addMinutes(1));
|
||||
|
||||
if (isset($_SERVER["HTTP_CF_CONNECTING_IP"])) {
|
||||
$_SERVER['REMOTE_ADDR'] = $_SERVER["HTTP_CF_CONNECTING_IP"];
|
||||
}
|
||||
|
||||
$ip = $_SERVER['REMOTE_ADDR'];
|
||||
|
||||
$user = User::find(Auth::user()->id);
|
||||
$user->update(['last_online' => (new \DateTime())->format("Y-m-d H:i:s"), 'last_ip' => $ip]);
|
||||
if ($user->register_ip == "0.0.0.0") {
|
||||
$user->update(['register_ip' => $ip]);
|
||||
}
|
||||
}
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
||||
|
||||
class VerifyCsrfToken extends Middleware
|
||||
{
|
||||
/**
|
||||
* The URIs that should be excluded from CSRF verification.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
'thumbnail/*'
|
||||
];
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class BodyColors extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
protected $fillable = [
|
||||
'user_id',
|
||||
'head_color',
|
||||
'torso_color',
|
||||
'left_arm_color',
|
||||
'right_arm_color',
|
||||
'left_leg_color',
|
||||
'right_leg_color'
|
||||
];
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\Models\User', 'user_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ForumCategory extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'description',
|
||||
'admin_only',
|
||||
'priority'
|
||||
];
|
||||
|
||||
public function threads()
|
||||
{
|
||||
return $this->hasMany('App\Models\ForumThread', 'category_id');
|
||||
}
|
||||
|
||||
public function posts()
|
||||
{
|
||||
return $this->hasMany('App\Models\ForumPost', 'category_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ForumPost extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'category_id',
|
||||
'thread_id',
|
||||
'user_id',
|
||||
'body',
|
||||
'stickied'
|
||||
];
|
||||
|
||||
public function category()
|
||||
{
|
||||
return $this->belongsTo('App\Models\ForumCategory', 'category_id');
|
||||
}
|
||||
|
||||
public function thread()
|
||||
{
|
||||
return $this->belongsTo('App\Models\ForumThread', 'thread_id');
|
||||
}
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\Models\User', 'user_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ForumThread extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'category_id',
|
||||
'user_id',
|
||||
'title',
|
||||
'body',
|
||||
'stickied',
|
||||
'locked'
|
||||
];
|
||||
|
||||
public function category()
|
||||
{
|
||||
return $this->belongsTo('App\Models\ForumCategory', 'category_id');
|
||||
}
|
||||
|
||||
public function replies()
|
||||
{
|
||||
return $this->hasMany('App\Models\ForumPost', 'thread_id');
|
||||
}
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\Models\User', 'user_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class GameToken extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
public function user() {
|
||||
return $this->belongsTo('App\Models\User', 'user_id');
|
||||
}
|
||||
|
||||
public function server() {
|
||||
return $this->belongsTo('App\Models\Server', 'server_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class InviteKey extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'creator',
|
||||
'token',
|
||||
'uses'
|
||||
];
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\Models\User', 'creator');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Item extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'description',
|
||||
'creator',
|
||||
'price',
|
||||
'onsale',
|
||||
'approved',
|
||||
'type',
|
||||
'sales',
|
||||
'thumbnail_url'
|
||||
];
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\Models\User', 'creator');
|
||||
}
|
||||
|
||||
public function isXmlAsset()
|
||||
{
|
||||
return $this->type == "Hat" || $this->type == "Model" || $this->type == "Gear" || $this->type == "Package" || $this->type == "Head";
|
||||
}
|
||||
|
||||
public function getXmlContents()
|
||||
{
|
||||
if (Storage::disk('public')->exists('items/' . $this->id)) {
|
||||
return Storage::disk('public')->get('items/' . $this->id);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class OwnedItems extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'user_id',
|
||||
'item_id',
|
||||
'wearing'
|
||||
];
|
||||
|
||||
public function user() {
|
||||
return $this->belongsTo('App\Models\User', 'user_id');
|
||||
}
|
||||
|
||||
public function item() {
|
||||
return $this->belongsTo('App\Models\Item', 'item_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class RenderQueue extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = "render_queue";
|
||||
|
||||
protected $fillable = [
|
||||
'type',
|
||||
'target_id'
|
||||
];
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\Models\User', 'target_id');
|
||||
}
|
||||
|
||||
public function item()
|
||||
{
|
||||
return $this->belongsTo('App\Models\Item', 'target_id');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Server extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'description',
|
||||
'creator',
|
||||
'ip',
|
||||
'port',
|
||||
'secret'
|
||||
];
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\Models\User', 'creator');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,89 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
class User extends Authenticatable
|
||||
{
|
||||
use HasFactory, Notifiable;
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'username',
|
||||
'email',
|
||||
'password',
|
||||
'register_ip',
|
||||
'last_ip',
|
||||
'invite_key',
|
||||
'last_online'
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be hidden for arrays.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $hidden = [
|
||||
'email',
|
||||
'password',
|
||||
'remember_token',
|
||||
'register_ip',
|
||||
'last_ip'
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be cast to native types.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $casts = [
|
||||
//'email_verified_at' => 'datetime',
|
||||
];
|
||||
|
||||
protected $dates = [
|
||||
'banned_until',
|
||||
'joined',
|
||||
'last_online'
|
||||
];
|
||||
|
||||
public function threads()
|
||||
{
|
||||
return $this->hasMany('App\Models\ForumThread', 'user_id');
|
||||
}
|
||||
|
||||
public function posts()
|
||||
{
|
||||
return $this->hasMany('App\Models\ForumPost', 'user_id');
|
||||
}
|
||||
|
||||
public function getReadableMoney()
|
||||
{
|
||||
$money = $this->money;
|
||||
|
||||
if ($money < 100000) {
|
||||
// Anything less than one hundred thousand
|
||||
$money_format = number_format($money);
|
||||
} else if ($money < 1000000) {
|
||||
// Anything less than a million
|
||||
$money_format = number_format($money / 1000, 0) . 'K+';
|
||||
} else if ($money < 1000000000) {
|
||||
// Anything less than a billion
|
||||
$money_format = number_format($money / 1000000, 0) . 'M+';
|
||||
} else {
|
||||
// At least a billion
|
||||
$money_format = number_format($money / 1000000000, 1) . 'B+';
|
||||
}
|
||||
|
||||
return $money_format;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\Facades\Blade;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register any application services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
Blade::if('admin', function() {
|
||||
return auth()->user()->admin;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||||
use Illuminate\Support\Facades\Gate;
|
||||
|
||||
class AuthServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* The policy mappings for the application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $policies = [
|
||||
// 'App\Models\Model' => 'App\Policies\ModelPolicy',
|
||||
];
|
||||
|
||||
/**
|
||||
* Register any authentication / authorization services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
$this->registerPolicies();
|
||||
|
||||
//
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\Facades\Broadcast;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class BroadcastServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
Broadcast::routes();
|
||||
|
||||
require base_path('routes/channels.php');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Auth\Events\Registered;
|
||||
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
|
||||
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
||||
use Illuminate\Support\Facades\Event;
|
||||
|
||||
class EventServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* The event listener mappings for the application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $listen = [
|
||||
Registered::class => [
|
||||
SendEmailVerificationNotification::class,
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
* Register any events for your application.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Cache\RateLimiting\Limit;
|
||||
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\RateLimiter;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
class RouteServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* The path to the "home" route for your application.
|
||||
*
|
||||
* This is used by Laravel authentication to redirect users after login.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public const HOME = '/home';
|
||||
|
||||
/**
|
||||
* The controller namespace for the application.
|
||||
*
|
||||
* When present, controller route declarations will automatically be prefixed with this namespace.
|
||||
*
|
||||
* @var string|null
|
||||
*/
|
||||
// protected $namespace = 'App\\Http\\Controllers';
|
||||
|
||||
/**
|
||||
* Define your route model bindings, pattern filters, etc.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
$this->configureRateLimiting();
|
||||
|
||||
$this->routes(function () {
|
||||
Route::prefix('api')
|
||||
->middleware('api')
|
||||
->namespace($this->namespace)
|
||||
->group(base_path('routes/api.php'));
|
||||
|
||||
Route::middleware('web')
|
||||
->namespace($this->namespace)
|
||||
->group(base_path('routes/web.php'));
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Configure the rate limiters for the application.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function configureRateLimiting()
|
||||
{
|
||||
RateLimiter::for('api', function (Request $request) {
|
||||
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
namespace App\Rules;
|
||||
|
||||
use Illuminate\Contracts\Validation\Rule;
|
||||
|
||||
class AssetTypesRule implements Rule
|
||||
{
|
||||
/**
|
||||
* Create a new rule instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine if the validation rule passes.
|
||||
*
|
||||
* @param string $attribute
|
||||
* @param mixed $value
|
||||
* @return bool
|
||||
*/
|
||||
public function passes($attribute, $value)
|
||||
{
|
||||
if ($value == "Shirt" || $value == "Pants" || $value == "Image" || $value == "T-Shirt" || $value == "Face") {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation error message.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function message()
|
||||
{
|
||||
return 'Please select a valid asset type.';
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
|
||||
namespace App\Rules;
|
||||
|
||||
use Illuminate\Contracts\Validation\Rule;
|
||||
use App\Models\InviteKey;
|
||||
|
||||
class InviteKeyRule implements Rule
|
||||
{
|
||||
/**
|
||||
* Create a new rule instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine if the validation rule passes.
|
||||
*
|
||||
* @param string $attribute
|
||||
* @param mixed $value
|
||||
* @return bool
|
||||
*/
|
||||
public function passes($attribute, $value)
|
||||
{
|
||||
$invitekey = InviteKey::where('token', $value)->first();
|
||||
|
||||
if (!$invitekey) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($invitekey->uses < 1) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation error message.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function message()
|
||||
{
|
||||
return 'This invite key is invalid.';
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Register The Auto Loader
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Composer provides a convenient, automatically generated class loader
|
||||
| for our application. We just need to utilize it! We'll require it
|
||||
| into the script here so that we do not have to worry about the
|
||||
| loading of any our classes "manually". Feels great to relax.
|
||||
|
|
||||
*/
|
||||
|
||||
require __DIR__.'/vendor/autoload.php';
|
||||
|
||||
$app = require_once __DIR__.'/bootstrap/app.php';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Run The Artisan Application
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When we run the console application, the current CLI command will be
|
||||
| executed in this console and the response sent back to a terminal
|
||||
| or another output device for the developers. Here goes nothing!
|
||||
|
|
||||
*/
|
||||
|
||||
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
||||
|
||||
$status = $kernel->handle(
|
||||
$input = new Symfony\Component\Console\Input\ArgvInput,
|
||||
new Symfony\Component\Console\Output\ConsoleOutput
|
||||
);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Shutdown The Application
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Once Artisan has finished running, we will fire off the shutdown events
|
||||
| so that any final work may be done by the application before we shut
|
||||
| down the process. This is the last thing to happen to the request.
|
||||
|
|
||||
*/
|
||||
|
||||
$kernel->terminate($input, $status);
|
||||
|
||||
exit($status);
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Create The Application
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The first thing we will do is create a new Laravel application instance
|
||||
| which serves as the "glue" for all the components of Laravel, and is
|
||||
| the IoC container for the system binding all of the various parts.
|
||||
|
|
||||
*/
|
||||
|
||||
$app = new Illuminate\Foundation\Application(
|
||||
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
|
||||
);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Bind Important Interfaces
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Next, we need to bind some important interfaces into the container so
|
||||
| we will be able to resolve them when needed. The kernels serve the
|
||||
| incoming requests to this application from both the web and CLI.
|
||||
|
|
||||
*/
|
||||
|
||||
$app->singleton(
|
||||
Illuminate\Contracts\Http\Kernel::class,
|
||||
App\Http\Kernel::class
|
||||
);
|
||||
|
||||
$app->singleton(
|
||||
Illuminate\Contracts\Console\Kernel::class,
|
||||
App\Console\Kernel::class
|
||||
);
|
||||
|
||||
$app->singleton(
|
||||
Illuminate\Contracts\Debug\ExceptionHandler::class,
|
||||
App\Exceptions\Handler::class
|
||||
);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Return The Application
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This script returns the application instance. The instance is given to
|
||||
| the calling script so we can separate the building of the instances
|
||||
| from the actual running of the application and sending responses.
|
||||
|
|
||||
*/
|
||||
|
||||
return $app;
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
*
|
||||
!.gitignore
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"name": "laravel/laravel",
|
||||
"type": "project",
|
||||
"description": "The Laravel Framework.",
|
||||
"keywords": ["framework", "laravel"],
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
"php": "^7.3|^8.0",
|
||||
"abeautifulsite/simpleimage": "^3.6",
|
||||
"fideloper/proxy": "^4.4",
|
||||
"fruitcake/laravel-cors": "^2.0",
|
||||
"guzzlehttp/guzzle": "^7.0.1",
|
||||
"laravel/framework": "^8.12",
|
||||
"laravel/tinker": "^2.5",
|
||||
"laravel/ui": "^3.2",
|
||||
"parsedown/laravel": "^1.2",
|
||||
"pharaonic/laravel-readable": "^1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"facade/ignition": "^2.5",
|
||||
"fakerphp/faker": "^1.9.1",
|
||||
"laravel/sail": "^1.0.1",
|
||||
"mockery/mockery": "^1.4.2",
|
||||
"nunomaduro/collision": "^5.0",
|
||||
"phpunit/phpunit": "^9.3.3"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/",
|
||||
"Database\\Factories\\": "database/factories/",
|
||||
"Database\\Seeders\\": "database/seeders/"
|
||||
},
|
||||
"files": [
|
||||
"app/External/CloudflareHelper.php",
|
||||
"app/External/SimpleImage.class.php"
|
||||
]
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"post-autoload-dump": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||
"@php artisan package:discover --ansi"
|
||||
],
|
||||
"post-root-package-install": [
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"@php artisan key:generate --ansi"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"dont-discover": []
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"sort-packages": true
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,311 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the name of your application. This value is used when the
|
||||
| framework needs to place the application's name in a notification or
|
||||
| any other location as required by the application or its packages.
|
||||
|
|
||||
*/
|
||||
|
||||
'name' => env('APP_NAME', 'Tadah'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Configuration options for the website.
|
||||
|
|
||||
*/
|
||||
|
||||
// Site settings
|
||||
'server_creation_enabled' => true,
|
||||
'item_creation_enabled' => true,
|
||||
'asset_upload_cost' => 0,
|
||||
'assets_approved_by_default' => true,
|
||||
'thumbnail_key' => 'vubPQLBiNPfW38KLWd5d',
|
||||
'dedicated_key' => 'wBY1uid5uJY2fXA0Hypr',
|
||||
|
||||
// Forum settings
|
||||
'posting_enabled' => true,
|
||||
'posting_cooldown' => 15,
|
||||
|
||||
// Main page quotes
|
||||
'quotes' => [
|
||||
'Come on in tadah.rocks tadah.rocks',
|
||||
'SOTP',
|
||||
'SYOP',
|
||||
'Made you look',
|
||||
'The game',
|
||||
'Can you stop',
|
||||
'looking for a femboy, hit me up',
|
||||
'donate pl0x',
|
||||
'Roblox.com',
|
||||
'Putos pendejos tontaa',
|
||||
'Wanna be friends?',
|
||||
'“Stop trying to kill the part of u that is cringe. Kill the part of u that cringes.” -Jesus',
|
||||
'yall are the appetomy of mental illness',
|
||||
'dudes having a whole ass annuerism',
|
||||
'its treadmill time [ Content Deleted ]',
|
||||
'Anonfiles.com/',
|
||||
'Ignorance is bliss, when tis folly to be wise.',
|
||||
'Null may have deleted general but at least he\'s not a pedo.',
|
||||
'today i put a chicken tikka slice in the oven when i came back from school BUT I ACCIDENTALLY SET THE OVEN TO GRILL AND NOW THE FUCKING THING LOOKS LIKE THIS',
|
||||
'ay bro just warning you, you probably shouldn\'t involve yourself with taskmanager\'s mercury shit he\'s a malicious individual who was behind the leaking of my IP address, and also blatantly stole the name from brent\'s mercury thing',
|
||||
'Nancy Pelosi farting while twerking....Blowing straight dust...',
|
||||
'Hello lets talk',
|
||||
'Yeah',
|
||||
'i dont think it is but that doesnt mean i am into it',
|
||||
'This day just keeps getting better n better! Free food!',
|
||||
'https://twitter.com/i/status/550345227790061570',
|
||||
'need to fart on someone\'s face who wants a pink eye from me',
|
||||
'https://twitter.com/i/status/386917584580665344',
|
||||
'Always love looking back on these dms just to see how carrot turned you into a complete degenerate. Turned from you trying you get client patching help from me to some dumbass bottling thing, then finally they switched to full [ Content Deleted ] mode',
|
||||
'https://twitter.com/i/status/1437064280382205958',
|
||||
'ur such a noob i mean how could you delete the whole winners??? that just wasted my time of even TRYING to get to winners ur just the noobiest thing ive like EVER seen im gonna keep sending you hate messages until ur sorry for deleting the winners. you hear me? GOOD well you better regret doing that cus im gonna spam yo inbox teehehhehehehheeh!!!! when i make a group ill put u in the biggest noob ever rank XD XD XD PWNAGE!!!!!! lolololol ima spam you ur a nooby fail.you are stupid. and you are stupid. and dont forget that you are stupid. your mom is a fail even more of a fail then you. yo mamma so fat when she went outside in a red dress kids yelled HEY KOOLAID!',
|
||||
'got you',
|
||||
'get on fortnite',
|
||||
'Like and RT for your chance to win 100,000 wasps delivered right to your home!!!',
|
||||
'Wanna rp',
|
||||
'this image reminds me of the song Archimedes from TF2',
|
||||
'https://www.youtube.com/watch?v=CMJizXYSiKk',
|
||||
'can you stop writing in shift lock for once',
|
||||
'wouldn\'t want to join shitvival #484637595737595 to begin with lmfao',
|
||||
'"remember when ray leaked like 3 ips on the rblxdev forums" -XlXi, owner of Graphictoria',
|
||||
'footlong meatball on italian herb and cheese with provolone, toasted'
|
||||
],
|
||||
|
||||
// Registration settings
|
||||
'invite_keys_required' => true,
|
||||
'registration_enabled' => true,
|
||||
|
||||
// Currency settings
|
||||
'currency_name' => 'Dahllor',
|
||||
'currency_name_multiple' => 'Dahllors',
|
||||
'daily_reward' => 25,
|
||||
|
||||
// Launcher/client settings
|
||||
'version_string' => '1.0.FUCKCORPORATIONS',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Environment
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the "environment" your application is currently
|
||||
| running in. This may determine how you prefer to configure various
|
||||
| services the application utilizes. Set this in your ".env" file.
|
||||
|
|
||||
*/
|
||||
|
||||
'env' => env('APP_ENV', 'production'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Debug Mode
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When your application is in debug mode, detailed error messages with
|
||||
| stack traces will be shown on every error that occurs within your
|
||||
| application. If disabled, a simple generic error page is shown.
|
||||
|
|
||||
*/
|
||||
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application URL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This URL is used by the console to properly generate URLs when using
|
||||
| the Artisan command line tool. You should set this to the root of
|
||||
| your application so that it is used when running Artisan tasks.
|
||||
|
|
||||
*/
|
||||
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
'asset_url' => env('ASSET_URL', null),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Timezone
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default timezone for your application, which
|
||||
| will be used by the PHP date and date-time functions. We have gone
|
||||
| ahead and set this to a sensible default for you out of the box.
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => 'EST',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Locale Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The application locale determines the default locale that will be used
|
||||
| by the translation service provider. You are free to set this value
|
||||
| to any of the locales which will be supported by the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'locale' => 'en',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Fallback Locale
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The fallback locale determines the locale to use when the current one
|
||||
| is not available. You may change the value to correspond to any of
|
||||
| the language folders that are provided through your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'fallback_locale' => 'en',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Faker Locale
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This locale will be used by the Faker PHP library when generating fake
|
||||
| data for your database seeds. For example, this will be used to get
|
||||
| localized telephone numbers, street address information and more.
|
||||
|
|
||||
*/
|
||||
|
||||
'faker_locale' => 'en_US',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This key is used by the Illuminate encrypter service and should be set
|
||||
| to a random, 32 character string, otherwise these encrypted strings
|
||||
| will not be safe. Please do this before deploying an application!
|
||||
|
|
||||
*/
|
||||
|
||||
'key' => env('APP_KEY'),
|
||||
|
||||
'cipher' => 'AES-256-CBC',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Autoloaded Service Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The service providers listed here will be automatically loaded on the
|
||||
| request to your application. Feel free to add your own services to
|
||||
| this array to grant expanded functionality to your applications.
|
||||
|
|
||||
*/
|
||||
|
||||
'providers' => [
|
||||
|
||||
/*
|
||||
* Laravel Framework Service Providers...
|
||||
*/
|
||||
Illuminate\Auth\AuthServiceProvider::class,
|
||||
Illuminate\Broadcasting\BroadcastServiceProvider::class,
|
||||
Illuminate\Bus\BusServiceProvider::class,
|
||||
Illuminate\Cache\CacheServiceProvider::class,
|
||||
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
||||
Illuminate\Cookie\CookieServiceProvider::class,
|
||||
Illuminate\Database\DatabaseServiceProvider::class,
|
||||
Illuminate\Encryption\EncryptionServiceProvider::class,
|
||||
Illuminate\Filesystem\FilesystemServiceProvider::class,
|
||||
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
|
||||
Illuminate\Hashing\HashServiceProvider::class,
|
||||
Illuminate\Mail\MailServiceProvider::class,
|
||||
Illuminate\Notifications\NotificationServiceProvider::class,
|
||||
Illuminate\Pagination\PaginationServiceProvider::class,
|
||||
Illuminate\Pipeline\PipelineServiceProvider::class,
|
||||
Illuminate\Queue\QueueServiceProvider::class,
|
||||
Illuminate\Redis\RedisServiceProvider::class,
|
||||
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
|
||||
Illuminate\Session\SessionServiceProvider::class,
|
||||
Illuminate\Translation\TranslationServiceProvider::class,
|
||||
Illuminate\Validation\ValidationServiceProvider::class,
|
||||
Illuminate\View\ViewServiceProvider::class,
|
||||
|
||||
/*
|
||||
* Package Service Providers...
|
||||
*/
|
||||
|
||||
/*
|
||||
* Application Service Providers...
|
||||
*/
|
||||
App\Providers\AppServiceProvider::class,
|
||||
App\Providers\AuthServiceProvider::class,
|
||||
// App\Providers\BroadcastServiceProvider::class,
|
||||
App\Providers\EventServiceProvider::class,
|
||||
App\Providers\RouteServiceProvider::class,
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Class Aliases
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This array of class aliases will be registered when this application
|
||||
| is started. However, feel free to register as many as you wish as
|
||||
| the aliases are "lazy" loaded so they don't hinder performance.
|
||||
|
|
||||
*/
|
||||
|
||||
'aliases' => [
|
||||
|
||||
'App' => Illuminate\Support\Facades\App::class,
|
||||
'Arr' => Illuminate\Support\Arr::class,
|
||||
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
||||
'Auth' => Illuminate\Support\Facades\Auth::class,
|
||||
'Blade' => Illuminate\Support\Facades\Blade::class,
|
||||
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
|
||||
'Bus' => Illuminate\Support\Facades\Bus::class,
|
||||
'Cache' => Illuminate\Support\Facades\Cache::class,
|
||||
'Config' => Illuminate\Support\Facades\Config::class,
|
||||
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
||||
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
||||
'Date' => Illuminate\Support\Facades\Date::class,
|
||||
'DB' => Illuminate\Support\Facades\DB::class,
|
||||
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
|
||||
'Event' => Illuminate\Support\Facades\Event::class,
|
||||
'File' => Illuminate\Support\Facades\File::class,
|
||||
'Gate' => Illuminate\Support\Facades\Gate::class,
|
||||
'Hash' => Illuminate\Support\Facades\Hash::class,
|
||||
'Http' => Illuminate\Support\Facades\Http::class,
|
||||
'Lang' => Illuminate\Support\Facades\Lang::class,
|
||||
'Log' => Illuminate\Support\Facades\Log::class,
|
||||
'Mail' => Illuminate\Support\Facades\Mail::class,
|
||||
'Notification' => Illuminate\Support\Facades\Notification::class,
|
||||
'Password' => Illuminate\Support\Facades\Password::class,
|
||||
'Queue' => Illuminate\Support\Facades\Queue::class,
|
||||
'Redirect' => Illuminate\Support\Facades\Redirect::class,
|
||||
// 'Redis' => Illuminate\Support\Facades\Redis::class,
|
||||
'Request' => Illuminate\Support\Facades\Request::class,
|
||||
'Response' => Illuminate\Support\Facades\Response::class,
|
||||
'Route' => Illuminate\Support\Facades\Route::class,
|
||||
'Schema' => Illuminate\Support\Facades\Schema::class,
|
||||
'Session' => Illuminate\Support\Facades\Session::class,
|
||||
'Storage' => Illuminate\Support\Facades\Storage::class,
|
||||
'Str' => Illuminate\Support\Str::class,
|
||||
'URL' => Illuminate\Support\Facades\URL::class,
|
||||
'Validator' => Illuminate\Support\Facades\Validator::class,
|
||||
'View' => Illuminate\Support\Facades\View::class,
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,117 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Defaults
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default authentication "guard" and password
|
||||
| reset options for your application. You may change these defaults
|
||||
| as required, but they're a perfect start for most applications.
|
||||
|
|
||||
*/
|
||||
|
||||
'defaults' => [
|
||||
'guard' => 'web',
|
||||
'passwords' => 'users',
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Guards
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Next, you may define every authentication guard for your application.
|
||||
| Of course, a great default configuration has been defined for you
|
||||
| here which uses session storage and the Eloquent user provider.
|
||||
|
|
||||
| All authentication drivers have a user provider. This defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| mechanisms used by this application to persist your user's data.
|
||||
|
|
||||
| Supported: "session", "token"
|
||||
|
|
||||
*/
|
||||
|
||||
'guards' => [
|
||||
'web' => [
|
||||
'driver' => 'session',
|
||||
'provider' => 'users',
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'driver' => 'token',
|
||||
'provider' => 'users',
|
||||
'hash' => false,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| All authentication drivers have a user provider. This defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| mechanisms used by this application to persist your user's data.
|
||||
|
|
||||
| If you have multiple user tables or models you may configure multiple
|
||||
| sources which represent each model / table. These sources may then
|
||||
| be assigned to any extra authentication guards you have defined.
|
||||
|
|
||||
| Supported: "database", "eloquent"
|
||||
|
|
||||
*/
|
||||
|
||||
'providers' => [
|
||||
'users' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => App\Models\User::class,
|
||||
],
|
||||
|
||||
// 'users' => [
|
||||
// 'driver' => 'database',
|
||||
// 'table' => 'users',
|
||||
// ],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Resetting Passwords
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may specify multiple password reset configurations if you have more
|
||||
| than one user table or model in the application and you want to have
|
||||
| separate password reset settings based on the specific user types.
|
||||
|
|
||||
| The expire time is the number of minutes that the reset token should be
|
||||
| considered valid. This security feature keeps tokens short-lived so
|
||||
| they have less time to be guessed. You may change this as needed.
|
||||
|
|
||||
*/
|
||||
|
||||
'passwords' => [
|
||||
'users' => [
|
||||
'provider' => 'users',
|
||||
'table' => 'password_resets',
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Confirmation Timeout
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define the amount of seconds before a password confirmation
|
||||
| times out and the user is prompted to re-enter their password via the
|
||||
| confirmation screen. By default, the timeout lasts for three hours.
|
||||
|
|
||||
*/
|
||||
|
||||
'password_timeout' => 10800,
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Broadcaster
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default broadcaster that will be used by the
|
||||
| framework when an event needs to be broadcast. You may set this to
|
||||
| any of the connections defined in the "connections" array below.
|
||||
|
|
||||
| Supported: "pusher", "ably", "redis", "log", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('BROADCAST_DRIVER', 'null'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Broadcast Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of the broadcast connections that will be used
|
||||
| to broadcast events to other systems or over websockets. Samples of
|
||||
| each available type of connection are provided inside this array.
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'pusher' => [
|
||||
'driver' => 'pusher',
|
||||
'key' => env('PUSHER_APP_KEY'),
|
||||
'secret' => env('PUSHER_APP_SECRET'),
|
||||
'app_id' => env('PUSHER_APP_ID'),
|
||||
'options' => [
|
||||
'cluster' => env('PUSHER_APP_CLUSTER'),
|
||||
'useTLS' => true,
|
||||
],
|
||||
],
|
||||
|
||||
'ably' => [
|
||||
'driver' => 'ably',
|
||||
'key' => env('ABLY_KEY'),
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'driver' => 'log',
|
||||
],
|
||||
|
||||
'null' => [
|
||||
'driver' => 'null',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,106 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default cache connection that gets used while
|
||||
| using this caching library. This connection is used when another is
|
||||
| not explicitly specified when executing a given caching function.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('CACHE_DRIVER', 'file'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Stores
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of the cache "stores" for your application as
|
||||
| well as their drivers. You may even define multiple stores for the
|
||||
| same cache driver to group types of items stored in your caches.
|
||||
|
|
||||
| Supported drivers: "apc", "array", "database", "file",
|
||||
| "memcached", "redis", "dynamodb", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'stores' => [
|
||||
|
||||
'apc' => [
|
||||
'driver' => 'apc',
|
||||
],
|
||||
|
||||
'array' => [
|
||||
'driver' => 'array',
|
||||
'serialize' => false,
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'table' => 'cache',
|
||||
'connection' => null,
|
||||
'lock_connection' => null,
|
||||
],
|
||||
|
||||
'file' => [
|
||||
'driver' => 'file',
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
],
|
||||
|
||||
'memcached' => [
|
||||
'driver' => 'memcached',
|
||||
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||
'sasl' => [
|
||||
env('MEMCACHED_USERNAME'),
|
||||
env('MEMCACHED_PASSWORD'),
|
||||
],
|
||||
'options' => [
|
||||
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
||||
],
|
||||
'servers' => [
|
||||
[
|
||||
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||
'port' => env('MEMCACHED_PORT', 11211),
|
||||
'weight' => 100,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'cache',
|
||||
'lock_connection' => 'default',
|
||||
],
|
||||
|
||||
'dynamodb' => [
|
||||
'driver' => 'dynamodb',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Key Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing a RAM based store such as APC or Memcached, there might
|
||||
| be other applications utilizing the same cache. So, we'll specify a
|
||||
| value to get prefixed to all our keys so we can avoid collisions.
|
||||
|
|
||||
*/
|
||||
|
||||
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cross-Origin Resource Sharing (CORS) Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure your settings for cross-origin resource sharing
|
||||
| or "CORS". This determines what cross-origin operations may execute
|
||||
| in web browsers. You are free to adjust these settings as needed.
|
||||
|
|
||||
| To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
||||
|
|
||||
*/
|
||||
|
||||
'paths' => ['api/*', 'sanctum/csrf-cookie'],
|
||||
|
||||
'allowed_methods' => ['*'],
|
||||
|
||||
'allowed_origins' => ['*'],
|
||||
|
||||
'allowed_origins_patterns' => [],
|
||||
|
||||
'allowed_headers' => ['*'],
|
||||
|
||||
'exposed_headers' => [],
|
||||
|
||||
'max_age' => 0,
|
||||
|
||||
'supports_credentials' => false,
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,147 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Database Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify which of the database connections below you wish
|
||||
| to use as your default connection for all database work. Of course
|
||||
| you may use many connections at once using the Database library.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('DB_CONNECTION', 'mysql'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Database Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here are each of the database connections setup for your application.
|
||||
| Of course, examples of configuring each database platform that is
|
||||
| supported by Laravel is shown below to make development simple.
|
||||
|
|
||||
|
|
||||
| All database work in Laravel is done through the PHP PDO facilities
|
||||
| so make sure you have the driver for your particular database of
|
||||
| choice installed on your machine before you begin development.
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||
'prefix' => '',
|
||||
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||
],
|
||||
|
||||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => 'utf8mb4',
|
||||
'collation' => 'utf8mb4_unicode_ci',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'pgsql' => [
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '5432'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => 'utf8',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'schema' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
],
|
||||
|
||||
'sqlsrv' => [
|
||||
'driver' => 'sqlsrv',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '1433'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => 'utf8',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migration Repository Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This table keeps track of all the migrations that have already run for
|
||||
| your application. Using this information, we can determine which of
|
||||
| the migrations on disk haven't actually been run in the database.
|
||||
|
|
||||
*/
|
||||
|
||||
'migrations' => 'migrations',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Redis Databases
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Redis is an open source, fast, and advanced key-value store that also
|
||||
| provides a richer body of commands than a typical key-value system
|
||||
| such as APC or Memcached. Laravel makes it easy to dig right in.
|
||||
|
|
||||
*/
|
||||
|
||||
'redis' => [
|
||||
|
||||
'client' => env('REDIS_CLIENT', 'phpredis'),
|
||||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
|
||||
],
|
||||
|
||||
'default' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'password' => env('REDIS_PASSWORD', null),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_DB', '0'),
|
||||
],
|
||||
|
||||
'cache' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'password' => env('REDIS_PASSWORD', null),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_CACHE_DB', '1'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Filesystem Disk
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default filesystem disk that should be used
|
||||
| by the framework. The "local" disk, as well as a variety of cloud
|
||||
| based disks are available to your application. Just store away!
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('FILESYSTEM_DRIVER', 'local'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Filesystem Disks
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure as many filesystem "disks" as you wish, and you
|
||||
| may even configure multiple disks of the same driver. Defaults have
|
||||
| been setup for each driver as an example of the required options.
|
||||
|
|
||||
| Supported Drivers: "local", "ftp", "sftp", "s3"
|
||||
|
|
||||
*/
|
||||
|
||||
'disks' => [
|
||||
|
||||
'local' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app'),
|
||||
],
|
||||
|
||||
'public' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => env('APP_URL').'/storage',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'url' => env('AWS_URL'),
|
||||
'endpoint' => env('AWS_ENDPOINT'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Symbolic Links
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the symbolic links that will be created when the
|
||||
| `storage:link` Artisan command is executed. The array keys should be
|
||||
| the locations of the links and the values should be their targets.
|
||||
|
|
||||
*/
|
||||
|
||||
'links' => [
|
||||
public_path('storage') => storage_path('app/public'),
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Hash Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default hash driver that will be used to hash
|
||||
| passwords for your application. By default, the bcrypt algorithm is
|
||||
| used; however, you remain free to modify this option if you wish.
|
||||
|
|
||||
| Supported: "bcrypt", "argon", "argon2id"
|
||||
|
|
||||
*/
|
||||
|
||||
'driver' => 'bcrypt',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Bcrypt Options
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the configuration options that should be used when
|
||||
| passwords are hashed using the Bcrypt algorithm. This will allow you
|
||||
| to control the amount of time it takes to hash the given password.
|
||||
|
|
||||
*/
|
||||
|
||||
'bcrypt' => [
|
||||
'rounds' => env('BCRYPT_ROUNDS', 10),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Argon Options
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the configuration options that should be used when
|
||||
| passwords are hashed using the Argon algorithm. These will allow you
|
||||
| to control the amount of time it takes to hash the given password.
|
||||
|
|
||||
*/
|
||||
|
||||
'argon' => [
|
||||
'memory' => 1024,
|
||||
'threads' => 2,
|
||||
'time' => 2,
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,105 @@
|
|||
<?php
|
||||
|
||||
use Monolog\Handler\NullHandler;
|
||||
use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Handler\SyslogUdpHandler;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default log channel that gets used when writing
|
||||
| messages to the logs. The name specified in this option should match
|
||||
| one of the channels defined in the "channels" configuration array.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('LOG_CHANNEL', 'stack'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Log Channels
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the log channels for your application. Out of
|
||||
| the box, Laravel uses the Monolog PHP logging library. This gives
|
||||
| you a variety of powerful log handlers / formatters to utilize.
|
||||
|
|
||||
| Available Drivers: "single", "daily", "slack", "syslog",
|
||||
| "errorlog", "monolog",
|
||||
| "custom", "stack"
|
||||
|
|
||||
*/
|
||||
|
||||
'channels' => [
|
||||
'stack' => [
|
||||
'driver' => 'stack',
|
||||
'channels' => ['single'],
|
||||
'ignore_exceptions' => false,
|
||||
],
|
||||
|
||||
'single' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
],
|
||||
|
||||
'daily' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'days' => 14,
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'driver' => 'slack',
|
||||
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||
'username' => 'Laravel Log',
|
||||
'emoji' => ':boom:',
|
||||
'level' => env('LOG_LEVEL', 'critical'),
|
||||
],
|
||||
|
||||
'papertrail' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => SyslogUdpHandler::class,
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_URL'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
],
|
||||
],
|
||||
|
||||
'stderr' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => StreamHandler::class,
|
||||
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||
'with' => [
|
||||
'stream' => 'php://stderr',
|
||||
],
|
||||
],
|
||||
|
||||
'syslog' => [
|
||||
'driver' => 'syslog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
],
|
||||
|
||||
'errorlog' => [
|
||||
'driver' => 'errorlog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
],
|
||||
|
||||
'null' => [
|
||||
'driver' => 'monolog',
|
||||
'handler' => NullHandler::class,
|
||||
],
|
||||
|
||||
'emergency' => [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,110 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Mailer
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default mailer that is used to send any email
|
||||
| messages sent by your application. Alternative mailers may be setup
|
||||
| and used as needed; however, this mailer will be used by default.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('MAIL_MAILER', 'smtp'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Mailer Configurations
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure all of the mailers used by your application plus
|
||||
| their respective settings. Several examples have been configured for
|
||||
| you and you are free to add your own as your application requires.
|
||||
|
|
||||
| Laravel supports a variety of mail "transport" drivers to be used while
|
||||
| sending an e-mail. You will specify which one you are using for your
|
||||
| mailers below. You are free to add additional mailers as required.
|
||||
|
|
||||
| Supported: "smtp", "sendmail", "mailgun", "ses",
|
||||
| "postmark", "log", "array"
|
||||
|
|
||||
*/
|
||||
|
||||
'mailers' => [
|
||||
'smtp' => [
|
||||
'transport' => 'smtp',
|
||||
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
|
||||
'port' => env('MAIL_PORT', 587),
|
||||
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
||||
'username' => env('MAIL_USERNAME'),
|
||||
'password' => env('MAIL_PASSWORD'),
|
||||
'timeout' => null,
|
||||
'auth_mode' => null,
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'transport' => 'ses',
|
||||
],
|
||||
|
||||
'mailgun' => [
|
||||
'transport' => 'mailgun',
|
||||
],
|
||||
|
||||
'postmark' => [
|
||||
'transport' => 'postmark',
|
||||
],
|
||||
|
||||
'sendmail' => [
|
||||
'transport' => 'sendmail',
|
||||
'path' => '/usr/sbin/sendmail -bs',
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'transport' => 'log',
|
||||
'channel' => env('MAIL_LOG_CHANNEL'),
|
||||
],
|
||||
|
||||
'array' => [
|
||||
'transport' => 'array',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global "From" Address
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may wish for all e-mails sent by your application to be sent from
|
||||
| the same address. Here, you may specify a name and address that is
|
||||
| used globally for all e-mails that are sent by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Markdown Mail Settings
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you are using Markdown based email rendering, you may configure your
|
||||
| theme and component paths here, allowing you to customize the design
|
||||
| of the emails. Or, you may simply stick with the Laravel defaults!
|
||||
|
|
||||
*/
|
||||
|
||||
'markdown' => [
|
||||
'theme' => 'default',
|
||||
|
||||
'paths' => [
|
||||
resource_path('views/vendor/mail'),
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Queue Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Laravel's queue API supports an assortment of back-ends via a single
|
||||
| API, giving you convenient access to each back-end using the same
|
||||
| syntax for every one. Here you may define a default connection.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('QUEUE_CONNECTION', 'sync'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Queue Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the connection information for each server that
|
||||
| is used by your application. A default configuration has been added
|
||||
| for each back-end shipped with Laravel. You are free to add more.
|
||||
|
|
||||
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sync' => [
|
||||
'driver' => 'sync',
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'table' => 'jobs',
|
||||
'queue' => 'default',
|
||||
'retry_after' => 90,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'beanstalkd' => [
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => 'localhost',
|
||||
'queue' => 'default',
|
||||
'retry_after' => 90,
|
||||
'block_for' => 0,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'sqs' => [
|
||||
'driver' => 'sqs',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||
'queue' => env('SQS_QUEUE', 'default'),
|
||||
'suffix' => env('SQS_SUFFIX'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => 90,
|
||||
'block_for' => null,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Failed Queue Jobs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options configure the behavior of failed queue job logging so you
|
||||
| can control which database and table are used to store the jobs that
|
||||
| have failed. You may change them to any database / table you wish.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => [
|
||||
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
||||
'database' => env('DB_CONNECTION', 'mysql'),
|
||||
'table' => 'failed_jobs',
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Third Party Services
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This file is for storing the credentials for third party services such
|
||||
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
||||
| location for this type of information, allowing packages to have
|
||||
| a conventional file to locate the various service credentials.
|
||||
|
|
||||
*/
|
||||
|
||||
'mailgun' => [
|
||||
'domain' => env('MAILGUN_DOMAIN'),
|
||||
'secret' => env('MAILGUN_SECRET'),
|
||||
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
||||
],
|
||||
|
||||
'postmark' => [
|
||||
'token' => env('POSTMARK_TOKEN'),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,201 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Session Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default session "driver" that will be used on
|
||||
| requests. By default, we will use the lightweight native driver but
|
||||
| you may specify any of the other wonderful drivers provided here.
|
||||
|
|
||||
| Supported: "file", "cookie", "database", "apc",
|
||||
| "memcached", "redis", "dynamodb", "array"
|
||||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SESSION_DRIVER', 'file'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Lifetime
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the number of minutes that you wish the session
|
||||
| to be allowed to remain idle before it expires. If you want them
|
||||
| to immediately expire on the browser closing, set that option.
|
||||
|
|
||||
*/
|
||||
|
||||
'lifetime' => env('SESSION_LIFETIME', 120),
|
||||
|
||||
'expire_on_close' => false,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Encryption
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option allows you to easily specify that all of your session data
|
||||
| should be encrypted before it is stored. All encryption will be run
|
||||
| automatically by Laravel and you can use the Session like normal.
|
||||
|
|
||||
*/
|
||||
|
||||
'encrypt' => false,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session File Location
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the native session driver, we need a location where session
|
||||
| files may be stored. A default has been set for you but a different
|
||||
| location may be specified. This is only needed for file sessions.
|
||||
|
|
||||
*/
|
||||
|
||||
'files' => storage_path('framework/sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Connection
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" or "redis" session drivers, you may specify a
|
||||
| connection that should be used to manage these sessions. This should
|
||||
| correspond to a connection in your database configuration options.
|
||||
|
|
||||
*/
|
||||
|
||||
'connection' => env('SESSION_CONNECTION', null),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" session driver, you may specify the table we
|
||||
| should use to manage the sessions. Of course, a sensible default is
|
||||
| provided for you; however, you are free to change this as needed.
|
||||
|
|
||||
*/
|
||||
|
||||
'table' => 'sessions',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| While using one of the framework's cache driven session backends you may
|
||||
| list a cache store that should be used for these sessions. This value
|
||||
| must match with one of the application's configured cache "stores".
|
||||
|
|
||||
| Affects: "apc", "dynamodb", "memcached", "redis"
|
||||
|
|
||||
*/
|
||||
|
||||
'store' => env('SESSION_STORE', null),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Sweeping Lottery
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Some session drivers must manually sweep their storage location to get
|
||||
| rid of old sessions from storage. Here are the chances that it will
|
||||
| happen on a given request. By default, the odds are 2 out of 100.
|
||||
|
|
||||
*/
|
||||
|
||||
'lottery' => [2, 100],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may change the name of the cookie used to identify a session
|
||||
| instance by ID. The name specified here will get used every time a
|
||||
| new session cookie is created by the framework for every driver.
|
||||
|
|
||||
*/
|
||||
|
||||
'cookie' => env(
|
||||
'SESSION_COOKIE',
|
||||
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The session cookie path determines the path for which the cookie will
|
||||
| be regarded as available. Typically, this will be the root path of
|
||||
| your application but you are free to change this when necessary.
|
||||
|
|
||||
*/
|
||||
|
||||
'path' => '/',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Domain
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may change the domain of the cookie used to identify a session
|
||||
| in your application. This will determine which domains the cookie is
|
||||
| available to in your application. A sensible default has been set.
|
||||
|
|
||||
*/
|
||||
|
||||
'domain' => env('SESSION_DOMAIN', null),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTPS Only Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By setting this option to true, session cookies will only be sent back
|
||||
| to the server if the browser has a HTTPS connection. This will keep
|
||||
| the cookie from being sent to you if it can not be done securely.
|
||||
|
|
||||
*/
|
||||
|
||||
'secure' => env('SESSION_SECURE_COOKIE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTP Access Only
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will prevent JavaScript from accessing the
|
||||
| value of the cookie and the cookie will only be accessible through
|
||||
| the HTTP protocol. You are free to modify this option if needed.
|
||||
|
|
||||
*/
|
||||
|
||||
'http_only' => true,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Same-Site Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines how your cookies behave when cross-site requests
|
||||
| take place, and can be used to mitigate CSRF attacks. By default, we
|
||||
| will set this value to "lax" since this is a secure default value.
|
||||
|
|
||||
| Supported: "lax", "strict", "none", null
|
||||
|
|
||||
*/
|
||||
|
||||
'same_site' => 'lax',
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| View Storage Paths
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Most templating systems load templates from disk. Here you may specify
|
||||
| an array of paths that should be checked for your views. Of course
|
||||
| the usual Laravel view path has already been registered for you.
|
||||
|
|
||||
*/
|
||||
|
||||
'paths' => [
|
||||
resource_path('views'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Compiled View Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines where all the compiled Blade templates will be
|
||||
| stored for your application. Typically, this is within the storage
|
||||
| directory. However, as usual, you are free to change this value.
|
||||
|
|
||||
*/
|
||||
|
||||
'compiled' => env(
|
||||
'VIEW_COMPILED_PATH',
|
||||
realpath(storage_path('framework/views'))
|
||||
),
|
||||
|
||||
];
|
||||
|
|
@ -0,0 +1 @@
|
|||
*.sqlite*
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\Server;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
class ServerFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = Server::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'name' => $this->faker->sentence($nbWords = 2, $variableNbWords = true),
|
||||
'description' => $this->faker->text(),
|
||||
'creator' => 1,
|
||||
'ip' => '127.0.0.1',
|
||||
'port' => '53640',
|
||||
'secret' => Str::random(10)
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
class UserFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = User::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'username' => $this->faker->firstName() . $this->faker->lastName(),
|
||||
'email' => $this->faker->unique()->safeEmail(),
|
||||
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
|
||||
'remember_token' => Str::random(10),
|
||||
'register_ip' => '127.0.0.1',
|
||||
'last_ip' => '127.0.0.1',
|
||||
'admin' => false
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicate that the model's email address should be unverified.
|
||||
*
|
||||
* @return \Illuminate\Database\Eloquent\Factories\Factory
|
||||
*/
|
||||
public function unverified()
|
||||
{
|
||||
return $this->state(function (array $attributes) {
|
||||
return [
|
||||
'email_verified_at' => null,
|
||||
];
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateUsersTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('username')->unique();
|
||||
$table->string('email')->unique();
|
||||
$table->string('password');
|
||||
$table->string('register_ip');
|
||||
$table->string('last_ip');
|
||||
$table->string('blurb', 2000)->nullable();
|
||||
$table->boolean('admin')->default(false);
|
||||
$table->boolean('banned')->default(false);
|
||||
$table->string('ban_reason')->nullable();
|
||||
$table->datetime('banned_until')->nullable();
|
||||
$table->bigInteger('money')->default(0);
|
||||
$table->string('invite_key')->nullable();
|
||||
$table->rememberToken();
|
||||
$table->datetime('joined')->useCurrent();
|
||||
$table->datetime('last_online')->useCurrent();
|
||||
$table->datetime('last_daily_reward')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('users');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreatePasswordResetsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('password_resets', function (Blueprint $table) {
|
||||
$table->string('email')->index();
|
||||
$table->string('token');
|
||||
$table->datetime('created_at')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('password_resets');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateFailedJobsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('failed_jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('uuid')->unique();
|
||||
$table->text('connection');
|
||||
$table->text('queue');
|
||||
$table->longText('payload');
|
||||
$table->longText('exception');
|
||||
$table->datetime('failed_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('failed_jobs');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateServersTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::dropIfExists('servers');
|
||||
|
||||
Schema::create('servers', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name', 40)->default('My Server');
|
||||
$table->string('description', 250)->default("No description.");
|
||||
$table->bigInteger('creator');
|
||||
$table->string('ip');
|
||||
$table->string('port');
|
||||
$table->string('secret');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('servers');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Arr;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateInviteKeysTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::dropIfExists('invite_keys');
|
||||
|
||||
Schema::create('invite_keys', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->bigInteger('creator')->default(1);
|
||||
$table->string('token');
|
||||
$table->integer('uses')->default(1);
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
DB::table('invite_keys')->insert(
|
||||
array(
|
||||
'creator' => 1,
|
||||
'token' => 'TadahKey-1704developertesting',
|
||||
'uses' => 1
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('invite_keys');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateGameTokensTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('game_tokens', function (Blueprint $table) {
|
||||
$table->string('user_id');
|
||||
$table->string('server_id');
|
||||
$table->string('token');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('game_tokens');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateBodyColorsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('body_colors', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->bigInteger('user_id');
|
||||
$table->integer('head_color')->default(1);
|
||||
$table->integer('torso_color')->default(1010);
|
||||
$table->integer('left_arm_color')->default(1);
|
||||
$table->integer('right_arm_color')->default(1);
|
||||
$table->integer('left_leg_color')->default(26);
|
||||
$table->integer('right_leg_color')->default(26);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('body_colors');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateItemsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('items', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name', 100)->default('New Asset');
|
||||
$table->string('description', 2000)->default('No description.');
|
||||
$table->string('thumbnail_url')->nullable();
|
||||
$table->bigInteger('creator')->default(1);
|
||||
$table->bigInteger('price')->default(0);
|
||||
$table->boolean('onsale')->default(true);
|
||||
$table->boolean('approved')->default(false);
|
||||
$table->string('type');
|
||||
$table->bigInteger('sales')->default(0);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('items');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateOwnedItemsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('owned_items', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->bigInteger('user_id');
|
||||
$table->bigInteger('item_id');
|
||||
$table->boolean('wearing')->default(false);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('owned_items');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateEquippedItemsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('equipped_items', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->bigInteger('user_id');
|
||||
$table->bigInteger('item_id');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('equipped_items');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateRenderQueueTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('render_queue', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('type');
|
||||
$table->bigInteger('target_id');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('render_queue');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateForumCategoriesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('forum_categories', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name', 100);
|
||||
$table->string('description', 250);
|
||||
$table->boolean('admin_only')->default(false);
|
||||
$table->bigInteger('priority');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('forum_categories');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateForumPostsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('forum_posts', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->bigInteger('category_id');
|
||||
$table->bigInteger('thread_id');
|
||||
$table->bigInteger('user_id');
|
||||
$table->string('body', 2000);
|
||||
$table->boolean('stickied')->default(false);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('forum_posts');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateForumThreadsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('forum_threads', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->bigInteger('category_id');
|
||||
$table->bigInteger('user_id');
|
||||
$table->string('title', 100);
|
||||
$table->string('body', 2000);
|
||||
$table->boolean('stickied')->default(false);
|
||||
$table->boolean('locked')->default(false);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('forum_threads');
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
// \App\Models\User::factory(10)->create();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
FROM ubuntu:20.04
|
||||
|
||||
LABEL maintainer="Taylor Otwell"
|
||||
|
||||
ARG WWWGROUP
|
||||
|
||||
WORKDIR /var/www/html
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
ENV TZ=UTC
|
||||
|
||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2 \
|
||||
&& mkdir -p ~/.gnupg \
|
||||
&& chmod 600 ~/.gnupg \
|
||||
&& echo "disable-ipv6" >> ~/.gnupg/dirmngr.conf \
|
||||
&& apt-key adv --homedir ~/.gnupg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E5267A6C \
|
||||
&& apt-key adv --homedir ~/.gnupg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C300EE8C \
|
||||
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y php7.4-cli php7.4-dev \
|
||||
php7.4-pgsql php7.4-sqlite3 php7.4-gd \
|
||||
php7.4-curl php7.4-memcached \
|
||||
php7.4-imap php7.4-mysql php7.4-mbstring \
|
||||
php7.4-xml php7.4-zip php7.4-bcmath php7.4-soap \
|
||||
php7.4-intl php7.4-readline php7.4-pcov \
|
||||
php7.4-msgpack php7.4-igbinary php7.4-ldap \
|
||||
php7.4-redis \
|
||||
&& php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer \
|
||||
&& curl -sL https://deb.nodesource.com/setup_15.x | bash - \
|
||||
&& apt-get install -y nodejs \
|
||||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y yarn \
|
||||
&& apt-get install -y mysql-client \
|
||||
&& apt-get install -y postgresql-client \
|
||||
&& apt-get -y autoremove \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
RUN setcap "cap_net_bind_service=+ep" /usr/bin/php7.4
|
||||
|
||||
RUN groupadd --force -g $WWWGROUP sail
|
||||
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail
|
||||
|
||||
COPY start-container /usr/local/bin/start-container
|
||||
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
||||
COPY php.ini /etc/php/7.4/cli/conf.d/99-sail.ini
|
||||
RUN chmod +x /usr/local/bin/start-container
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
ENTRYPOINT ["start-container"]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
[PHP]
|
||||
post_max_size = 100M
|
||||
upload_max_filesize = 100M
|
||||
variables_order = EGPCS
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [ ! -z "$WWWUSER" ]; then
|
||||
usermod -u $WWWUSER sail
|
||||
fi
|
||||
|
||||
if [ ! -d /.composer ]; then
|
||||
mkdir /.composer
|
||||
fi
|
||||
|
||||
chmod -R ugo+rw /.composer
|
||||
|
||||
if [ $# -gt 0 ];then
|
||||
exec gosu $WWWUSER "$@"
|
||||
else
|
||||
/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|
||||
fi
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
[supervisord]
|
||||
nodaemon=true
|
||||
user=root
|
||||
logfile=/var/log/supervisor/supervisord.log
|
||||
pidfile=/var/run/supervisord.pid
|
||||
|
||||
[program:php]
|
||||
command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80
|
||||
user=sail
|
||||
environment=LARAVEL_SAIL="1"
|
||||
stdout_logfile=/dev/stdout
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/dev/stderr
|
||||
stderr_logfile_maxbytes=0
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
FROM ubuntu:20.04
|
||||
|
||||
LABEL maintainer="Taylor Otwell"
|
||||
|
||||
ARG WWWGROUP
|
||||
|
||||
WORKDIR /var/www/html
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
ENV TZ=UTC
|
||||
|
||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2 \
|
||||
&& mkdir -p ~/.gnupg \
|
||||
&& chmod 600 ~/.gnupg \
|
||||
&& echo "disable-ipv6" >> ~/.gnupg/dirmngr.conf \
|
||||
&& apt-key adv --homedir ~/.gnupg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E5267A6C \
|
||||
&& apt-key adv --homedir ~/.gnupg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C300EE8C \
|
||||
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y php8.0-cli php8.0-dev \
|
||||
php8.0-pgsql php8.0-sqlite3 php8.0-gd \
|
||||
php8.0-curl php8.0-memcached \
|
||||
php8.0-imap php8.0-mysql php8.0-mbstring \
|
||||
php8.0-xml php8.0-zip php8.0-bcmath php8.0-soap \
|
||||
php8.0-intl php8.0-readline \
|
||||
php8.0-msgpack php8.0-igbinary php8.0-ldap \
|
||||
php8.0-redis \
|
||||
&& php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer \
|
||||
&& curl -sL https://deb.nodesource.com/setup_15.x | bash - \
|
||||
&& apt-get install -y nodejs \
|
||||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y yarn \
|
||||
&& apt-get install -y mysql-client \
|
||||
&& apt-get install -y postgresql-client \
|
||||
&& apt-get -y autoremove \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
RUN pecl channel-update https://pecl.php.net/channel.xml \
|
||||
&& pecl install swoole
|
||||
|
||||
RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.0
|
||||
|
||||
RUN groupadd --force -g $WWWGROUP sail
|
||||
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail
|
||||
|
||||
COPY start-container /usr/local/bin/start-container
|
||||
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
||||
COPY php.ini /etc/php/8.0/cli/conf.d/99-sail.ini
|
||||
RUN chmod +x /usr/local/bin/start-container
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
ENTRYPOINT ["start-container"]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue