WIP: Road to 1.0.0 #1
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App;
|
namespace App;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
@ -10,13 +29,10 @@ class Application extends Model
|
||||||
|
|
||||||
'applicantUserID',
|
'applicantUserID',
|
||||||
'applicantFormResponseID',
|
'applicantFormResponseID',
|
||||||
'applicationStatus'
|
'applicationStatus',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function user()
|
public function user()
|
||||||
{
|
{
|
||||||
return $this->belongsTo('App\User', 'applicantUserID', 'id');
|
return $this->belongsTo('App\User', 'applicantUserID', 'id');
|
||||||
|
@ -37,7 +53,6 @@ class Application extends Model
|
||||||
return $this->belongsToMany('App\Vote', 'votes_has_application');
|
return $this->belongsToMany('App\Vote', 'votes_has_application');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function comments()
|
public function comments()
|
||||||
{
|
{
|
||||||
return $this->hasMany('App\Comment', 'applicationID', 'id');
|
return $this->hasMany('App\Comment', 'applicationID', 'id');
|
||||||
|
@ -46,8 +61,7 @@ class Application extends Model
|
||||||
public function setStatus($status)
|
public function setStatus($status)
|
||||||
{
|
{
|
||||||
return $this->update([
|
return $this->update([
|
||||||
'applicationStatus' => $status
|
'applicationStatus' => $status,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App;
|
namespace App;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
@ -13,19 +32,19 @@ class Appointment extends Model
|
||||||
'appointmentStatus',
|
'appointmentStatus',
|
||||||
'appointmentLocation',
|
'appointmentLocation',
|
||||||
'meetingNotes',
|
'meetingNotes',
|
||||||
'userAccepted'
|
'userAccepted',
|
||||||
];
|
];
|
||||||
|
|
||||||
public function application()
|
public function application()
|
||||||
{
|
{
|
||||||
// FIXME: Possible bug here, where laravel looks for the wrong column in the applications table.
|
// FIXME: Possible bug here, where laravel looks for the wrong column in the applications table.
|
||||||
return $this->belongsTo('App\Application', 'id', 'applicationID');
|
return $this->belongsTo('App\Application', 'id', 'applicationID');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setStatus($status)
|
public function setStatus($status)
|
||||||
{
|
{
|
||||||
$this->update([
|
$this->update([
|
||||||
'appointmentStatus' => $status
|
'appointmentStatus' => $status,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
25
app/Ban.php
25
app/Ban.php
|
@ -1,29 +1,46 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App;
|
namespace App;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class Ban extends Model
|
class Ban extends Model
|
||||||
{
|
{
|
||||||
|
|
||||||
public $fillable = [
|
public $fillable = [
|
||||||
|
|
||||||
'userID',
|
'userID',
|
||||||
'reason',
|
'reason',
|
||||||
'bannedUntil',
|
'bannedUntil',
|
||||||
'userAgent',
|
'userAgent',
|
||||||
'authorUserID'
|
'authorUserID',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
public $dates = [
|
public $dates = [
|
||||||
'bannedUntil'
|
'bannedUntil',
|
||||||
];
|
];
|
||||||
|
|
||||||
public function user()
|
public function user()
|
||||||
{
|
{
|
||||||
return $this->belongsTo('App\User', 'userID', 'id');
|
return $this->belongsTo('App\User', 'userID', 'id');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,34 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App;
|
namespace App;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class Comment extends Model
|
class Comment extends Model
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
'authorID',
|
'authorID',
|
||||||
'applicationID',
|
'applicationID',
|
||||||
'text'
|
'text',
|
||||||
];
|
];
|
||||||
|
|
||||||
public function application()
|
public function application()
|
||||||
|
@ -22,5 +40,4 @@ class Comment extends Model
|
||||||
{
|
{
|
||||||
return $this->belongsTo('App\User', 'authorID', 'id');
|
return $this->belongsTo('App\User', 'authorID', 'id');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Console\Commands;
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
|
@ -43,28 +62,23 @@ class CountVotes extends Command
|
||||||
$eligibleApps = Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get();
|
$eligibleApps = Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get();
|
||||||
$pbar = $this->output->createProgressBar($eligibleApps->count());
|
$pbar = $this->output->createProgressBar($eligibleApps->count());
|
||||||
|
|
||||||
if($eligibleApps->isEmpty())
|
if ($eligibleApps->isEmpty()) {
|
||||||
{
|
|
||||||
$this->error('𐄂 There are no applications that need to be processed.');
|
$this->error('𐄂 There are no applications that need to be processed.');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($eligibleApps as $application)
|
foreach ($eligibleApps as $application) {
|
||||||
{
|
|
||||||
$votes = $application->votes;
|
$votes = $application->votes;
|
||||||
$voteCount = $application->votes->count();
|
$voteCount = $application->votes->count();
|
||||||
|
|
||||||
$positiveVotes = 0;
|
$positiveVotes = 0;
|
||||||
$negativeVotes = 0;
|
$negativeVotes = 0;
|
||||||
|
|
||||||
if ($voteCount > 5)
|
if ($voteCount > 5) {
|
||||||
{
|
$this->info('Counting votes for application ID '.$application->id);
|
||||||
$this->info('Counting votes for application ID ' . $application->id);
|
foreach ($votes as $vote) {
|
||||||
foreach ($votes as $vote)
|
switch ($vote->allowedVoteType) {
|
||||||
{
|
|
||||||
switch ($vote->allowedVoteType)
|
|
||||||
{
|
|
||||||
case 'VOTE_APPROVE':
|
case 'VOTE_APPROVE':
|
||||||
$positiveVotes++;
|
$positiveVotes++;
|
||||||
break;
|
break;
|
||||||
|
@ -74,7 +88,7 @@ class CountVotes extends Command
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->info('Total votes for application ID ' . $application->id . ': ' . $voteCount);
|
$this->info('Total votes for application ID '.$application->id.': '.$voteCount);
|
||||||
$this->info('Calculating criteria...');
|
$this->info('Calculating criteria...');
|
||||||
$negativeVotePercent = floor(($negativeVotes / $voteCount) * 100);
|
$negativeVotePercent = floor(($negativeVotes / $voteCount) * 100);
|
||||||
$positiveVotePercent = floor(($positiveVotes / $voteCount) * 100);
|
$positiveVotePercent = floor(($positiveVotes / $voteCount) * 100);
|
||||||
|
@ -83,54 +97,43 @@ class CountVotes extends Command
|
||||||
|
|
||||||
$this->table([
|
$this->table([
|
||||||
'% of approval votes',
|
'% of approval votes',
|
||||||
'% of denial votes'
|
'% of denial votes',
|
||||||
], [ // array of arrays, e.g. rows
|
], [ // array of arrays, e.g. rows
|
||||||
[
|
[
|
||||||
$positiveVotePercent . "%",
|
$positiveVotePercent.'%',
|
||||||
$negativeVotePercent . "%"
|
$negativeVotePercent.'%',
|
||||||
]
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if ($pollResult)
|
if ($pollResult) {
|
||||||
{
|
$this->info('✓ Dispatched promotion event for applicant '.$application->user->name);
|
||||||
$this->info('✓ Dispatched promotion event for applicant ' . $application->user->name);
|
if (! $this->option('dryrun')) {
|
||||||
if (!$this->option('dryrun'))
|
|
||||||
{
|
|
||||||
$application->response->vacancy->vacancyCount -= 1;
|
$application->response->vacancy->vacancyCount -= 1;
|
||||||
$application->response->vacancy->save();
|
$application->response->vacancy->save();
|
||||||
|
|
||||||
event(new ApplicationApprovedEvent(Application::find($application->id)));
|
event(new ApplicationApprovedEvent(Application::find($application->id)));
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$this->warn('Dry run: Event won\'t be dispatched');
|
$this->warn('Dry run: Event won\'t be dispatched');
|
||||||
}
|
}
|
||||||
|
|
||||||
$pbar->advance();
|
$pbar->advance();
|
||||||
|
} else {
|
||||||
}
|
if (! $this->option('dryrun')) {
|
||||||
else {
|
|
||||||
|
|
||||||
if (!$this->option('dryrun'))
|
|
||||||
{
|
|
||||||
event(new ApplicationDeniedEvent(Application::find($application->id)));
|
event(new ApplicationDeniedEvent(Application::find($application->id)));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$this->warn('Dry run: Event won\'t be dispatched');
|
$this->warn('Dry run: Event won\'t be dispatched');
|
||||||
}
|
}
|
||||||
|
|
||||||
$pbar->advance();
|
$pbar->advance();
|
||||||
$this->error('𐄂 Applicant ' . $application->user->name . ' does not meet vote criteria (Majority)');
|
$this->error('𐄂 Applicant '.$application->user->name.' does not meet vote criteria (Majority)');
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$this->warn('Application ID'.$application->id.' did not have enough votes for processing (min 5)');
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
$this->warn("Application ID" . $application->id . " did not have enough votes for processing (min 5)");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$pbar->finish();
|
$pbar->finish();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Console\Commands;
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
use Illuminate\Console\Command;
|
use Illuminate\Console\Command;
|
||||||
|
@ -39,103 +58,89 @@ class Install extends Command
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
$basePath = base_path();
|
$basePath = base_path();
|
||||||
if (Storage::disk('local')->missing('INSTALLED'))
|
if (Storage::disk('local')->missing('INSTALLED')) {
|
||||||
{
|
$this->info('[!! Welcome to Rasberry Teams !!]');
|
||||||
|
$this->info('>> Installing...');
|
||||||
|
$this->call('down', [
|
||||||
|
'--message' => 'Down for maintenance. We\'ll be right back!',
|
||||||
|
]);
|
||||||
|
|
||||||
|
copy($basePath.'/.env.example', $basePath.'/.env');
|
||||||
|
$this->call('key:generate');
|
||||||
|
|
||||||
$this->info('[!! Welcome to Rasberry Teams !!]');
|
$this->info('>> Installing and preparing dependencies. This may take a while, depending on your computer.');
|
||||||
$this->info('>> Installing...');
|
|
||||||
$this->call('down', [
|
|
||||||
'--message' => 'Down for maintenance. We\'ll be right back!'
|
|
||||||
]);
|
|
||||||
|
|
||||||
copy($basePath . '/.env.example', $basePath . '/.env');
|
$npmOut = 0;
|
||||||
$this->call('key:generate');
|
$npmMessages = [];
|
||||||
|
|
||||||
$this->info('>> Installing and preparing dependencies. This may take a while, depending on your computer.');
|
$npmBuildOut = 0;
|
||||||
|
$npmBuildMessages = [];
|
||||||
|
|
||||||
$npmOut = 0;
|
exec('cd '.$basePath.' && npm install --silent', $npmBuildOut, $npmOut);
|
||||||
$npmMessages = [];
|
exec('cd '.$basePath.'&& npm run dev --silent', $npmBuildMessages, $npmBuildOut);
|
||||||
|
|
||||||
$npmBuildOut = 0;
|
if ($npmOut !== 0 && $npmBuildOut !== 0) {
|
||||||
$npmBuildMessages = [];
|
$this->error('[!] One or more errors have ocurred whilst attempting to install dependencies.');
|
||||||
|
$this->error('[!] It is recommended to run this command again, and report a bug if it keeps happening.');
|
||||||
|
|
||||||
exec('cd ' . $basePath . ' && npm install --silent', $npmBuildOut, $npmOut);
|
return false;
|
||||||
exec('cd ' . $basePath . '&& npm run dev --silent', $npmBuildMessages, $npmBuildOut);
|
}
|
||||||
|
|
||||||
|
$settings = [];
|
||||||
|
|
||||||
if($npmOut !== 0 && $npmBuildOut !== 0)
|
$this->info('>> Configuring application - We\'re going to ask a few questions here!');
|
||||||
{
|
do {
|
||||||
$this->error('[!] One or more errors have ocurred whilst attempting to install dependencies.');
|
$this->info('== Database Settings (1/6) ==');
|
||||||
$this->error('[!] It is recommended to run this command again, and report a bug if it keeps happening.');
|
|
||||||
|
|
||||||
return false;
|
$settings['DB_USERNAME'] = $this->ask('Database username');
|
||||||
}
|
$settings['DB_PASSWORD'] = $this->secret('Database password (Input won\'t be seen)');
|
||||||
|
$settings['DB_DATABASE'] = $this->ask('Database name');
|
||||||
|
$settings['DB_PORT'] = $this->ask('Database port');
|
||||||
|
$settings['DB_HOST'] = $this->ask('Database hostname');
|
||||||
|
|
||||||
|
$this->info('== Antispam Settings (2/6) (Recaptcha v2) ==');
|
||||||
|
$settings['RECAPTCHA_SITE_KEY'] = $this->ask('Site key');
|
||||||
|
$settings['RECAPTCHA_PRIVATE_KEY'] = $this->ask('Private site key');
|
||||||
|
|
||||||
|
$this->info('== IP Geolocation Settings (3/6) (refer to README.md) ==');
|
||||||
|
$settings['IPGEO_API_KEY'] = $this->ask('API Key');
|
||||||
|
|
||||||
$settings = [];
|
$this->info('== Notification Settings (4/6) (Email) ==');
|
||||||
|
$settings['MAIL_USERNAME'] = $this->ask('SMTP Username');
|
||||||
|
$settings['MAIL_PASSWORD'] = $this->secret('SMTP Password (Input won\'t be seen)');
|
||||||
|
$settings['MAIL_PORT'] = $this->ask('SMTP Server Port');
|
||||||
|
$settings['MAIL_HOST'] = $this->ask('SMTP Server Hostname');
|
||||||
|
$settings['MAIL_FROM'] = $this->ask('E-mail address to send from: ');
|
||||||
|
|
||||||
$this->info('>> Configuring application - We\'re going to ask a few questions here!');
|
$this->info('== Notification Settings (5/6) (Slack) ==');
|
||||||
do
|
$settings['SLACK_INTEGRATION_WEBHOOK'] = $this->ask('Integration webhook URL');
|
||||||
{
|
|
||||||
$this->info('== Database Settings (1/6) ==');
|
|
||||||
|
|
||||||
$settings['DB_USERNAME'] = $this->ask('Database username');
|
$this->info('== Web Settings (6/6) ==');
|
||||||
$settings['DB_PASSWORD'] = $this->secret('Database password (Input won\'t be seen)');
|
$settings['APP_URL'] = $this->ask('Application\'s URL (ex. https://where.you.installed.theapp.com): ');
|
||||||
$settings['DB_DATABASE'] = $this->ask('Database name');
|
$settings['APP_LOGO'] = $this->ask('App logo (Link to an image): ');
|
||||||
$settings['DB_PORT'] = $this->ask('Database port');
|
$settings['APP_SITEHOMEPAGE'] = $this->ask('Site homepage (appears in the main header): ');
|
||||||
$settings['DB_HOST'] = $this->ask('Database hostname');
|
} while (! $this->confirm('Are you sure you want to save these settings? You can always go back and try again.'));
|
||||||
|
|
||||||
$this->info('== Antispam Settings (2/6) (Recaptcha v2) ==');
|
foreach ($settings as $keyname => $value) {
|
||||||
$settings['RECAPTCHA_SITE_KEY'] = $this->ask('Site key');
|
$this->call('environment:modify', [
|
||||||
$settings['RECAPTCHA_PRIVATE_KEY'] = $this->ask('Private site key');
|
'key' => $keyname,
|
||||||
|
'value' => $value,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
$this->info('== IP Geolocation Settings (3/6) (refer to README.md) ==');
|
$this->info('>> Saved configuration settings!');
|
||||||
$settings['IPGEO_API_KEY'] = $this->ask('API Key');
|
$this->info('>> Preparing database...');
|
||||||
|
|
||||||
$this->info('== Notification Settings (4/6) (Email) ==');
|
$this->callSilent('config:cache');
|
||||||
$settings['MAIL_USERNAME'] = $this->ask('SMTP Username');
|
$this->call('migrate');
|
||||||
$settings['MAIL_PASSWORD'] = $this->secret('SMTP Password (Input won\'t be seen)');
|
$this->call('db:seed');
|
||||||
$settings['MAIL_PORT'] = $this->ask('SMTP Server Port');
|
|
||||||
$settings['MAIL_HOST'] = $this->ask('SMTP Server Hostname');
|
|
||||||
$settings['MAIL_FROM'] = $this->ask('E-mail address to send from: ');
|
|
||||||
|
|
||||||
$this->info('== Notification Settings (5/6) (Slack) ==');
|
touch($basePath.'/INSTALLED');
|
||||||
$settings['SLACK_INTEGRATION_WEBHOOK'] = $this->ask('Integration webhook URL');
|
|
||||||
|
|
||||||
$this->info('== Web Settings (6/6) ==');
|
$this->call('up');
|
||||||
$settings['APP_URL'] = $this->ask('Application\'s URL (ex. https://where.you.installed.theapp.com): ');
|
$this->info('>> All done! Visit '.$basePath.' to start using your brand new installation of Raspberry Teams!');
|
||||||
$settings['APP_LOGO'] = $this->ask('App logo (Link to an image): ');
|
} else {
|
||||||
$settings['APP_SITEHOMEPAGE'] = $this->ask('Site homepage (appears in the main header): ');
|
$this->error('[!] The application is already installed!');
|
||||||
|
|
||||||
|
|
||||||
} while(!$this->confirm('Are you sure you want to save these settings? You can always go back and try again.'));
|
|
||||||
|
|
||||||
foreach($settings as $keyname => $value)
|
|
||||||
{
|
|
||||||
$this->call('environment:modify', [
|
|
||||||
'key' => $keyname,
|
|
||||||
'value' => $value
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->info('>> Saved configuration settings!');
|
|
||||||
$this->info('>> Preparing database...');
|
|
||||||
|
|
||||||
$this->callSilent('config:cache');
|
|
||||||
$this->call('migrate');
|
|
||||||
$this->call('db:seed');
|
|
||||||
|
|
||||||
touch($basePath . '/INSTALLED');
|
|
||||||
|
|
||||||
$this->call('up');
|
|
||||||
$this->info('>> All done! Visit ' . $basePath . ' to start using your brand new installation of Raspberry Teams!');
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$this->error('[!] The application is already installed!');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Console\Commands;
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
use Illuminate\Console\Command;
|
|
||||||
use GeoSot\EnvEditor\Facades\EnvEditor;
|
use GeoSot\EnvEditor\Facades\EnvEditor;
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
|
||||||
class SetEnv extends Command
|
class SetEnv extends Command
|
||||||
{
|
{
|
||||||
|
@ -37,20 +56,16 @@ class SetEnv extends Command
|
||||||
*/
|
*/
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
$path = base_path('/.env');
|
$path = base_path('/.env');
|
||||||
$key = $this->argument('key');
|
$key = $this->argument('key');
|
||||||
$value = $this->argument('value');
|
$value = $this->argument('value');
|
||||||
|
|
||||||
|
if (file_exists($path)) {
|
||||||
|
EnvEditor::editKey($key, $value);
|
||||||
|
} else {
|
||||||
|
$this->error('Cannot update a file that doesn\'t exist! Please create .env first.');
|
||||||
|
|
||||||
|
return false;
|
||||||
if (file_exists($path))
|
}
|
||||||
{
|
|
||||||
EnvEditor::editKey($key, $value);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$this->error('Cannot update a file that doesn\'t exist! Please create .env first.');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,29 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Console;
|
namespace App\Console;
|
||||||
|
|
||||||
|
use App\Jobs\CleanBans;
|
||||||
use Illuminate\Console\Scheduling\Schedule;
|
use Illuminate\Console\Scheduling\Schedule;
|
||||||
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
||||||
use App\Jobs\CleanBans;
|
|
||||||
|
|
||||||
class Kernel extends ConsoleKernel
|
class Kernel extends ConsoleKernel
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\CustomFacades;
|
namespace App\CustomFacades;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Cache;
|
use Illuminate\Support\Facades\Cache;
|
||||||
|
@ -7,7 +26,6 @@ use Illuminate\Support\Facades\Http;
|
||||||
|
|
||||||
class IP
|
class IP
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Looks up information on a specified IP address. Caches results automatically.
|
* Looks up information on a specified IP address. Caches results automatically.
|
||||||
* @param string $IP IP address to lookup
|
* @param string $IP IP address to lookup
|
||||||
|
@ -15,23 +33,18 @@ class IP
|
||||||
*/
|
*/
|
||||||
public function lookup(string $IP): object
|
public function lookup(string $IP): object
|
||||||
{
|
{
|
||||||
|
$params = [
|
||||||
$params = [
|
|
||||||
'apiKey' => config('general.keys.ipapi.apikey'),
|
|
||||||
'ip' => $IP
|
|
||||||
];
|
|
||||||
|
|
||||||
// TODO: Maybe unwrap this? Methods are chained here
|
|
||||||
|
|
||||||
return json_decode(Cache::remember($IP, 3600, function() use ($IP)
|
|
||||||
{
|
|
||||||
return Http::get(config('general.urls.ipapi.ipcheck'), [
|
|
||||||
'apiKey' => config('general.keys.ipapi.apikey'),
|
'apiKey' => config('general.keys.ipapi.apikey'),
|
||||||
'ip' => $IP
|
'ip' => $IP,
|
||||||
])->body();
|
];
|
||||||
}));
|
|
||||||
|
|
||||||
|
// TODO: Maybe unwrap this? Methods are chained here
|
||||||
|
|
||||||
|
return json_decode(Cache::remember($IP, 3600, function () use ($IP) {
|
||||||
|
return Http::get(config('general.urls.ipapi.ipcheck'), [
|
||||||
|
'apiKey' => config('general.keys.ipapi.apikey'),
|
||||||
|
'ip' => $IP,
|
||||||
|
])->body();
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Events;
|
namespace App\Events;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
use Illuminate\Broadcasting\Channel;
|
|
||||||
use Illuminate\Broadcasting\InteractsWithSockets;
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
||||||
use Illuminate\Broadcasting\PresenceChannel;
|
|
||||||
use Illuminate\Broadcasting\PrivateChannel;
|
|
||||||
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
||||||
use Illuminate\Foundation\Events\Dispatchable;
|
use Illuminate\Foundation\Events\Dispatchable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
|
@ -26,6 +41,4 @@ class ApplicationApprovedEvent
|
||||||
{
|
{
|
||||||
$this->application = $application;
|
$this->application = $application;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Events;
|
namespace App\Events;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
use Illuminate\Broadcasting\Channel;
|
|
||||||
use Illuminate\Broadcasting\InteractsWithSockets;
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
||||||
use Illuminate\Broadcasting\PresenceChannel;
|
|
||||||
use Illuminate\Broadcasting\PrivateChannel;
|
|
||||||
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
||||||
use Illuminate\Foundation\Events\Dispatchable;
|
use Illuminate\Foundation\Events\Dispatchable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
|
@ -26,5 +41,4 @@ class ApplicationDeniedEvent
|
||||||
{
|
{
|
||||||
$this->application = $application;
|
$this->application = $application;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Events;
|
namespace App\Events;
|
||||||
|
|
||||||
use Illuminate\Broadcasting\Channel;
|
|
||||||
use Illuminate\Broadcasting\InteractsWithSockets;
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
||||||
use Illuminate\Broadcasting\PresenceChannel;
|
|
||||||
use Illuminate\Broadcasting\PrivateChannel;
|
use Illuminate\Broadcasting\PrivateChannel;
|
||||||
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
||||||
use Illuminate\Foundation\Events\Dispatchable;
|
use Illuminate\Foundation\Events\Dispatchable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
|
|
|
@ -1,23 +1,36 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Events;
|
namespace App\Events;
|
||||||
|
|
||||||
use Illuminate\Broadcasting\Channel;
|
use App\Ban;
|
||||||
|
use App\User;
|
||||||
use Illuminate\Broadcasting\InteractsWithSockets;
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
||||||
use Illuminate\Broadcasting\PresenceChannel;
|
|
||||||
use Illuminate\Broadcasting\PrivateChannel;
|
|
||||||
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
||||||
use Illuminate\Foundation\Events\Dispatchable;
|
use Illuminate\Foundation\Events\Dispatchable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
use App\User;
|
|
||||||
use App\Ban;
|
|
||||||
|
|
||||||
class UserBannedEvent
|
class UserBannedEvent
|
||||||
{
|
{
|
||||||
use Dispatchable, InteractsWithSockets, SerializesModels;
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
||||||
|
|
||||||
|
|
||||||
public $user;
|
public $user;
|
||||||
|
|
||||||
public $ban;
|
public $ban;
|
||||||
|
@ -32,5 +45,4 @@ class UserBannedEvent
|
||||||
$this->user = $user;
|
$this->user = $user;
|
||||||
$this->ban = $ban;
|
$this->ban = $ban;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Exceptions;
|
namespace App\Exceptions;
|
||||||
|
|
||||||
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
||||||
|
|
|
@ -1,14 +1,32 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Facades;
|
namespace App\Facades;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Support\Facades\Facade;
|
||||||
|
|
||||||
class ContextAwareValidation extends Facade
|
class ContextAwareValidation extends Facade
|
||||||
{
|
{
|
||||||
|
protected static function getFacadeAccessor()
|
||||||
protected static function getFacadeAccessor()
|
{
|
||||||
{
|
return 'contextAwareValidator';
|
||||||
return 'contextAwareValidator';
|
}
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Facades;
|
namespace App\Facades;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Support\Facades\Facade;
|
||||||
|
|
|
@ -1,8 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Facades;
|
namespace App\Facades;
|
||||||
use \Illuminate\Support\Facades\Facade;
|
|
||||||
|
use Illuminate\Support\Facades\Facade;
|
||||||
|
|
||||||
class Options extends Facade
|
class Options extends Facade
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Facades;
|
namespace App\Facades;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Support\Facades\Facade;
|
||||||
|
|
21
app/Form.php
21
app/Form.php
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App;
|
namespace App;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
@ -10,7 +29,7 @@ class Form extends Model
|
||||||
|
|
||||||
'formName',
|
'formName',
|
||||||
'formStructure',
|
'formStructure',
|
||||||
'formStatus'
|
'formStatus',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,138 +1,141 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Helpers;
|
namespace App\Helpers;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Validator;
|
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
|
use Illuminate\Support\Facades\Validator;
|
||||||
|
|
||||||
class ContextAwareValidator
|
class ContextAwareValidator
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The excludedNames array will make the validator ignore any of these names when including names into the rules.
|
* The excludedNames array will make the validator ignore any of these names when including names into the rules.
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
private $excludedNames = [
|
private $excludedNames = [
|
||||||
'_token',
|
'_token',
|
||||||
'_method',
|
'_method',
|
||||||
'formName'
|
'formName',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility wrapper for json_encode.
|
* Utility wrapper for json_encode.
|
||||||
*
|
*
|
||||||
* @param array $value The array to be converted.
|
* @param array $value The array to be converted.
|
||||||
* @return string The JSON representation of $value
|
* @return string The JSON representation of $value
|
||||||
*/
|
*/
|
||||||
private function encode(array $value) : string
|
private function encode(array $value): string
|
||||||
{
|
{
|
||||||
return json_encode($value);
|
return json_encode($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The getValidator() method will take an array of fields from the request body, iterates through them,
|
* The getValidator() method will take an array of fields from the request body, iterates through them,
|
||||||
* and dynamically adds validation rules for them. Depending on parameters, it may or may not generate
|
* and dynamically adds validation rules for them. Depending on parameters, it may or may not generate
|
||||||
* a form structure for rendering purposes.
|
* a form structure for rendering purposes.
|
||||||
*
|
*
|
||||||
* This method is mostly meant by internal use by means of static proxies (Facades), in order to reduce code repetition;
|
* This method is mostly meant by internal use by means of static proxies (Facades), in order to reduce code repetition;
|
||||||
* Using it outside it's directed scope may cause unexpected results; For instance, the method expects inputs to be in array format, e.g. myFieldNameID1[],
|
* Using it outside it's directed scope may cause unexpected results; For instance, the method expects inputs to be in array format, e.g. myFieldNameID1[],
|
||||||
* myFieldNameID2[], and so on and so forth.
|
* myFieldNameID2[], and so on and so forth.
|
||||||
*
|
*
|
||||||
* This isn't checked by the code yet, but if you're implementing it this way in the HTML markup, make sure it's consistent (e.g. use a loop).
|
* This isn't checked by the code yet, but if you're implementing it this way in the HTML markup, make sure it's consistent (e.g. use a loop).
|
||||||
*
|
*
|
||||||
* P.S This method automatically ignores the CSRF token for validation.
|
* P.S This method automatically ignores the CSRF token for validation.
|
||||||
*
|
*
|
||||||
* @param array $fields The request form fields
|
* @param array $fields The request form fields
|
||||||
* @param bool $generateStructure Whether to incldue a JSON-ready form structure for rendering
|
* @param bool $generateStructure Whether to incldue a JSON-ready form structure for rendering
|
||||||
* @param bool $includeFormName Whether to include formName in the list of validation rules
|
* @param bool $includeFormName Whether to include formName in the list of validation rules
|
||||||
* @return Validator|Collection A validator instance you can use to check for validity, or a Collection with a validator and structure (validator, structure)
|
* @return Validator|Collection A validator instance you can use to check for validity, or a Collection with a validator and structure (validator, structure)
|
||||||
*/
|
*/
|
||||||
public function getValidator(array $fields, bool $generateStructure = false, bool $includeFormName = false)
|
public function getValidator(array $fields, bool $generateStructure = false, bool $includeFormName = false)
|
||||||
{
|
{
|
||||||
$formStructure = [];
|
$formStructure = [];
|
||||||
$validator = [];
|
$validator = [];
|
||||||
|
|
||||||
if ($includeFormName)
|
if ($includeFormName) {
|
||||||
{
|
|
||||||
$validator['formName'] = 'required|string|max:100';
|
$validator['formName'] = 'required|string|max:100';
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($fields as $fieldName => $field)
|
foreach ($fields as $fieldName => $field) {
|
||||||
{
|
if (! in_array($fieldName, $this->excludedNames)) {
|
||||||
if(!in_array($fieldName, $this->excludedNames))
|
$validator[$fieldName.'.0'] = 'required|string';
|
||||||
{
|
$validator[$fieldName.'.1'] = 'required|string';
|
||||||
$validator[$fieldName . ".0"] = 'required|string';
|
|
||||||
$validator[$fieldName . ".1"] = 'required|string';
|
|
||||||
|
|
||||||
if ($generateStructure)
|
if ($generateStructure) {
|
||||||
{
|
|
||||||
$formStructure['fields'][$fieldName]['title'] = $field[0];
|
$formStructure['fields'][$fieldName]['title'] = $field[0];
|
||||||
$formStructure['fields'][$fieldName]['type'] = $field[1];
|
$formStructure['fields'][$fieldName]['type'] = $field[1];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
$validatorInstance = Validator::make($fields, $validator);
|
||||||
}
|
|
||||||
|
|
||||||
$validatorInstance = Validator::make($fields, $validator);
|
return ($generateStructure) ?
|
||||||
|
|
||||||
return ($generateStructure) ?
|
|
||||||
collect([
|
collect([
|
||||||
'validator' => $validatorInstance,
|
'validator' => $validatorInstance,
|
||||||
'structure' => $this->encode($formStructure)
|
'structure' => $this->encode($formStructure),
|
||||||
])
|
])
|
||||||
: $validatorInstance;
|
: $validatorInstance;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The getResponseValidator method is similar to the getValidator method; It basically takes
|
* The getResponseValidator method is similar to the getValidator method; It basically takes
|
||||||
* an array of fields from a previous form (that probably went through the other method) and adds validation
|
* an array of fields from a previous form (that probably went through the other method) and adds validation
|
||||||
* to the field names.
|
* to the field names.
|
||||||
*
|
*
|
||||||
* Also generates the storable response structure if you tell it to.
|
* Also generates the storable response structure if you tell it to.
|
||||||
*
|
*
|
||||||
* @param array $fields The received fields
|
* @param array $fields The received fields
|
||||||
* @param array $formStructure The form structure - You must supply this if you want the response structure
|
* @param array $formStructure The form structure - You must supply this if you want the response structure
|
||||||
* @param bool $generateResponseStructure Whether to generate the response structure
|
* @param bool $generateResponseStructure Whether to generate the response structure
|
||||||
* @return Validator|Collection A collection or a validator, depending on the args. Will return validatior if only fields are supplied.
|
* @return Validator|Collection A collection or a validator, depending on the args. Will return validatior if only fields are supplied.
|
||||||
*/
|
*/
|
||||||
public function getResponseValidator(array $fields, array $formStructure = [], bool $generateResponseStructure = true)
|
public function getResponseValidator(array $fields, array $formStructure = [], bool $generateResponseStructure = true)
|
||||||
{
|
{
|
||||||
|
$responseStructure = [];
|
||||||
|
$validator = [];
|
||||||
|
|
||||||
$responseStructure = [];
|
if (empty($formStructure) && $generateResponseStructure) {
|
||||||
$validator = [];
|
throw new \InvalidArgumentException('Illegal combination of arguments supplied! Please check the method\'s documentation.');
|
||||||
|
}
|
||||||
|
|
||||||
if (empty($formStructure) && $generateResponseStructure)
|
foreach ($fields as $fieldName => $value) {
|
||||||
{
|
if (! in_array($fieldName, $this->excludedNames)) {
|
||||||
throw new \InvalidArgumentException('Illegal combination of arguments supplied! Please check the method\'s documentation.');
|
$validator[$fieldName] = 'required|string';
|
||||||
}
|
|
||||||
|
|
||||||
foreach($fields as $fieldName => $value)
|
if ($generateResponseStructure) {
|
||||||
{
|
$responseStructure['responses'][$fieldName]['type'] = $formStructure['fields'][$fieldName]['type'] ?? 'Unavailable';
|
||||||
if(!in_array($fieldName, $this->excludedNames))
|
$responseStructure['responses'][$fieldName]['title'] = $formStructure['fields'][$fieldName]['title'];
|
||||||
{
|
$responseStructure['responses'][$fieldName]['response'] = $value;
|
||||||
$validator[$fieldName] = 'required|string';
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($generateResponseStructure)
|
$validatorInstance = Validator::make($fields, $validator);
|
||||||
{
|
|
||||||
$responseStructure['responses'][$fieldName]['type'] = $formStructure['fields'][$fieldName]['type'] ?? 'Unavailable';
|
|
||||||
$responseStructure['responses'][$fieldName]['title'] = $formStructure['fields'][$fieldName]['title'];
|
|
||||||
$responseStructure['responses'][$fieldName]['response'] = $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$validatorInstance = Validator::make($fields, $validator);
|
return ($generateResponseStructure) ?
|
||||||
|
|
||||||
return ($generateResponseStructure) ?
|
|
||||||
collect([
|
collect([
|
||||||
'validator' => $validatorInstance,
|
'validator' => $validatorInstance,
|
||||||
'responseStructure' => $this->encode($responseStructure)
|
'responseStructure' => $this->encode($responseStructure),
|
||||||
])
|
])
|
||||||
: $validatorInstance;
|
: $validatorInstance;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,23 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Helpers;
|
namespace App\Helpers;
|
||||||
|
|
||||||
|
@ -9,20 +27,18 @@ use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class Options
|
class Options
|
||||||
{
|
{
|
||||||
|
|
||||||
public function getOption(string $option): string
|
public function getOption(string $option): string
|
||||||
{
|
{
|
||||||
$value = Cache::get($option);
|
$value = Cache::get($option);
|
||||||
|
|
||||||
if (is_null($value))
|
if (is_null($value)) {
|
||||||
{
|
Log::debug('Option '.$option.'not found in cache, refreshing from database');
|
||||||
Log::debug('Option ' . $option . 'not found in cache, refreshing from database');
|
|
||||||
$value = Option::where('option_name', $option)->first();
|
$value = Option::where('option_name', $option)->first();
|
||||||
if (is_null($value))
|
if (is_null($value)) {
|
||||||
throw new \Exception('This option does not exist.');
|
throw new \Exception('This option does not exist.');
|
||||||
|
}
|
||||||
Cache::put($option, $value);
|
Cache::put($option, $value);
|
||||||
Cache::put($option . '_desc', 'Undefined description');
|
Cache::put($option.'_desc', 'Undefined description');
|
||||||
}
|
}
|
||||||
|
|
||||||
return $value->option_value;
|
return $value->option_value;
|
||||||
|
@ -30,14 +46,14 @@ class Options
|
||||||
|
|
||||||
public function setOption(string $option, string $value, string $description)
|
public function setOption(string $option, string $value, string $description)
|
||||||
{
|
{
|
||||||
Option::create([
|
Option::create([
|
||||||
'option_name' => $option,
|
'option_name' => $option,
|
||||||
'option_value' => $value,
|
'option_value' => $value,
|
||||||
'friendly_name' => $description
|
'friendly_name' => $description,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Cache::put($option, $value, now()->addDay());
|
Cache::put($option, $value, now()->addDay());
|
||||||
Cache::put($option . '_desc', $description, now()->addDay());
|
Cache::put($option.'_desc', $description, now()->addDay());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function pullOption($option): array
|
public function pullOption($option): array
|
||||||
|
@ -48,7 +64,7 @@ class Options
|
||||||
// putMany is overkill here
|
// putMany is overkill here
|
||||||
return [
|
return [
|
||||||
Cache::pull($option),
|
Cache::pull($option),
|
||||||
Cache::pull($option . '_desc')
|
Cache::pull($option.'_desc'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,14 +72,13 @@ class Options
|
||||||
{
|
{
|
||||||
$dbOption = Option::where('option_name', $option);
|
$dbOption = Option::where('option_name', $option);
|
||||||
|
|
||||||
if ($dbOption->first())
|
if ($dbOption->first()) {
|
||||||
{
|
|
||||||
$dbOptionInstance = Option::find($dbOption->first()->id);
|
$dbOptionInstance = Option::find($dbOption->first()->id);
|
||||||
Cache::forget($option);
|
Cache::forget($option);
|
||||||
|
|
||||||
Log::debug('Changing db configuration option', [
|
Log::debug('Changing db configuration option', [
|
||||||
'old_value' => $dbOptionInstance->option_value,
|
'old_value' => $dbOptionInstance->option_value,
|
||||||
'new_value' => $newValue
|
'new_value' => $newValue,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$dbOptionInstance->option_value = $newValue;
|
$dbOptionInstance->option_value = $newValue;
|
||||||
|
@ -71,24 +86,20 @@ class Options
|
||||||
|
|
||||||
Log::debug('New db configuration option saved',
|
Log::debug('New db configuration option saved',
|
||||||
[
|
[
|
||||||
'option' => $dbOptionInstance->option_value
|
'option' => $dbOptionInstance->option_value,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Cache::put('option_name', $newValue, now()->addDay());
|
Cache::put('option_name', $newValue, now()->addDay());
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
throw new \Exception('This option does not exist.');
|
throw new \Exception('This option does not exist.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function optionExists(string $option): bool
|
public function optionExists(string $option): bool
|
||||||
{
|
{
|
||||||
$dbOption = Option::where('option_name', $option)->first();
|
$dbOption = Option::where('option_name', $option)->first();
|
||||||
$locallyCachedOption = Cache::get($option);
|
$locallyCachedOption = Cache::get($option);
|
||||||
|
|
||||||
return !is_null($dbOption) || !is_null($locallyCachedOption);
|
return ! is_null($dbOption) || ! is_null($locallyCachedOption);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,36 +1,46 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
|
|
||||||
use App\Response;
|
|
||||||
use App\Vacancy;
|
|
||||||
use App\User;
|
|
||||||
|
|
||||||
use App\Events\ApplicationDeniedEvent;
|
use App\Events\ApplicationDeniedEvent;
|
||||||
use App\Notifications\NewApplicant;
|
|
||||||
use App\Notifications\ApplicationMoved;
|
use App\Notifications\ApplicationMoved;
|
||||||
|
use App\Notifications\NewApplicant;
|
||||||
|
use App\Response;
|
||||||
|
use App\User;
|
||||||
|
use App\Vacancy;
|
||||||
|
use ContextAwareValidator;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
use Illuminate\Support\Facades\Validator;
|
|
||||||
use Illuminate\Support\Facades\App;
|
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
use ContextAwareValidator;
|
|
||||||
|
|
||||||
class ApplicationController extends Controller
|
class ApplicationController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
private function canVote($votes)
|
private function canVote($votes)
|
||||||
{
|
{
|
||||||
$allvotes = collect([]);
|
$allvotes = collect([]);
|
||||||
|
|
||||||
foreach ($votes as $vote)
|
foreach ($votes as $vote) {
|
||||||
{
|
if ($vote->userID == Auth::user()->id) {
|
||||||
if ($vote->userID == Auth::user()->id)
|
|
||||||
{
|
|
||||||
$allvotes->push($vote);
|
$allvotes->push($vote);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -38,22 +48,17 @@ class ApplicationController extends Controller
|
||||||
return ($allvotes->count() == 1) ? false : true;
|
return ($allvotes->count() == 1) ? false : true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function showUserApps()
|
public function showUserApps()
|
||||||
{
|
{
|
||||||
|
|
||||||
return view('dashboard.user.applications')
|
return view('dashboard.user.applications')
|
||||||
->with('applications', Auth::user()->applications);
|
->with('applications', Auth::user()->applications);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function showUserApp(Request $request, Application $application)
|
public function showUserApp(Request $request, Application $application)
|
||||||
{
|
{
|
||||||
$this->authorize('view', $application);
|
$this->authorize('view', $application);
|
||||||
|
|
||||||
if (!is_null($application))
|
if (! is_null($application)) {
|
||||||
{
|
|
||||||
return view('dashboard.user.viewapp')
|
return view('dashboard.user.viewapp')
|
||||||
->with(
|
->with(
|
||||||
[
|
[
|
||||||
|
@ -62,20 +67,16 @@ class ApplicationController extends Controller
|
||||||
'structuredResponses' => json_decode($application->response->responseData, true),
|
'structuredResponses' => json_decode($application->response->responseData, true),
|
||||||
'formStructure' => $application->response->form,
|
'formStructure' => $application->response->form,
|
||||||
'vacancy' => $application->response->vacancy,
|
'vacancy' => $application->response->vacancy,
|
||||||
'canVote' => $this->canVote($application->votes)
|
'canVote' => $this->canVote($application->votes),
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'The application you requested could not be found.');
|
$request->session()->flash('error', 'The application you requested could not be found.');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function showAllApps()
|
public function showAllApps()
|
||||||
{
|
{
|
||||||
$this->authorize('viewAny', Application::class);
|
$this->authorize('viewAny', Application::class);
|
||||||
|
@ -84,7 +85,6 @@ class ApplicationController extends Controller
|
||||||
->with('applications', Application::paginate(6));
|
->with('applications', Application::paginate(6));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function showAllPendingApps()
|
public function showAllPendingApps()
|
||||||
{
|
{
|
||||||
$this->authorize('viewAny', Application::class);
|
$this->authorize('viewAny', Application::class);
|
||||||
|
@ -93,7 +93,6 @@ class ApplicationController extends Controller
|
||||||
->with('applications', Application::where('applicationStatus', 'STAGE_SUBMITTED')->get());
|
->with('applications', Application::where('applicationStatus', 'STAGE_SUBMITTED')->get());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function showPendingInterview()
|
public function showPendingInterview()
|
||||||
{
|
{
|
||||||
$this->authorize('viewAny', Application::class);
|
$this->authorize('viewAny', Application::class);
|
||||||
|
@ -103,16 +102,12 @@ class ApplicationController extends Controller
|
||||||
$pendingInterviews = collect([]);
|
$pendingInterviews = collect([]);
|
||||||
$upcomingInterviews = collect([]);
|
$upcomingInterviews = collect([]);
|
||||||
|
|
||||||
|
foreach ($applications as $application) {
|
||||||
foreach ($applications as $application)
|
if (! is_null($application->appointment) && $application->appointment->appointmentStatus == 'CONCLUDED') {
|
||||||
{
|
$count = +1;
|
||||||
if (!is_null($application->appointment) && $application->appointment->appointmentStatus == 'CONCLUDED')
|
|
||||||
{
|
|
||||||
$count =+ 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
switch ($application->applicationStatus)
|
switch ($application->applicationStatus) {
|
||||||
{
|
|
||||||
case 'STAGE_INTERVIEW':
|
case 'STAGE_INTERVIEW':
|
||||||
$upcomingInterviews->push($application);
|
$upcomingInterviews->push($application);
|
||||||
|
|
||||||
|
@ -123,29 +118,24 @@ class ApplicationController extends Controller
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return view('dashboard.appmanagement.interview')
|
return view('dashboard.appmanagement.interview')
|
||||||
->with([
|
->with([
|
||||||
'finishedCount' => $count,
|
'finishedCount' => $count,
|
||||||
'applications' => $pendingInterviews,
|
'applications' => $pendingInterviews,
|
||||||
'upcomingApplications' => $upcomingInterviews
|
'upcomingApplications' => $upcomingInterviews,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function showPeerReview()
|
public function showPeerReview()
|
||||||
{
|
{
|
||||||
$this->authorize('viewAny', Application::class);
|
$this->authorize('viewAny', Application::class);
|
||||||
|
|
||||||
return view('dashboard.appmanagement.peerreview')
|
return view('dashboard.appmanagement.peerreview')
|
||||||
->with('applications', Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get());
|
->with('applications', Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function renderApplicationForm(Request $request, $vacancySlug)
|
public function renderApplicationForm(Request $request, $vacancySlug)
|
||||||
{
|
{
|
||||||
// FIXME: Get rid of references to first(), this is a wonky query
|
// FIXME: Get rid of references to first(), this is a wonky query
|
||||||
|
@ -153,36 +143,27 @@ class ApplicationController extends Controller
|
||||||
|
|
||||||
$firstVacancy = $vacancyWithForm->first();
|
$firstVacancy = $vacancyWithForm->first();
|
||||||
|
|
||||||
if (!$vacancyWithForm->isEmpty() && $firstVacancy->vacancyCount !== 0 && $firstVacancy->vacancyStatus == 'OPEN')
|
if (! $vacancyWithForm->isEmpty() && $firstVacancy->vacancyCount !== 0 && $firstVacancy->vacancyStatus == 'OPEN') {
|
||||||
{
|
|
||||||
|
|
||||||
return view('dashboard.application-rendering.apply')
|
return view('dashboard.application-rendering.apply')
|
||||||
->with([
|
->with([
|
||||||
|
|
||||||
'vacancy' => $vacancyWithForm->first(),
|
'vacancy' => $vacancyWithForm->first(),
|
||||||
'preprocessedForm' => json_decode($vacancyWithForm->first()->forms->formStructure, true)
|
'preprocessedForm' => json_decode($vacancyWithForm->first()->forms->formStructure, true),
|
||||||
|
|
||||||
]);
|
]);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
abort(404, 'The application you\'re looking for could not be found or it is currently unavailable.');
|
abort(404, 'The application you\'re looking for could not be found or it is currently unavailable.');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function saveApplicationAnswers(Request $request, $vacancySlug)
|
public function saveApplicationAnswers(Request $request, $vacancySlug)
|
||||||
{
|
{
|
||||||
$vacancy = Vacancy::with('forms')->where('vacancySlug', $vacancySlug)->get();
|
$vacancy = Vacancy::with('forms')->where('vacancySlug', $vacancySlug)->get();
|
||||||
|
|
||||||
if ($vacancy->first()->vacancyCount == 0 || $vacancy->first()->vacancyStatus !== 'OPEN')
|
if ($vacancy->first()->vacancyCount == 0 || $vacancy->first()->vacancyStatus !== 'OPEN') {
|
||||||
{
|
$request->session()->flash('error', 'This application is unavailable.');
|
||||||
|
|
||||||
$request->session()->flash('error', 'This application is unavailable.');
|
|
||||||
return redirect()->back();
|
|
||||||
|
|
||||||
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
Log::info('Processing new application!');
|
Log::info('Processing new application!');
|
||||||
|
@ -192,15 +173,14 @@ class ApplicationController extends Controller
|
||||||
|
|
||||||
Log::info('Built response & validator structure!');
|
Log::info('Built response & validator structure!');
|
||||||
|
|
||||||
if (!$responseValidation->get('validator')->fails())
|
if (! $responseValidation->get('validator')->fails()) {
|
||||||
{
|
|
||||||
$response = Response::create([
|
$response = Response::create([
|
||||||
'responseFormID' => $vacancy->first()->forms->id,
|
'responseFormID' => $vacancy->first()->forms->id,
|
||||||
'associatedVacancyID' => $vacancy->first()->id, // Since a form can be used by multiple vacancies, we can only know which specific vacancy this response ties to by using a vacancy ID
|
'associatedVacancyID' => $vacancy->first()->id, // Since a form can be used by multiple vacancies, we can only know which specific vacancy this response ties to by using a vacancy ID
|
||||||
'responseData' => $responseValidation->get('responseStructure')
|
'responseData' => $responseValidation->get('responseStructure'),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Log::info('Registered form response for user ' . Auth::user()->name . ' for vacancy ' . $vacancy->first()->vacancyName);
|
Log::info('Registered form response for user '.Auth::user()->name.' for vacancy '.$vacancy->first()->vacancyName);
|
||||||
|
|
||||||
$application = Application::create([
|
$application = Application::create([
|
||||||
'applicantUserID' => Auth::user()->id,
|
'applicantUserID' => Auth::user()->id,
|
||||||
|
@ -208,24 +188,20 @@ class ApplicationController extends Controller
|
||||||
'applicationStatus' => 'STAGE_SUBMITTED',
|
'applicationStatus' => 'STAGE_SUBMITTED',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Log::info('Submitted application for user ' . Auth::user()->name . ' with response ID' . $response->id);
|
Log::info('Submitted application for user '.Auth::user()->name.' with response ID'.$response->id);
|
||||||
|
|
||||||
foreach(User::all() as $user)
|
foreach (User::all() as $user) {
|
||||||
{
|
if ($user->hasRole('admin')) {
|
||||||
if ($user->hasRole('admin'))
|
$user->notify((new NewApplicant($application, $vacancy->first()))->delay(now()->addSeconds(10)));
|
||||||
{
|
}
|
||||||
$user->notify((new NewApplicant($application, $vacancy->first()))->delay(now()->addSeconds(10)));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$request->session()->flash('success', 'Thank you for your application! It will be reviewed as soon as possible.');
|
$request->session()->flash('success', 'Thank you for your application! It will be reviewed as soon as possible.');
|
||||||
return redirect()->to(route('showUserApps'));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Log::warning('Application form for ' . Auth::user()->name . ' contained errors, resetting!');
|
|
||||||
$request->session()->flash('error', 'There are one or more errors in your application. Please make sure none of your fields are empty, since they are all required.');
|
|
||||||
|
|
||||||
|
return redirect()->to(route('showUserApps'));
|
||||||
|
} else {
|
||||||
|
Log::warning('Application form for '.Auth::user()->name.' contained errors, resetting!');
|
||||||
|
$request->session()->flash('error', 'There are one or more errors in your application. Please make sure none of your fields are empty, since they are all required.');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
@ -235,15 +211,14 @@ class ApplicationController extends Controller
|
||||||
{
|
{
|
||||||
$this->authorize('update', Application::class);
|
$this->authorize('update', Application::class);
|
||||||
|
|
||||||
switch ($newStatus)
|
switch ($newStatus) {
|
||||||
{
|
|
||||||
case 'deny':
|
case 'deny':
|
||||||
|
|
||||||
event(new ApplicationDeniedEvent($application));
|
event(new ApplicationDeniedEvent($application));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'interview':
|
case 'interview':
|
||||||
Log::info('User ' . Auth::user()->name . ' has moved application ID ' . $application->id . 'to interview stage');
|
Log::info('User '.Auth::user()->name.' has moved application ID '.$application->id.'to interview stage');
|
||||||
$request->session()->flash('success', 'Application moved to interview stage! (:');
|
$request->session()->flash('success', 'Application moved to interview stage! (:');
|
||||||
$application->setStatus('STAGE_INTERVIEW');
|
$application->setStatus('STAGE_INTERVIEW');
|
||||||
|
|
||||||
|
@ -259,13 +234,11 @@ class ApplicationController extends Controller
|
||||||
|
|
||||||
public function delete(Request $request, Application $application)
|
public function delete(Request $request, Application $application)
|
||||||
{
|
{
|
||||||
|
$this->authorize('delete', $application);
|
||||||
|
$application->delete(); // observers will run, cleaning it up
|
||||||
|
|
||||||
$this->authorize('delete', $application);
|
$request->session()->flash('success', 'Application deleted. Comments, appointments and responses have also been deleted.');
|
||||||
$application->delete(); // observers will run, cleaning it up
|
|
||||||
|
|
||||||
$request->session()->flash('success', 'Application deleted. Comments, appointments and responses have also been deleted.');
|
|
||||||
return redirect()->back();
|
|
||||||
|
|
||||||
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,33 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
use App\Http\Requests\SaveNotesRequest;
|
|
||||||
use Carbon\Carbon;
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use App\Appointment;
|
use App\Appointment;
|
||||||
|
use App\Http\Requests\SaveNotesRequest;
|
||||||
use App\Notifications\ApplicationMoved;
|
use App\Notifications\ApplicationMoved;
|
||||||
use App\Notifications\AppointmentScheduled;
|
use App\Notifications\AppointmentScheduled;
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
|
@ -20,7 +39,7 @@ class AppointmentController extends Controller
|
||||||
'DISCORD',
|
'DISCORD',
|
||||||
'SKYPE',
|
'SKYPE',
|
||||||
'MEET',
|
'MEET',
|
||||||
'TEAMSPEAK'
|
'TEAMSPEAK',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -37,26 +56,24 @@ class AppointmentController extends Controller
|
||||||
]);
|
]);
|
||||||
$application->setStatus('STAGE_INTERVIEW_SCHEDULED');
|
$application->setStatus('STAGE_INTERVIEW_SCHEDULED');
|
||||||
|
|
||||||
|
Log::info('User '.Auth::user()->name.' has scheduled an appointment with '.$application->user->name.' for application ID'.$application->id, [
|
||||||
Log::info('User ' . Auth::user()->name . ' has scheduled an appointment with ' . $application->user->name . ' for application ID' . $application->id, [
|
|
||||||
'datetime' => $appointmentDate->toDateTimeString(),
|
'datetime' => $appointmentDate->toDateTimeString(),
|
||||||
'scheduled' => now()
|
'scheduled' => now(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$application->user->notify(new AppointmentScheduled($appointment));
|
$application->user->notify(new AppointmentScheduled($appointment));
|
||||||
$request->session()->flash('success', 'Appointment successfully scheduled @ ' . $appointmentDate->toDateTimeString());
|
$request->session()->flash('success', 'Appointment successfully scheduled @ '.$appointmentDate->toDateTimeString());
|
||||||
|
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function updateAppointment(Request $request, Application $application, $status)
|
public function updateAppointment(Request $request, Application $application, $status)
|
||||||
{
|
{
|
||||||
$this->authorize('update', $application->appointment);
|
$this->authorize('update', $application->appointment);
|
||||||
|
|
||||||
$validStatuses = [
|
$validStatuses = [
|
||||||
'SCHEDULED',
|
'SCHEDULED',
|
||||||
'CONCLUDED'
|
'CONCLUDED',
|
||||||
];
|
];
|
||||||
|
|
||||||
// NOTE: This is a little confusing, refactor
|
// NOTE: This is a little confusing, refactor
|
||||||
|
@ -66,29 +83,25 @@ class AppointmentController extends Controller
|
||||||
$application->setStatus('STAGE_PEERAPPROVAL');
|
$application->setStatus('STAGE_PEERAPPROVAL');
|
||||||
$application->user->notify(new ApplicationMoved());
|
$application->user->notify(new ApplicationMoved());
|
||||||
|
|
||||||
|
|
||||||
$request->session()->flash('success', 'Interview finished! Staff members can now vote on it.');
|
$request->session()->flash('success', 'Interview finished! Staff members can now vote on it.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
// also updates
|
// also updates
|
||||||
public function saveNotes(SaveNotesRequest $request, Application $application)
|
public function saveNotes(SaveNotesRequest $request, Application $application)
|
||||||
{
|
{
|
||||||
if (!is_null($application))
|
if (! is_null($application)) {
|
||||||
{
|
|
||||||
$application->load('appointment');
|
$application->load('appointment');
|
||||||
|
|
||||||
$application->appointment->meetingNotes = $request->noteText;
|
$application->appointment->meetingNotes = $request->noteText;
|
||||||
$application->appointment->save();
|
$application->appointment->save();
|
||||||
|
|
||||||
$request->session()->flash('success', 'Meeting notes have been saved.');
|
$request->session()->flash('success', 'Meeting notes have been saved.');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'There\'s no appointment to save notes to!');
|
$request->session()->flash('error', 'There\'s no appointment to save notes to!');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
namespace App\Http\Controllers\Auth;
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Providers\RouteServiceProvider;
|
|
||||||
use Illuminate\Foundation\Auth\ConfirmsPasswords;
|
use Illuminate\Foundation\Auth\ConfirmsPasswords;
|
||||||
|
|
||||||
class ConfirmPasswordController extends Controller
|
class ConfirmPasswordController extends Controller
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
namespace App\Http\Controllers\Auth;
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
|
|
|
@ -1,10 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
namespace App\Http\Controllers\Auth;
|
||||||
|
|
||||||
use App\User;
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Providers\RouteServiceProvider;
|
use App\User;
|
||||||
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
@ -48,22 +66,15 @@ class LoginController extends Controller
|
||||||
{
|
{
|
||||||
$user = User::where('email', $request->email)->first();
|
$user = User::where('email', $request->email)->first();
|
||||||
|
|
||||||
if ($user)
|
if ($user) {
|
||||||
{
|
|
||||||
$isBanned = $user->isBanned();
|
$isBanned = $user->isBanned();
|
||||||
if ($isBanned)
|
if ($isBanned) {
|
||||||
{
|
|
||||||
return false;
|
return false;
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
return $this->originalAttemptLogin($request);
|
return $this->originalAttemptLogin($request);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->originalAttemptLogin($request);
|
return $this->originalAttemptLogin($request);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,32 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
namespace App\Http\Controllers\Auth;
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Profile;
|
use App\Profile;
|
||||||
use App\Providers\RouteServiceProvider;
|
|
||||||
use App\User;
|
use App\User;
|
||||||
use Illuminate\Foundation\Auth\RegistersUsers;
|
use Illuminate\Foundation\Auth\RegistersUsers;
|
||||||
use Illuminate\Support\Facades\Hash;
|
use Illuminate\Support\Facades\Hash;
|
||||||
use Illuminate\Support\Facades\Validator;
|
use Illuminate\Support\Facades\Validator;
|
||||||
use function GuzzleHttp\Psr7\str;
|
|
||||||
|
|
||||||
class RegisterController extends Controller
|
class RegisterController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -47,10 +64,8 @@ class RegisterController extends Controller
|
||||||
{
|
{
|
||||||
$users = User::where('originalIP', \request()->ip())->get();
|
$users = User::where('originalIP', \request()->ip())->get();
|
||||||
|
|
||||||
foreach($users as $user)
|
foreach ($users as $user) {
|
||||||
{
|
if ($user && $user->isBanned()) {
|
||||||
if ($user && $user->isBanned())
|
|
||||||
{
|
|
||||||
abort(403, 'You do not have permission to access this page.');
|
abort(403, 'You do not have permission to access this page.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -72,7 +87,7 @@ class RegisterController extends Controller
|
||||||
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
|
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
|
||||||
'password' => ['required', 'string', 'min:10', 'confirmed', 'regex:/^.*(?=.{3,})(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[\d\x])(?=.*[!$#%]).*$/'],
|
'password' => ['required', 'string', 'min:10', 'confirmed', 'regex:/^.*(?=.{3,})(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[\d\x])(?=.*[!$#%]).*$/'],
|
||||||
], [
|
], [
|
||||||
'uuid.required' => 'Please enter a valid (and Premium) Minecraft username! We do not support cracked users.'
|
'uuid.required' => 'Please enter a valid (and Premium) Minecraft username! We do not support cracked users.',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,19 +99,19 @@ class RegisterController extends Controller
|
||||||
*/
|
*/
|
||||||
protected function create(array $data)
|
protected function create(array $data)
|
||||||
{
|
{
|
||||||
|
|
||||||
$user = User::create([
|
$user = User::create([
|
||||||
'uuid' => $data['uuid'],
|
'uuid' => $data['uuid'],
|
||||||
'name' => $data['name'],
|
'name' => $data['name'],
|
||||||
'email' => $data['email'],
|
'email' => $data['email'],
|
||||||
'password' => Hash::make($data['password']),
|
'password' => Hash::make($data['password']),
|
||||||
'originalIP' => request()->ip()
|
'originalIP' => request()->ip(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// It's not the registration controller's concern to create a profile for the user,
|
// It's not the registration controller's concern to create a profile for the user,
|
||||||
// so this code has been moved to it's respective observer, following the separation of concerns pattern.
|
// so this code has been moved to it's respective observer, following the separation of concerns pattern.
|
||||||
|
|
||||||
$user->assignRole('user');
|
$user->assignRole('user');
|
||||||
|
|
||||||
return $user;
|
return $user;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
namespace App\Http\Controllers\Auth;
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Providers\RouteServiceProvider;
|
|
||||||
use Illuminate\Foundation\Auth\ResetsPasswords;
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
||||||
|
|
||||||
class ResetPasswordController extends Controller
|
class ResetPasswordController extends Controller
|
||||||
|
|
|
@ -1,16 +1,32 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
namespace App\Http\Controllers\Auth;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Traits\AuthenticatesTwoFactor;
|
use App\Traits\AuthenticatesTwoFactor;
|
||||||
|
|
||||||
class TwofaController extends Controller
|
class TwofaController extends Controller
|
||||||
{
|
{
|
||||||
use AuthenticatesTwoFactor;
|
use AuthenticatesTwoFactor;
|
||||||
|
|
||||||
|
|
||||||
protected $redirectTo = '/dashboard';
|
|
||||||
|
|
||||||
|
protected $redirectTo = '/dashboard';
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
namespace App\Http\Controllers\Auth;
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Providers\RouteServiceProvider;
|
|
||||||
use Illuminate\Foundation\Auth\VerifiesEmails;
|
use Illuminate\Foundation\Auth\VerifiesEmails;
|
||||||
|
|
||||||
class VerificationController extends Controller
|
class VerificationController extends Controller
|
||||||
|
|
|
@ -1,35 +1,48 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use Illuminate\Support\Facades\Auth;
|
|
||||||
use App\Ban;
|
use App\Ban;
|
||||||
use App\User;
|
|
||||||
use App\Events\UserBannedEvent;
|
use App\Events\UserBannedEvent;
|
||||||
use App\Http\Requests\BanUserRequest;
|
use App\Http\Requests\BanUserRequest;
|
||||||
|
use App\User;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
|
||||||
class BanController extends Controller
|
class BanController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
public function insert(BanUserRequest $request, User $user)
|
public function insert(BanUserRequest $request, User $user)
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->authorize('create', [Ban::class, $user]);
|
$this->authorize('create', [Ban::class, $user]);
|
||||||
|
|
||||||
if (is_null($user->bans))
|
if (is_null($user->bans)) {
|
||||||
{
|
|
||||||
|
|
||||||
$reason = $request->reason;
|
$reason = $request->reason;
|
||||||
$duration = strtolower($request->durationOperator);
|
$duration = strtolower($request->durationOperator);
|
||||||
$durationOperand = $request->durationOperand;
|
$durationOperand = $request->durationOperand;
|
||||||
|
|
||||||
$expiryDate = now();
|
$expiryDate = now();
|
||||||
|
|
||||||
if (!empty($duration))
|
if (! empty($duration)) {
|
||||||
{
|
switch ($duration) {
|
||||||
switch($duration)
|
|
||||||
{
|
|
||||||
case 'days':
|
case 'days':
|
||||||
$expiryDate->addDays($durationOperand);
|
$expiryDate->addDays($durationOperand);
|
||||||
break;
|
break;
|
||||||
|
@ -46,9 +59,7 @@ class BanController extends Controller
|
||||||
$expiryDate->addYears($durationOperand);
|
$expiryDate->addYears($durationOperand);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
// Essentially permanent
|
// Essentially permanent
|
||||||
$expiryDate->addYears(5);
|
$expiryDate->addYears(5);
|
||||||
}
|
}
|
||||||
|
@ -57,35 +68,27 @@ class BanController extends Controller
|
||||||
'userID' => $user->id,
|
'userID' => $user->id,
|
||||||
'reason' => $reason,
|
'reason' => $reason,
|
||||||
'bannedUntil' => $expiryDate->format('Y-m-d H:i:s'),
|
'bannedUntil' => $expiryDate->format('Y-m-d H:i:s'),
|
||||||
'userAgent' => "Unknown",
|
'userAgent' => 'Unknown',
|
||||||
'authorUserID' => Auth::user()->id
|
'authorUserID' => Auth::user()->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
event(new UserBannedEvent($user, $ban));
|
event(new UserBannedEvent($user, $ban));
|
||||||
$request->session()->flash('success', 'User banned successfully! Ban ID: #' . $ban->id);
|
$request->session()->flash('success', 'User banned successfully! Ban ID: #'.$ban->id);
|
||||||
|
} else {
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'User already banned!');
|
$request->session()->flash('error', 'User already banned!');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function delete(Request $request, User $user)
|
public function delete(Request $request, User $user)
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->authorize('delete', $user->bans);
|
$this->authorize('delete', $user->bans);
|
||||||
|
|
||||||
if (!is_null($user->bans))
|
if (! is_null($user->bans)) {
|
||||||
{
|
|
||||||
$user->bans->delete();
|
$user->bans->delete();
|
||||||
$request->session()->flash('success', 'User unbanned successfully!');
|
$request->session()->flash('success', 'User unbanned successfully!');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'This user isn\'t banned!');
|
$request->session()->flash('error', 'This user isn\'t banned!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,34 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Application;
|
||||||
|
use App\Comment;
|
||||||
|
use App\Http\Requests\NewCommentRequest;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
use App\Http\Requests\NewCommentRequest;
|
|
||||||
|
|
||||||
use App\Comment;
|
|
||||||
use App\Application;
|
|
||||||
use App\Notifications\NewComment;
|
|
||||||
use App\User;
|
|
||||||
|
|
||||||
class CommentController extends Controller
|
class CommentController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
|
@ -26,21 +41,16 @@ class CommentController extends Controller
|
||||||
$comment = Comment::create([
|
$comment = Comment::create([
|
||||||
'authorID' => Auth::user()->id,
|
'authorID' => Auth::user()->id,
|
||||||
'applicationID' => $application->id,
|
'applicationID' => $application->id,
|
||||||
'text' => $request->comment
|
'text' => $request->comment,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if ($comment)
|
if ($comment) {
|
||||||
{
|
|
||||||
|
|
||||||
$request->session()->flash('success', 'Comment posted! (:');
|
$request->session()->flash('success', 'Comment posted! (:');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Something went wrong while posting your comment!');
|
$request->session()->flash('error', 'Something went wrong while posting your comment!');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function delete(Request $request, Comment $comment)
|
public function delete(Request $request, Comment $comment)
|
||||||
|
@ -51,7 +61,5 @@ class CommentController extends Controller
|
||||||
$request->session()->flash('success', 'Comment deleted!');
|
$request->session()->flash('success', 'Comment deleted!');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,26 +1,40 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use GuzzleHttp;
|
|
||||||
use App\Notifications\NewContact;
|
use App\Notifications\NewContact;
|
||||||
use Illuminate\Support\Facades\Http;
|
|
||||||
|
|
||||||
use App\User;
|
use App\User;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Support\Facades\Http;
|
||||||
|
|
||||||
class ContactController extends Controller
|
class ContactController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $users;
|
protected $users;
|
||||||
|
|
||||||
|
|
||||||
public function __construct(User $users)
|
public function __construct(User $users)
|
||||||
{
|
{
|
||||||
$this->users = $users;
|
$this->users = $users;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function create(Request $request)
|
public function create(Request $request)
|
||||||
{
|
{
|
||||||
$name = $request->name;
|
$name = $request->name;
|
||||||
|
@ -34,32 +48,29 @@ class ContactController extends Controller
|
||||||
$verifyrequest = Http::asForm()->post(config('recaptcha.verify.apiurl'), [
|
$verifyrequest = Http::asForm()->post(config('recaptcha.verify.apiurl'), [
|
||||||
'secret' => config('recaptcha.keys.secret'),
|
'secret' => config('recaptcha.keys.secret'),
|
||||||
'response' => $challenge,
|
'response' => $challenge,
|
||||||
'remoteip' => $request->ip()
|
'remoteip' => $request->ip(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
||||||
$response = json_decode($verifyrequest->getBody(), true);
|
$response = json_decode($verifyrequest->getBody(), true);
|
||||||
|
|
||||||
if (!$response['success'])
|
if (! $response['success']) {
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Beep beep boop... Robot? Submission failed.');
|
$request->session()->flash('error', 'Beep beep boop... Robot? Submission failed.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach (User::all() as $user) {
|
||||||
foreach(User::all() as $user)
|
if ($user->hasRole('admin')) {
|
||||||
{
|
$user->notify(new NewContact(collect([
|
||||||
if ($user->hasRole('admin'))
|
'message' => $msg,
|
||||||
{
|
'ip' => $request->ip(),
|
||||||
$user->notify(new NewContact(collect([
|
'email' => $email,
|
||||||
'message' => $msg,
|
])));
|
||||||
'ip' => $request->ip(),
|
}
|
||||||
'email' => $email
|
|
||||||
])));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$request->session()->flash('success', 'Message sent successfully! We usually respond within 48 hours.');
|
$request->session()->flash('success', 'Message sent successfully! We usually respond within 48 hours.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
||||||
|
|
|
@ -1,16 +1,32 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use App\Vacancy;
|
|
||||||
use App\User;
|
|
||||||
use App\Ban;
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
|
use App\User;
|
||||||
|
use App\Vacancy;
|
||||||
|
|
||||||
class DashboardController extends Controller
|
class DashboardController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
$totalPeerReview = Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get()->count();
|
$totalPeerReview = Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get()->count();
|
||||||
|
@ -19,13 +35,11 @@ class DashboardController extends Controller
|
||||||
|
|
||||||
return view('dashboard.dashboard')
|
return view('dashboard.dashboard')
|
||||||
->with([
|
->with([
|
||||||
'vacancies' => Vacancy::all(),
|
'vacancies' => Vacancy::all(),
|
||||||
'totalUserCount' => User::all()->count(),
|
'totalUserCount' => User::all()->count(),
|
||||||
'totalDenied' => $totalDenied,
|
'totalDenied' => $totalDenied,
|
||||||
'totalPeerReview' => $totalPeerReview,
|
'totalPeerReview' => $totalPeerReview,
|
||||||
'totalNewApplications' => $totalNewApplications
|
'totalNewApplications' => $totalNewApplications,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +1,45 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
use App\Events\ApplicationApprovedEvent;
|
use App\Events\ApplicationApprovedEvent;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
|
||||||
class DevToolsController extends Controller
|
class DevToolsController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
// The use case for Laravel's gate and/or validation Requests is so tiny here that a full-blown policy would be overkill.
|
// The use case for Laravel's gate and/or validation Requests is so tiny here that a full-blown policy would be overkill.
|
||||||
protected function isolatedAuthorise()
|
protected function isolatedAuthorise()
|
||||||
{
|
{
|
||||||
if (!Auth::user()->can('admin.developertools.use'))
|
if (! Auth::user()->can('admin.developertools.use')) {
|
||||||
{
|
abort(403, 'You\'re not authorized to access this page.');
|
||||||
abort(403, 'You\'re not authorized to access this page.');
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
$this->isolatedAuthorise();
|
$this->isolatedAuthorise();
|
||||||
|
|
||||||
return view('dashboard.administration.devtools')
|
return view('dashboard.administration.devtools')
|
||||||
->with('applications', Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get());
|
->with('applications', Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get());
|
||||||
}
|
}
|
||||||
|
@ -32,14 +49,11 @@ class DevToolsController extends Controller
|
||||||
$this->isolatedAuthorise();
|
$this->isolatedAuthorise();
|
||||||
$application = Application::find($request->application);
|
$application = Application::find($request->application);
|
||||||
|
|
||||||
if (!is_null($application))
|
if (! is_null($application)) {
|
||||||
{
|
|
||||||
event(new ApplicationApprovedEvent($application));
|
event(new ApplicationApprovedEvent($application));
|
||||||
|
|
||||||
$request->session()->flash('success', 'Event dispatched! Please check the debug logs for more info');
|
$request->session()->flash('success', 'Event dispatched! Please check the debug logs for more info');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Application doesn\'t exist!');
|
$request->session()->flash('error', 'Application doesn\'t exist!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,32 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Form;
|
use App\Form;
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use Illuminate\Support\Facades\Validator;
|
|
||||||
use Illuminate\Support\Facades\Auth;
|
|
||||||
|
|
||||||
use ContextAwareValidator;
|
use ContextAwareValidator;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
class FormController extends Controller
|
class FormController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
$forms = Form::all();
|
$forms = Form::all();
|
||||||
|
@ -24,42 +39,43 @@ class FormController extends Controller
|
||||||
public function showFormBuilder()
|
public function showFormBuilder()
|
||||||
{
|
{
|
||||||
$this->authorize('viewFormbuilder', Form::class);
|
$this->authorize('viewFormbuilder', Form::class);
|
||||||
|
|
||||||
return view('dashboard.administration.formbuilder');
|
return view('dashboard.administration.formbuilder');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function saveForm(Request $request)
|
public function saveForm(Request $request)
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->authorize('create', Form::class);
|
$this->authorize('create', Form::class);
|
||||||
$fields = $request->all();
|
$fields = $request->all();
|
||||||
|
|
||||||
if (count($fields) == 2)
|
if (count($fields) == 2) {
|
||||||
{
|
|
||||||
// form is probably empty, since forms with fields will alawys have more than 2 items
|
// form is probably empty, since forms with fields will alawys have more than 2 items
|
||||||
|
|
||||||
$request->session()->flash('error', 'Sorry, but you may not create empty forms.');
|
$request->session()->flash('error', 'Sorry, but you may not create empty forms.');
|
||||||
|
|
||||||
return redirect()->to(route('showForms'));
|
return redirect()->to(route('showForms'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$contextValidation = ContextAwareValidator::getValidator($fields, true, true);
|
$contextValidation = ContextAwareValidator::getValidator($fields, true, true);
|
||||||
|
|
||||||
if (!$contextValidation->get('validator')->fails())
|
if (! $contextValidation->get('validator')->fails()) {
|
||||||
{
|
|
||||||
$storableFormStructure = $contextValidation->get('structure');
|
$storableFormStructure = $contextValidation->get('structure');
|
||||||
|
|
||||||
Form::create(
|
Form::create(
|
||||||
[
|
[
|
||||||
'formName' => $fields['formName'],
|
'formName' => $fields['formName'],
|
||||||
'formStructure' => $storableFormStructure,
|
'formStructure' => $storableFormStructure,
|
||||||
'formStatus' => 'ACTIVE'
|
'formStatus' => 'ACTIVE',
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
$request->session()->flash('success', 'Form created! You can now link this form to a vacancy.');
|
$request->session()->flash('success', 'Form created! You can now link this form to a vacancy.');
|
||||||
|
|
||||||
return redirect()->to(route('showForms'));
|
return redirect()->to(route('showForms'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$request->session()->flash('errors', $contextValidation->get('validator')->errors()->getMessages());
|
$request->session()->flash('errors', $contextValidation->get('validator')->errors()->getMessages());
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,25 +84,19 @@ class FormController extends Controller
|
||||||
$this->authorize('delete', $form);
|
$this->authorize('delete', $form);
|
||||||
$deletable = true;
|
$deletable = true;
|
||||||
|
|
||||||
|
if (! is_null($form) && ! is_null($form->vacancies) && $form->vacancies->count() !== 0 || ! is_null($form->responses)) {
|
||||||
if (!is_null($form) && !is_null($form->vacancies) && $form->vacancies->count() !== 0 || !is_null($form->responses))
|
$deletable = false;
|
||||||
{
|
|
||||||
$deletable = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($deletable)
|
if ($deletable) {
|
||||||
{
|
$form->delete();
|
||||||
$form->delete();
|
|
||||||
|
|
||||||
$request->session()->flash('success', 'Form deleted successfully.');
|
$request->session()->flash('success', 'Form deleted successfully.');
|
||||||
}
|
} else {
|
||||||
else
|
$request->session()->flash('error', 'You cannot delete this form because it\'s tied to one or more applications and ranks, or because it doesn\'t exist.');
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'You cannot delete this form because it\'s tied to one or more applications and ranks, or because it doesn\'t exist.');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function preview(Request $request, Form $form)
|
public function preview(Request $request, Form $form)
|
||||||
|
@ -101,9 +111,9 @@ class FormController extends Controller
|
||||||
|
|
||||||
public function edit(Request $request, Form $form)
|
public function edit(Request $request, Form $form)
|
||||||
{
|
{
|
||||||
$this->authorize('update', $form);
|
$this->authorize('update', $form);
|
||||||
|
|
||||||
return view('dashboard.administration.editform')
|
return view('dashboard.administration.editform')
|
||||||
->with('formStructure', json_decode($form->formStructure, true))
|
->with('formStructure', json_decode($form->formStructure, true))
|
||||||
->with('title', $form->formName)
|
->with('title', $form->formName)
|
||||||
->with('formID', $form->id);
|
->with('formID', $form->id);
|
||||||
|
@ -111,29 +121,23 @@ class FormController extends Controller
|
||||||
|
|
||||||
public function update(Request $request, Form $form)
|
public function update(Request $request, Form $form)
|
||||||
{
|
{
|
||||||
$this->authorize('update', $form);
|
$this->authorize('update', $form);
|
||||||
|
|
||||||
$contextValidation = ContextAwareValidator::getValidator($request->all(), true);
|
$contextValidation = ContextAwareValidator::getValidator($request->all(), true);
|
||||||
$this->authorize('update', $form);
|
$this->authorize('update', $form);
|
||||||
|
|
||||||
|
if (! $contextValidation->get('validator')->fails()) {
|
||||||
|
// Add the new structure into the form. New, subsquent fields will be identified by the "new" prefix
|
||||||
|
// This prefix doesn't actually change the app's behavior when it receives applications.
|
||||||
|
// Additionally, old applications won't of course display new and updated fields, because we can't travel into the past and get data for them
|
||||||
|
$form->formStructure = $contextValidation->get('structure');
|
||||||
|
$form->save();
|
||||||
|
|
||||||
if (!$contextValidation->get('validator')->fails())
|
$request->session()->flash('success', 'Hooray! Your form was updated. New applications for it\'s vacancy will use it.');
|
||||||
{
|
} else {
|
||||||
// Add the new structure into the form. New, subsquent fields will be identified by the "new" prefix
|
$request->session()->flash('errors', $contextValidation->get('validator')->errors()->getMessages());
|
||||||
// This prefix doesn't actually change the app's behavior when it receives applications.
|
}
|
||||||
// Additionally, old applications won't of course display new and updated fields, because we can't travel into the past and get data for them
|
|
||||||
$form->formStructure = $contextValidation->get('structure');
|
|
||||||
$form->save();
|
|
||||||
|
|
||||||
$request->session()->flash('success', 'Hooray! Your form was updated. New applications for it\'s vacancy will use it.');
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('errors', $contextValidation->get('validator')->errors()->getMessages());
|
|
||||||
}
|
|
||||||
|
|
||||||
return redirect()->to(route('previewForm', ['form' => $form->id]));
|
|
||||||
|
|
||||||
|
return redirect()->to(route('previewForm', ['form' => $form->id]));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Vacancy;
|
use App\Vacancy;
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use Illuminate\Support\Facades\DB;
|
|
||||||
|
|
||||||
class HomeController extends Controller
|
class HomeController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -15,12 +32,10 @@ class HomeController extends Controller
|
||||||
*/
|
*/
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
|
|
||||||
$positions = Vacancy::where('vacancyStatus', 'OPEN')
|
$positions = Vacancy::where('vacancyStatus', 'OPEN')
|
||||||
->where('vacancyCount', '<>', 0)
|
->where('vacancyCount', '<>', 0)
|
||||||
->get();
|
->get();
|
||||||
|
|
||||||
|
|
||||||
return view('home')
|
return view('home')
|
||||||
->with('positions', $positions);
|
->with('positions', $positions);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Facades\Options;
|
use App\Facades\Options;
|
||||||
use App\Options as Option;
|
use App\Options as Option;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
@ -21,57 +39,47 @@ class OptionsController extends Controller
|
||||||
// TODO: Obtain this from the facade
|
// TODO: Obtain this from the facade
|
||||||
$options = Option::all();
|
$options = Option::all();
|
||||||
|
|
||||||
|
|
||||||
return view('dashboard.administration.settings')
|
return view('dashboard.administration.settings')
|
||||||
->with('options', $options);
|
->with('options', $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function saveSettings(Request $request)
|
public function saveSettings(Request $request)
|
||||||
{
|
{
|
||||||
if (Auth::user()->can('admin.settings.edit'))
|
if (Auth::user()->can('admin.settings.edit')) {
|
||||||
{
|
Log::debug('Updating application options', [
|
||||||
Log::debug('Updating application options', [
|
'ip' => $request->ip(),
|
||||||
'ip' => $request->ip(),
|
'ua' => $request->userAgent(),
|
||||||
'ua' => $request->userAgent(),
|
'username' => Auth::user()->username,
|
||||||
'username' => Auth::user()->username
|
]);
|
||||||
]);
|
foreach ($request->all() as $optionName => $option) {
|
||||||
foreach($request->all() as $optionName => $option)
|
try {
|
||||||
{
|
Log::debug('Going through option '.$optionName);
|
||||||
try
|
if (Options::optionExists($optionName)) {
|
||||||
{
|
Log::debug('Option exists, updating to new values', [
|
||||||
Log::debug('Going through option ' . $optionName);
|
'opt' => $optionName,
|
||||||
if (Options::optionExists($optionName))
|
'new_value' => $option,
|
||||||
{
|
]);
|
||||||
Log::debug('Option exists, updating to new values', [
|
Options::changeOption($optionName, $option);
|
||||||
'opt' => $optionName,
|
}
|
||||||
'new_value' => $option
|
} catch (\Exception $ex) {
|
||||||
]);
|
Log::error('Unable to update options!', [
|
||||||
Options::changeOption($optionName, $option);
|
'msg' => $ex->getMessage(),
|
||||||
}
|
'trace' => $ex->getTraceAsString(),
|
||||||
}
|
]);
|
||||||
catch(\Exception $ex)
|
report($ex);
|
||||||
{
|
|
||||||
Log::error('Unable to update options!', [
|
|
||||||
'msg' => $ex->getMessage(),
|
|
||||||
'trace' => $ex->getTraceAsString()
|
|
||||||
]);
|
|
||||||
report($ex);
|
|
||||||
|
|
||||||
$errorCond = true;
|
$errorCond = true;
|
||||||
$request->session()->flash('error', 'An error occurred while trying to save settings: ' . $ex->getMessage());
|
$request->session()->flash('error', 'An error occurred while trying to save settings: '.$ex->getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($errorCond))
|
if (! isset($errorCond)) {
|
||||||
{
|
$request->session()->flash('success', 'Settings saved successfully!');
|
||||||
$request->session()->flash('success', 'Settings saved successfully!');
|
}
|
||||||
}
|
} else {
|
||||||
}
|
$request->session()->flash('error', 'You do not have permission to update this resource.');
|
||||||
else
|
}
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'You do not have permission to update this resource.');
|
|
||||||
}
|
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,29 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Http\Requests\ProfileSave;
|
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
use App\Profile;
|
|
||||||
use App\User;
|
|
||||||
use App\Facades\IP;
|
use App\Facades\IP;
|
||||||
|
use App\Http\Requests\ProfileSave;
|
||||||
|
use App\User;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
@ -14,18 +31,15 @@ use Spatie\Permission\Models\Role;
|
||||||
|
|
||||||
class ProfileController extends Controller
|
class ProfileController extends Controller
|
||||||
{
|
{
|
||||||
|
public function index()
|
||||||
public function index()
|
{
|
||||||
{
|
return view('dashboard.user.directory')
|
||||||
|
|
||||||
return view('dashboard.user.directory')
|
|
||||||
->with('users', User::with('profile', 'bans')->paginate(9));
|
->with('users', User::with('profile', 'bans')->paginate(9));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function showProfile()
|
public function showProfile()
|
||||||
{
|
{
|
||||||
|
$socialLinks = Auth::user()->profile->socialLinks ?? '[]';
|
||||||
$socialLinks = Auth::user()->profile->socialLinks ?? "[]";
|
|
||||||
$socialMediaProfiles = json_decode($socialLinks, true);
|
$socialMediaProfiles = json_decode($socialLinks, true);
|
||||||
|
|
||||||
return view('dashboard.user.profile.userprofile')
|
return view('dashboard.user.profile.userprofile')
|
||||||
|
@ -36,13 +50,11 @@ class ProfileController extends Controller
|
||||||
'insta' => $socialMediaProfiles['links']['insta'] ?? 'UpdateMe',
|
'insta' => $socialMediaProfiles['links']['insta'] ?? 'UpdateMe',
|
||||||
'discord' => $socialMediaProfiles['links']['discord'] ?? 'UpdateMe#12345',
|
'discord' => $socialMediaProfiles['links']['discord'] ?? 'UpdateMe#12345',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Route model binding
|
// Route model binding
|
||||||
public function showSingleProfile(Request $request, User $user)
|
public function showSingleProfile(Request $request, User $user)
|
||||||
{
|
{
|
||||||
|
|
||||||
$socialMediaProfiles = json_decode($user->profile->socialLinks, true);
|
$socialMediaProfiles = json_decode($user->profile->socialLinks, true);
|
||||||
$createdDate = Carbon::parse($user->created_at);
|
$createdDate = Carbon::parse($user->created_at);
|
||||||
|
|
||||||
|
@ -51,21 +63,15 @@ class ProfileController extends Controller
|
||||||
|
|
||||||
$roleList = [];
|
$roleList = [];
|
||||||
|
|
||||||
|
foreach ($systemRoles as $role) {
|
||||||
foreach($systemRoles as $role)
|
if (in_array($role, $userRoles)) {
|
||||||
{
|
$roleList[$role] = true;
|
||||||
if (in_array($role, $userRoles))
|
} else {
|
||||||
{
|
$roleList[$role] = false;
|
||||||
$roleList[$role] = true;
|
}
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$roleList[$role] = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Auth::user()->is($user) || Auth::user()->can('profiles.view.others'))
|
if (Auth::user()->is($user) || Auth::user()->can('profiles.view.others')) {
|
||||||
{
|
|
||||||
return view('dashboard.user.profile.displayprofile')
|
return view('dashboard.user.profile.displayprofile')
|
||||||
->with([
|
->with([
|
||||||
'profile' => $user->profile,
|
'profile' => $user->profile,
|
||||||
|
@ -73,16 +79,13 @@ class ProfileController extends Controller
|
||||||
'twitter' => $socialMediaProfiles['links']['twitter'] ?? 'UpdateMe',
|
'twitter' => $socialMediaProfiles['links']['twitter'] ?? 'UpdateMe',
|
||||||
'insta' => $socialMediaProfiles['links']['insta'] ?? 'UpdateMe',
|
'insta' => $socialMediaProfiles['links']['insta'] ?? 'UpdateMe',
|
||||||
'discord' => $socialMediaProfiles['links']['discord'] ?? 'UpdateMe#12345',
|
'discord' => $socialMediaProfiles['links']['discord'] ?? 'UpdateMe#12345',
|
||||||
'since' => $createdDate->englishMonth . " " . $createdDate->year,
|
'since' => $createdDate->englishMonth.' '.$createdDate->year,
|
||||||
'ipInfo' => IP::lookup($user->originalIP),
|
'ipInfo' => IP::lookup($user->originalIP),
|
||||||
'roles' => $roleList
|
'roles' => $roleList,
|
||||||
]);
|
]);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
abort(403, 'You cannot view someone else\'s profile.');
|
abort(403, 'You cannot view someone else\'s profile.');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function saveProfile(ProfileSave $request)
|
public function saveProfile(ProfileSave $request)
|
||||||
|
@ -90,10 +93,8 @@ class ProfileController extends Controller
|
||||||
$profile = User::find(Auth::user()->id)->profile;
|
$profile = User::find(Auth::user()->id)->profile;
|
||||||
$social = [];
|
$social = [];
|
||||||
|
|
||||||
if (!is_null($profile))
|
if (! is_null($profile)) {
|
||||||
{
|
switch ($request->avatarPref) {
|
||||||
switch ($request->avatarPref)
|
|
||||||
{
|
|
||||||
case 'MOJANG':
|
case 'MOJANG':
|
||||||
$avatarPref = 'crafatar';
|
$avatarPref = 'crafatar';
|
||||||
|
|
||||||
|
@ -117,11 +118,8 @@ class ProfileController extends Controller
|
||||||
$newProfile = $profile->save();
|
$newProfile = $profile->save();
|
||||||
|
|
||||||
$request->session()->flash('success', 'Profile settings saved successfully.');
|
$request->session()->flash('success', 'Profile settings saved successfully.');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,25 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
class ResponseController extends Controller
|
class ResponseController extends Controller
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,8 +1,25 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
class StaffProfileController extends Controller
|
class StaffProfileController extends Controller
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Http\Requests\EditTeamRequest;
|
use App\Http\Requests\EditTeamRequest;
|
||||||
|
@ -16,7 +35,6 @@ use Mpociot\Teamwork\Exceptions\UserNotInTeamException;
|
||||||
use Mpociot\Teamwork\Facades\Teamwork;
|
use Mpociot\Teamwork\Facades\Teamwork;
|
||||||
use Mpociot\Teamwork\TeamInvite;
|
use Mpociot\Teamwork\TeamInvite;
|
||||||
|
|
||||||
|
|
||||||
class TeamController extends Controller
|
class TeamController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -52,12 +70,13 @@ class TeamController extends Controller
|
||||||
{
|
{
|
||||||
$team = Team::create([
|
$team = Team::create([
|
||||||
'name' => $request->teamName,
|
'name' => $request->teamName,
|
||||||
'owner_id' => Auth::user()->id
|
'owner_id' => Auth::user()->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Auth::user()->teams()->attach($team->id);
|
Auth::user()->teams()->attach($team->id);
|
||||||
|
|
||||||
$request->session()->flash('success', 'Team successfully created.');
|
$request->session()->flash('success', 'Team successfully created.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,6 +120,7 @@ class TeamController extends Controller
|
||||||
$team->save();
|
$team->save();
|
||||||
|
|
||||||
$request->session()->flash('success', 'Team edited successfully.');
|
$request->session()->flash('success', 'Team edited successfully.');
|
||||||
|
|
||||||
return redirect()->to(route('teams.index'));
|
return redirect()->to(route('teams.index'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,50 +139,34 @@ class TeamController extends Controller
|
||||||
{
|
{
|
||||||
$user = User::findOrFail($request->user);
|
$user = User::findOrFail($request->user);
|
||||||
|
|
||||||
if (!$team->openJoin)
|
if (! $team->openJoin) {
|
||||||
{
|
if (! Teamwork::hasPendingInvite($user->email, $team)) {
|
||||||
|
Teamwork::inviteToTeam($user, $team, function (TeamInvite $invite) use ($user) {
|
||||||
if (!Teamwork::hasPendingInvite($user->email, $team))
|
|
||||||
{
|
|
||||||
Teamwork::inviteToTeam($user, $team, function(TeamInvite $invite) use ($user) {
|
|
||||||
Mail::to($user)->send(new InviteToTeam($invite));
|
Mail::to($user)->send(new InviteToTeam($invite));
|
||||||
});
|
});
|
||||||
|
|
||||||
$request->session()->flash('success', 'Invite sent! They can now accept or deny it.');
|
$request->session()->flash('success', 'Invite sent! They can now accept or deny it.');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'This user has already been invited.');
|
$request->session()->flash('error', 'This user has already been invited.');
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'You can\'t invite users to public teams.');
|
$request->session()->flash('error', 'You can\'t invite users to public teams.');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function processInviteAction(Request $request, $action, $token)
|
public function processInviteAction(Request $request, $action, $token)
|
||||||
{
|
{
|
||||||
|
switch ($action) {
|
||||||
switch($action)
|
|
||||||
{
|
|
||||||
case 'accept':
|
case 'accept':
|
||||||
|
|
||||||
$invite = Teamwork::getInviteFromAcceptToken($token);
|
$invite = Teamwork::getInviteFromAcceptToken($token);
|
||||||
|
|
||||||
if ($invite && $invite->user->is(Auth::user()))
|
if ($invite && $invite->user->is(Auth::user())) {
|
||||||
{
|
|
||||||
Teamwork::acceptInvite($invite);
|
Teamwork::acceptInvite($invite);
|
||||||
$request->session()->flash('success', 'Invite accepted! You have now joined ' . $invite->team->name . '.');
|
$request->session()->flash('success', 'Invite accepted! You have now joined '.$invite->team->name.'.');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Invalid or expired invite URL.');
|
$request->session()->flash('error', 'Invalid or expired invite URL.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -172,13 +176,10 @@ class TeamController extends Controller
|
||||||
|
|
||||||
$invite = Teamwork::getInviteFromDenyToken($token);
|
$invite = Teamwork::getInviteFromDenyToken($token);
|
||||||
|
|
||||||
if ($invite && $invite->user->is(Auth::user()))
|
if ($invite && $invite->user->is(Auth::user())) {
|
||||||
{
|
|
||||||
Teamwork::denyInvite($invite);
|
Teamwork::denyInvite($invite);
|
||||||
$request->session()->flash('success', 'Invite denied! Ask for another invite if this isn\'t what you meant.');
|
$request->session()->flash('success', 'Invite denied! Ask for another invite if this isn\'t what you meant.');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Invalid or expired invite URL.');
|
$request->session()->flash('error', 'Invalid or expired invite URL.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,31 +188,25 @@ class TeamController extends Controller
|
||||||
default:
|
default:
|
||||||
$request->session()->flash('error', 'Sorry, but the invite URL you followed was malformed. Try asking for another invite, or submit a bug report.');
|
$request->session()->flash('error', 'Sorry, but the invite URL you followed was malformed. Try asking for another invite, or submit a bug report.');
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// This page will show the user's current teams
|
// This page will show the user's current teams
|
||||||
return redirect()->to(route('teams.index'));
|
return redirect()->to(route('teams.index'));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function switchTeam(Request $request, Team $team)
|
public function switchTeam(Request $request, Team $team)
|
||||||
{
|
{
|
||||||
try
|
try {
|
||||||
{
|
|
||||||
Auth::user()->switchTeam($team);
|
Auth::user()->switchTeam($team);
|
||||||
|
|
||||||
$request->session()->flash('success', 'Switched teams! Your team dashboard will now use this context.');
|
$request->session()->flash('success', 'Switched teams! Your team dashboard will now use this context.');
|
||||||
}
|
} catch (UserNotInTeamException $ex) {
|
||||||
catch(UserNotInTeamException $ex)
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'You can\'t switch to a team you don\'t belong to.');
|
$request->session()->flash('error', 'You can\'t switch to a team you don\'t belong to.');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Since it's a separate form, we shouldn't use the same update method
|
// Since it's a separate form, we shouldn't use the same update method
|
||||||
public function assignVacancies(Request $request, Team $team)
|
public function assignVacancies(Request $request, Team $team)
|
||||||
{
|
{
|
||||||
|
@ -222,41 +217,33 @@ class TeamController extends Controller
|
||||||
$requestVacancies = $request->assocVacancies;
|
$requestVacancies = $request->assocVacancies;
|
||||||
$currentVacancies = $team->vacancies->pluck('id')->all();
|
$currentVacancies = $team->vacancies->pluck('id')->all();
|
||||||
|
|
||||||
if (is_null($requestVacancies))
|
if (is_null($requestVacancies)) {
|
||||||
{
|
foreach ($team->vacancies as $vacancy) {
|
||||||
|
|
||||||
foreach ($team->vacancies as $vacancy)
|
|
||||||
{
|
|
||||||
$team->vacancies()->detach($vacancy->id);
|
$team->vacancies()->detach($vacancy->id);
|
||||||
}
|
}
|
||||||
|
|
||||||
$request->session()->flash('success', 'Removed all vacancy associations.');
|
$request->session()->flash('success', 'Removed all vacancy associations.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
$vacancyDiff = array_diff($requestVacancies, $currentVacancies);
|
$vacancyDiff = array_diff($requestVacancies, $currentVacancies);
|
||||||
$deselectedDiff = array_diff($currentVacancies, $requestVacancies);
|
$deselectedDiff = array_diff($currentVacancies, $requestVacancies);
|
||||||
|
|
||||||
|
if (! empty($vacancyDiff) || ! empty($deselectedDiff)) {
|
||||||
if (!empty($vacancyDiff) || !empty($deselectedDiff))
|
foreach ($vacancyDiff as $selectedVacancy) {
|
||||||
{
|
|
||||||
foreach ($vacancyDiff as $selectedVacancy)
|
|
||||||
{
|
|
||||||
$team->vacancies()->attach($selectedVacancy);
|
$team->vacancies()->attach($selectedVacancy);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($deselectedDiff as $deselectedVacancy)
|
foreach ($deselectedDiff as $deselectedVacancy) {
|
||||||
{
|
|
||||||
$team->vacancies()->detach($deselectedVacancy);
|
$team->vacancies()->detach($deselectedVacancy);
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$team->vacancies()->attach($requestVacancies);
|
$team->vacancies()->attach($requestVacancies);
|
||||||
}
|
}
|
||||||
|
|
||||||
$request->session()->flash('success', 'Assignments changed successfully.');
|
$request->session()->flash('success', 'Assignments changed successfully.');
|
||||||
return redirect()->back();
|
|
||||||
|
|
||||||
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,34 +1,48 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Ban;
|
||||||
|
use App\Http\Requests\Add2FASecretRequest;
|
||||||
use App\Http\Requests\ChangeEmailRequest;
|
use App\Http\Requests\ChangeEmailRequest;
|
||||||
use App\Http\Requests\ChangePasswordRequest;
|
use App\Http\Requests\ChangePasswordRequest;
|
||||||
use App\Http\Requests\FlushSessionsRequest;
|
|
||||||
use App\Http\Requests\DeleteUserRequest;
|
use App\Http\Requests\DeleteUserRequest;
|
||||||
|
use App\Http\Requests\FlushSessionsRequest;
|
||||||
|
use App\Http\Requests\Remove2FASecretRequest;
|
||||||
use App\Http\Requests\SearchPlayerRequest;
|
use App\Http\Requests\SearchPlayerRequest;
|
||||||
use App\Http\Requests\UpdateUserRequest;
|
use App\Http\Requests\UpdateUserRequest;
|
||||||
use App\Http\Requests\Add2FASecretRequest;
|
use App\Notifications\ChangedPassword;
|
||||||
use App\Http\Requests\Remove2FASecretRequest;
|
use App\Notifications\EmailChanged;
|
||||||
|
use App\Traits\ReceivesAccountTokens;
|
||||||
use App\User;
|
use App\User;
|
||||||
use App\Ban;
|
use Google2FA;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
use Illuminate\Support\Facades\Hash;
|
use Illuminate\Support\Facades\Hash;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
use App\Facades\UUID;
|
|
||||||
use App\Notifications\EmailChanged;
|
|
||||||
use App\Notifications\ChangedPassword;
|
|
||||||
use Spatie\Permission\Models\Role;
|
use Spatie\Permission\Models\Role;
|
||||||
|
|
||||||
use App\Traits\ReceivesAccountTokens;
|
|
||||||
use Google2FA;
|
|
||||||
|
|
||||||
class UserController extends Controller
|
class UserController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
use ReceivesAccountTokens;
|
use ReceivesAccountTokens;
|
||||||
|
|
||||||
public function showStaffMembers()
|
public function showStaffMembers()
|
||||||
|
@ -38,24 +52,20 @@ class UserController extends Controller
|
||||||
$staffRoles = [
|
$staffRoles = [
|
||||||
'reviewer',
|
'reviewer',
|
||||||
'hiringManager',
|
'hiringManager',
|
||||||
'admin'
|
'admin',
|
||||||
]; // TODO: Un-hardcode this, move to config/roles.php
|
]; // TODO: Un-hardcode this, move to config/roles.php
|
||||||
$users = User::with('roles')->get();
|
$users = User::with('roles')->get();
|
||||||
$staffMembers = collect([]);
|
$staffMembers = collect([]);
|
||||||
|
|
||||||
foreach($users as $user)
|
foreach ($users as $user) {
|
||||||
{
|
if (empty($user->roles)) {
|
||||||
if (empty($user->roles))
|
|
||||||
{
|
|
||||||
Log::debug($user->role->name);
|
Log::debug($user->role->name);
|
||||||
Log::debug('Staff list: User without role detected; Ignoring');
|
Log::debug('Staff list: User without role detected; Ignoring');
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach($user->roles as $role)
|
foreach ($user->roles as $role) {
|
||||||
{
|
if (in_array($role->name, $staffRoles)) {
|
||||||
if (in_array($role->name, $staffRoles))
|
|
||||||
{
|
|
||||||
$staffMembers->push($user);
|
$staffMembers->push($user);
|
||||||
continue 2; // Skip directly to the next user instead of comparing more roles for the current user
|
continue 2; // Skip directly to the next user instead of comparing more roles for the current user
|
||||||
}
|
}
|
||||||
|
@ -64,7 +74,7 @@ class UserController extends Controller
|
||||||
|
|
||||||
return view('dashboard.administration.staff-members')
|
return view('dashboard.administration.staff-members')
|
||||||
->with([
|
->with([
|
||||||
'users' => $staffMembers
|
'users' => $staffMembers,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,11 +85,9 @@ class UserController extends Controller
|
||||||
$users = User::with('roles')->get();
|
$users = User::with('roles')->get();
|
||||||
$players = collect([]);
|
$players = collect([]);
|
||||||
|
|
||||||
foreach($users as $user)
|
foreach ($users as $user) {
|
||||||
{
|
|
||||||
// TODO: Might be problematic if we don't check if the role is user
|
// TODO: Might be problematic if we don't check if the role is user
|
||||||
if (count($user->roles) == 1)
|
if (count($user->roles) == 1) {
|
||||||
{
|
|
||||||
$players->push($user);
|
$players->push($user);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,11 +95,10 @@ class UserController extends Controller
|
||||||
return view('dashboard.administration.players')
|
return view('dashboard.administration.players')
|
||||||
->with([
|
->with([
|
||||||
'users' => $players,
|
'users' => $players,
|
||||||
'bannedUserCount' => Ban::all()->count()
|
'bannedUserCount' => Ban::all()->count(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function showPlayersLike(SearchPlayerRequest $request)
|
public function showPlayersLike(SearchPlayerRequest $request)
|
||||||
{
|
{
|
||||||
$this->authorize('viewPlayers', User::class);
|
$this->authorize('viewPlayers', User::class);
|
||||||
|
@ -102,18 +109,17 @@ class UserController extends Controller
|
||||||
->orWhere('email', 'LIKE', "%{$searchTerm}%")
|
->orWhere('email', 'LIKE', "%{$searchTerm}%")
|
||||||
->get();
|
->get();
|
||||||
|
|
||||||
if (!$matchingUsers->isEmpty())
|
if (! $matchingUsers->isEmpty()) {
|
||||||
{ $request->session()->flash('success', 'There were ' . $matchingUsers->count() . ' user(s) matching your search.');
|
$request->session()->flash('success', 'There were '.$matchingUsers->count().' user(s) matching your search.');
|
||||||
|
|
||||||
return view('dashboard.administration.players')
|
return view('dashboard.administration.players')
|
||||||
->with([
|
->with([
|
||||||
'users' => $matchingUsers,
|
'users' => $matchingUsers,
|
||||||
'bannedUserCount' => Ban::all()->count()
|
'bannedUserCount' => Ban::all()->count(),
|
||||||
]);
|
]);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Your search term did not return any results.');
|
$request->session()->flash('error', 'Your search term did not return any results.');
|
||||||
|
|
||||||
return redirect(route('registeredPlayerList'));
|
return redirect(route('registeredPlayerList'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -122,14 +128,10 @@ class UserController extends Controller
|
||||||
{
|
{
|
||||||
$QRCode = null;
|
$QRCode = null;
|
||||||
|
|
||||||
if (!$request->user()->has2FA())
|
if (! $request->user()->has2FA()) {
|
||||||
{
|
if ($request->session()->has('twofaAttemptFailed')) {
|
||||||
if ($request->session()->has('twofaAttemptFailed'))
|
|
||||||
{
|
|
||||||
$twoFactorSecret = $request->session()->get('current2FA');
|
$twoFactorSecret = $request->session()->get('current2FA');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$twoFactorSecret = Google2FA::generateSecretKey(32, '');
|
$twoFactorSecret = Google2FA::generateSecretKey(32, '');
|
||||||
$request->session()->put('current2FA', $twoFactorSecret);
|
$request->session()->put('current2FA', $twoFactorSecret);
|
||||||
}
|
}
|
||||||
|
@ -146,21 +148,21 @@ class UserController extends Controller
|
||||||
->with('twofaQRCode', $QRCode);
|
->with('twofaQRCode', $QRCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function flushSessions(FlushSessionsRequest $request)
|
public function flushSessions(FlushSessionsRequest $request)
|
||||||
{
|
{
|
||||||
// TODO: Move all log calls to a listener, which binds to an event fired by each significant event, such as this one
|
// TODO: Move all log calls to a listener, which binds to an event fired by each significant event, such as this one
|
||||||
// This will allow for other actions to be performed on certain events (like login failed event)
|
// This will allow for other actions to be performed on certain events (like login failed event)
|
||||||
|
|
||||||
Auth::logoutOtherDevices($request->currentPasswordFlush);
|
Auth::logoutOtherDevices($request->currentPasswordFlush);
|
||||||
Log::notice('User ' . Auth::user()->name . ' has logged out other devices in their account',
|
Log::notice('User '.Auth::user()->name.' has logged out other devices in their account',
|
||||||
[
|
[
|
||||||
'originIPAddress' => $request->ip(),
|
'originIPAddress' => $request->ip(),
|
||||||
'userID' => Auth::user()->id,
|
'userID' => Auth::user()->id,
|
||||||
'timestamp' => now()
|
'timestamp' => now(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$request->session()->flash('success', 'Successfully logged out other devices. Remember to change your password if you think you\'ve been compromised.');
|
$request->session()->flash('success', 'Successfully logged out other devices. Remember to change your password if you think you\'ve been compromised.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -168,112 +170,92 @@ class UserController extends Controller
|
||||||
{
|
{
|
||||||
$user = User::find(Auth::user()->id);
|
$user = User::find(Auth::user()->id);
|
||||||
|
|
||||||
if (!is_null($user))
|
if (! is_null($user)) {
|
||||||
{
|
|
||||||
$user->password = Hash::make($request->newPassword);
|
$user->password = Hash::make($request->newPassword);
|
||||||
$user->save();
|
$user->save();
|
||||||
|
|
||||||
Log::info('User ' . $user->name . ' has changed their password', [
|
Log::info('User '.$user->name.' has changed their password', [
|
||||||
'originIPAddress' => $request->ip(),
|
'originIPAddress' => $request->ip(),
|
||||||
'userID' => $user->id,
|
'userID' => $user->id,
|
||||||
'timestamp' => now()
|
'timestamp' => now(),
|
||||||
]);
|
]);
|
||||||
$user->notify(new ChangedPassword());
|
$user->notify(new ChangedPassword());
|
||||||
|
|
||||||
Auth::logout();
|
Auth::logout();
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function changeEmail(ChangeEmailRequest $request)
|
public function changeEmail(ChangeEmailRequest $request)
|
||||||
{
|
{
|
||||||
$user = User::find(Auth::user()->id);
|
$user = User::find(Auth::user()->id);
|
||||||
|
|
||||||
if (!is_null($user))
|
if (! is_null($user)) {
|
||||||
{
|
|
||||||
$user->email = $request->newEmail;
|
$user->email = $request->newEmail;
|
||||||
$user->save();
|
$user->save();
|
||||||
|
|
||||||
Log::notice('User ' . $user->name . ' has just changed their contact email address', [
|
Log::notice('User '.$user->name.' has just changed their contact email address', [
|
||||||
'originIPAddress' => $request->ip(),
|
'originIPAddress' => $request->ip(),
|
||||||
'userID' => $user->id,
|
'userID' => $user->id,
|
||||||
'timestamp' => now()
|
'timestamp' => now(),
|
||||||
]);
|
]);
|
||||||
$user->notify(new EmailChanged());
|
$user->notify(new EmailChanged());
|
||||||
|
|
||||||
$request->session()->flash('success', 'Your email address has been changed!');
|
$request->session()->flash('success', 'Your email address has been changed!');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'There has been an error whilst trying to update your account. Please contact administrators.');
|
$request->session()->flash('error', 'There has been an error whilst trying to update your account. Please contact administrators.');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function delete(DeleteUserRequest $request, User $user)
|
public function delete(DeleteUserRequest $request, User $user)
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->authorize('delete', $user);
|
$this->authorize('delete', $user);
|
||||||
|
|
||||||
if ($request->confirmPrompt == 'DELETE ACCOUNT')
|
if ($request->confirmPrompt == 'DELETE ACCOUNT') {
|
||||||
{
|
|
||||||
$user->forceDelete();
|
$user->forceDelete();
|
||||||
$request->session()->flash('success','User deleted successfully. PII has been erased.');
|
$request->session()->flash('success', 'User deleted successfully. PII has been erased.');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Wrong confirmation text! Try again.');
|
$request->session()->flash('error', 'Wrong confirmation text! Try again.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return redirect()->route('registeredPlayerList');
|
return redirect()->route('registeredPlayerList');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function update(UpdateUserRequest $request, User $user)
|
public function update(UpdateUserRequest $request, User $user)
|
||||||
{
|
{
|
||||||
|
$this->authorize('adminEdit', $user);
|
||||||
|
|
||||||
$this->authorize('adminEdit', $user);
|
// Mass update would not be possible here without extra code, making route model binding useless
|
||||||
|
$user->email = $request->email;
|
||||||
|
$user->name = $request->name;
|
||||||
|
$user->uuid = $request->uuid;
|
||||||
|
|
||||||
// Mass update would not be possible here without extra code, making route model binding useless
|
$existingRoles = Role::all()
|
||||||
$user->email = $request->email;
|
|
||||||
$user->name = $request->name;
|
|
||||||
$user->uuid = $request->uuid;
|
|
||||||
|
|
||||||
$existingRoles = Role::all()
|
|
||||||
->pluck('name')
|
->pluck('name')
|
||||||
->all();
|
->all();
|
||||||
|
|
||||||
$roleDiff = array_diff($existingRoles, $request->roles);
|
$roleDiff = array_diff($existingRoles, $request->roles);
|
||||||
|
|
||||||
// Adds roles that were selected. Removes roles that aren't selected if the user has them.
|
// Adds roles that were selected. Removes roles that aren't selected if the user has them.
|
||||||
foreach($roleDiff as $deselectedRole)
|
foreach ($roleDiff as $deselectedRole) {
|
||||||
{
|
if ($user->hasRole($deselectedRole) && $deselectedRole !== 'user') {
|
||||||
if ($user->hasRole($deselectedRole) && $deselectedRole !== 'user')
|
$user->removeRole($deselectedRole);
|
||||||
{
|
}
|
||||||
$user->removeRole($deselectedRole);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach($request->roles as $role)
|
|
||||||
{
|
|
||||||
if (!$user->hasRole($role))
|
|
||||||
{
|
|
||||||
$user->assignRole($role);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
foreach ($request->roles as $role) {
|
||||||
|
if (! $user->hasRole($role)) {
|
||||||
|
$user->assignRole($role);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$user->save();
|
$user->save();
|
||||||
$request->session()->flash('success', 'User updated successfully!');
|
$request->session()->flash('success', 'User updated successfully!');
|
||||||
|
|
||||||
return redirect()->back();
|
|
||||||
|
|
||||||
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function add2FASecret(Add2FASecretRequest $request)
|
public function add2FASecret(Add2FASecretRequest $request)
|
||||||
|
@ -281,35 +263,32 @@ class UserController extends Controller
|
||||||
$currentSecret = $request->session()->get('current2FA');
|
$currentSecret = $request->session()->get('current2FA');
|
||||||
$isValid = Google2FA::verifyKey($currentSecret, $request->otp);
|
$isValid = Google2FA::verifyKey($currentSecret, $request->otp);
|
||||||
|
|
||||||
if ($isValid)
|
if ($isValid) {
|
||||||
{
|
$request->user()->twofa_secret = $currentSecret;
|
||||||
$request->user()->twofa_secret = $currentSecret;
|
$request->user()->save();
|
||||||
$request->user()->save();
|
|
||||||
|
|
||||||
Log::warning('SECURITY: User activated two-factor authentication', [
|
Log::warning('SECURITY: User activated two-factor authentication', [
|
||||||
'initiator' => $request->user()->email,
|
'initiator' => $request->user()->email,
|
||||||
'ip' => $request->ip()
|
'ip' => $request->ip(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
Google2FA::login();
|
Google2FA::login();
|
||||||
|
|
||||||
Log::warning('SECURITY: Started two factor session automatically', [
|
Log::warning('SECURITY: Started two factor session automatically', [
|
||||||
'initiator' => $request->user()->email,
|
'initiator' => $request->user()->email,
|
||||||
'ip' => $request->ip()
|
'ip' => $request->ip(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$request->session()->forget('current2FA');
|
$request->session()->forget('current2FA');
|
||||||
|
|
||||||
if ($request->session()->has('twofaAttemptFailed'))
|
if ($request->session()->has('twofaAttemptFailed')) {
|
||||||
$request->session()->forget('twofaAttemptFailed');
|
$request->session()->forget('twofaAttemptFailed');
|
||||||
|
}
|
||||||
|
|
||||||
|
$request->session()->flash('success', '2FA succesfully enabled! You\'ll now be prompted for an OTP each time you log in.');
|
||||||
$request->session()->flash('success', '2FA succesfully enabled! You\'ll now be prompted for an OTP each time you log in.');
|
} else {
|
||||||
}
|
$request->session()->flash('error', 'Incorrect code. Please reopen the 2FA settings panel and try again.');
|
||||||
else
|
$request->session()->put('twofaAttemptFailed', true);
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'Incorrect code. Please reopen the 2FA settings panel and try again.');
|
|
||||||
$request->session()->put('twofaAttemptFailed', true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
@ -318,47 +297,41 @@ class UserController extends Controller
|
||||||
public function remove2FASecret(Remove2FASecretRequest $request)
|
public function remove2FASecret(Remove2FASecretRequest $request)
|
||||||
{
|
{
|
||||||
Log::warning('SECURITY: Disabling two factor authentication (user initiated)', [
|
Log::warning('SECURITY: Disabling two factor authentication (user initiated)', [
|
||||||
'initiator' => $request->user()->email,
|
'initiator' => $request->user()->email,
|
||||||
'ip' => $request->ip()
|
'ip' => $request->ip(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$request->user()->twofa_secret = null;
|
$request->user()->twofa_secret = null;
|
||||||
$request->user()->save();
|
$request->user()->save();
|
||||||
|
|
||||||
$request->session()->flash('success', 'Two-factor authentication disabled.');
|
$request->session()->flash('success', 'Two-factor authentication disabled.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function terminate(Request $request, User $user)
|
public function terminate(Request $request, User $user)
|
||||||
{
|
{
|
||||||
$this->authorize('terminate', User::class);
|
$this->authorize('terminate', User::class);
|
||||||
|
|
||||||
// TODO: move logic to policy
|
// TODO: move logic to policy
|
||||||
if (!$user->isStaffMember() || $user->is(Auth::user()))
|
if (! $user->isStaffMember() || $user->is(Auth::user())) {
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'You cannot terminate this user.');
|
$request->session()->flash('error', 'You cannot terminate this user.');
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($user->roles as $role)
|
foreach ($user->roles as $role) {
|
||||||
{
|
if ($role->name == 'user') {
|
||||||
if ($role->name == 'user')
|
continue;
|
||||||
{
|
}
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$user->removeRole($role->name);
|
$user->removeRole($role->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
Log::info('User ' . $user->name . ' has just been demoted.');
|
Log::info('User '.$user->name.' has just been demoted.');
|
||||||
$request->session()->flash('success', 'User terminated successfully.');
|
$request->session()->flash('success', 'User terminated successfully.');
|
||||||
|
|
||||||
//TODO: Dispatch event
|
//TODO: Dispatch event
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +1,45 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Http\Requests\VacancyRequest;
|
|
||||||
use App\Http\Requests\VacancyEditRequest;
|
|
||||||
|
|
||||||
use App\Vacancy;
|
|
||||||
use App\User;
|
|
||||||
use App\Form;
|
use App\Form;
|
||||||
|
use App\Http\Requests\VacancyEditRequest;
|
||||||
|
use App\Http\Requests\VacancyRequest;
|
||||||
use App\Notifications\VacancyClosed;
|
use App\Notifications\VacancyClosed;
|
||||||
|
use App\User;
|
||||||
|
use App\Vacancy;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use Illuminate\Support\Facades\Auth;
|
|
||||||
|
|
||||||
|
|
||||||
class VacancyController extends Controller
|
class VacancyController extends Controller
|
||||||
{
|
{
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
$this->authorize('viewAny', Vacancy::class);
|
$this->authorize('viewAny', Vacancy::class);
|
||||||
|
|
||||||
return view('dashboard.administration.positions')
|
return view('dashboard.administration.positions')
|
||||||
->with([
|
->with([
|
||||||
'forms' => Form::all(),
|
'forms' => Form::all(),
|
||||||
'vacancies' => Vacancy::all()
|
'vacancies' => Vacancy::all(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,13 +48,12 @@ class VacancyController extends Controller
|
||||||
$this->authorize('create', Vacancy::class);
|
$this->authorize('create', Vacancy::class);
|
||||||
$form = Form::find($request->vacancyFormID);
|
$form = Form::find($request->vacancyFormID);
|
||||||
|
|
||||||
if (!is_null($form))
|
if (! is_null($form)) {
|
||||||
{
|
/* note: since we can't convert HTML back to Markdown, we'll have to do the converting when the user requests a page,
|
||||||
/* note: since we can't convert HTML back to Markdown, we'll have to do the converting when the user requests a page,
|
* and leave the database with Markdown only so it can be used and edited everywhere.
|
||||||
* and leave the database with Markdown only so it can be used and edited everywhere.
|
* for several vacancies, this would require looping through all of them and replacing MD with HTML, which is obviously not the most clean solution;
|
||||||
* for several vacancies, this would require looping through all of them and replacing MD with HTML, which is obviously not the most clean solution;
|
* however, the Model can be configured to return MD instead of HTML on that specific field saving us from looping.
|
||||||
* however, the Model can be configured to return MD instead of HTML on that specific field saving us from looping.
|
*/
|
||||||
*/
|
|
||||||
Vacancy::create([
|
Vacancy::create([
|
||||||
|
|
||||||
'vacancyName' => $request->vacancyName,
|
'vacancyName' => $request->vacancyName,
|
||||||
|
@ -49,48 +63,40 @@ class VacancyController extends Controller
|
||||||
'permissionGroupName' => $request->permissionGroup,
|
'permissionGroupName' => $request->permissionGroup,
|
||||||
'discordRoleID' => $request->discordRole,
|
'discordRoleID' => $request->discordRole,
|
||||||
'vacancyFormID' => $request->vacancyFormID,
|
'vacancyFormID' => $request->vacancyFormID,
|
||||||
'vacancyCount' => $request->vacancyCount
|
'vacancyCount' => $request->vacancyCount,
|
||||||
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$request->session()->flash('success', 'Vacancy successfully opened. It will now show in the home page.');
|
$request->session()->flash('success', 'Vacancy successfully opened. It will now show in the home page.');
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$request->session()->flash('error', 'You cannot create a vacancy without a valid form.');
|
$request->session()->flash('error', 'You cannot create a vacancy without a valid form.');
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function updatePositionAvailability(Request $request, $status, Vacancy $vacancy)
|
public function updatePositionAvailability(Request $request, $status, Vacancy $vacancy)
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->authorize('update', $vacancy);
|
$this->authorize('update', $vacancy);
|
||||||
|
|
||||||
if (!is_null($vacancy))
|
if (! is_null($vacancy)) {
|
||||||
{
|
|
||||||
$type = 'success';
|
$type = 'success';
|
||||||
|
|
||||||
switch ($status)
|
switch ($status) {
|
||||||
{
|
|
||||||
case 'open':
|
case 'open':
|
||||||
$vacancy->open();
|
$vacancy->open();
|
||||||
$message = "Position successfully opened!";
|
$message = 'Position successfully opened!';
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'close':
|
case 'close':
|
||||||
$vacancy->close();
|
$vacancy->close();
|
||||||
$message = "Position successfully closed!";
|
$message = 'Position successfully closed!';
|
||||||
|
|
||||||
foreach(User::all() as $user)
|
foreach (User::all() as $user) {
|
||||||
{
|
if ($user->isStaffMember()) {
|
||||||
if ($user->isStaffMember())
|
$user->notify(new VacancyClosed($vacancy));
|
||||||
{
|
}
|
||||||
$user->notify(new VacancyClosed($vacancy));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -99,40 +105,36 @@ class VacancyController extends Controller
|
||||||
$type = 'error';
|
$type = 'error';
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$message = "The position you're trying to update doesn't exist!";
|
$message = "The position you're trying to update doesn't exist!";
|
||||||
$type = "error";
|
$type = 'error';
|
||||||
}
|
}
|
||||||
|
|
||||||
$request->session()->flash($type, $message);
|
$request->session()->flash($type, $message);
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function edit(Request $request, Vacancy $vacancy)
|
public function edit(Request $request, Vacancy $vacancy)
|
||||||
{
|
{
|
||||||
$this->authorize('update', $vacancy);
|
$this->authorize('update', $vacancy);
|
||||||
|
|
||||||
return view('dashboard.administration.editposition')
|
return view('dashboard.administration.editposition')
|
||||||
->with('vacancy', $vacancy);
|
->with('vacancy', $vacancy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function update(VacancyEditRequest $request, Vacancy $vacancy)
|
public function update(VacancyEditRequest $request, Vacancy $vacancy)
|
||||||
{
|
{
|
||||||
$this->authorize('update', $vacancy);
|
$this->authorize('update', $vacancy);
|
||||||
|
|
||||||
$vacancy->vacancyFullDescription = $request->vacancyFullDescription;
|
$vacancy->vacancyFullDescription = $request->vacancyFullDescription;
|
||||||
$vacancy->vacancyDescription = $request->vacancyDescription;
|
$vacancy->vacancyDescription = $request->vacancyDescription;
|
||||||
$vacancy->vacancyCount = $request->vacancyCount;
|
$vacancy->vacancyCount = $request->vacancyCount;
|
||||||
|
|
||||||
$vacancy->save();
|
$vacancy->save();
|
||||||
|
|
||||||
$request->session()->flash('success', 'Vacancy successfully updated.');
|
$request->session()->flash('success', 'Vacancy successfully updated.');
|
||||||
return redirect()->back();
|
|
||||||
|
|
||||||
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,34 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
use App\Http\Requests\VoteRequest;
|
use App\Http\Requests\VoteRequest;
|
||||||
use App\Jobs\ProcessVoteList;
|
|
||||||
use App\Vote;
|
use App\Vote;
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class VoteController extends Controller
|
class VoteController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
public function vote(VoteRequest $voteRequest, Application $application)
|
public function vote(VoteRequest $voteRequest, Application $application)
|
||||||
{
|
{
|
||||||
$this->authorize('create', Vote::class);
|
$this->authorize('create', Vote::class);
|
||||||
|
@ -23,9 +39,8 @@ class VoteController extends Controller
|
||||||
]);
|
]);
|
||||||
$vote->application()->attach($application->id);
|
$vote->application()->attach($application->id);
|
||||||
|
|
||||||
|
Log::info('User '.Auth::user()->name.' has voted in applicant '.$application->user->name.'\'s application', [
|
||||||
Log::info('User ' . Auth::user()->name . ' has voted in applicant ' . $application->user->name . '\'s application', [
|
'voteType' => $voteRequest->voteType,
|
||||||
'voteType' => $voteRequest->voteType
|
|
||||||
]);
|
]);
|
||||||
$voteRequest->session()->flash('success', 'Your vote has been registered!');
|
$voteRequest->session()->flash('success', 'Your vote has been registered!');
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http;
|
namespace App\Http;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
||||||
|
@ -70,6 +89,6 @@ class Kernel extends HttpKernel
|
||||||
'localizationRedirect' => \Mcamara\LaravelLocalization\Middleware\LaravelLocalizationRedirectFilter::class,
|
'localizationRedirect' => \Mcamara\LaravelLocalization\Middleware\LaravelLocalizationRedirectFilter::class,
|
||||||
'localeSessionRedirect' => \Mcamara\LaravelLocalization\Middleware\LocaleSessionRedirect::class,
|
'localeSessionRedirect' => \Mcamara\LaravelLocalization\Middleware\LocaleSessionRedirect::class,
|
||||||
'localeCookieRedirect' => \Mcamara\LaravelLocalization\Middleware\LocaleCookieRedirect::class,
|
'localeCookieRedirect' => \Mcamara\LaravelLocalization\Middleware\LocaleCookieRedirect::class,
|
||||||
'localeViewPath' => \Mcamara\LaravelLocalization\Middleware\LaravelLocalizationViewPath::class
|
'localeViewPath' => \Mcamara\LaravelLocalization\Middleware\LaravelLocalizationViewPath::class,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,31 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use App\Application;
|
use App\Application;
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Closure;
|
use Closure;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
use Illuminate\Support\Facades\View;
|
use Illuminate\Support\Facades\View;
|
||||||
|
|
||||||
class ApplicationEligibility
|
class ApplicationEligibility
|
||||||
|
@ -23,37 +42,29 @@ class ApplicationEligibility
|
||||||
{
|
{
|
||||||
$curtime = new Carbon(now());
|
$curtime = new Carbon(now());
|
||||||
|
|
||||||
|
if (Auth::check()) {
|
||||||
if (Auth::check())
|
|
||||||
{
|
|
||||||
$applications = Application::where('applicantUserID', Auth::user()->id)->get();
|
$applications = Application::where('applicantUserID', Auth::user()->id)->get();
|
||||||
$eligible = true;
|
$eligible = true;
|
||||||
|
|
||||||
$daysRemaining = 0;
|
$daysRemaining = 0;
|
||||||
|
|
||||||
if (!$applications->isEmpty())
|
if (! $applications->isEmpty()) {
|
||||||
{
|
foreach ($applications as $application) {
|
||||||
foreach ($applications as $application)
|
|
||||||
{
|
|
||||||
$appTime = Carbon::parse($application->created_at);
|
$appTime = Carbon::parse($application->created_at);
|
||||||
if ($appTime->isSameMonth($curtime))
|
if ($appTime->isSameMonth($curtime)) {
|
||||||
{
|
Log::warning('Notice: Application ID '.$application->id.' was found to be in the same month as today\'s time, making the user '.Auth::user()->name.' ineligible for application');
|
||||||
|
|
||||||
Log::warning('Notice: Application ID ' . $application->id . ' was found to be in the same month as today\'s time, making the user ' . Auth::user()->name . ' ineligible for application');
|
|
||||||
$eligible = false;
|
$eligible = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$allowedTime = Carbon::parse($applications->last()->created_at)->addMonth();
|
$allowedTime = Carbon::parse($applications->last()->created_at)->addMonth();
|
||||||
$daysRemaining = $allowedTime->diffInDays(now());
|
$daysRemaining = $allowedTime->diffInDays(now());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
View::share('isEligibleForApplication', $eligible);
|
View::share('isEligibleForApplication', $eligible);
|
||||||
View::share('eligibilityDaysRemaining', $daysRemaining);
|
View::share('eligibilityDaysRemaining', $daysRemaining);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
|
@ -20,17 +39,11 @@ class Bancheck
|
||||||
$userIP = $request->ip();
|
$userIP = $request->ip();
|
||||||
$anonymousUser = User::where('ipAddress', $userIP)->get();
|
$anonymousUser = User::where('ipAddress', $userIP)->get();
|
||||||
|
|
||||||
|
if (Auth::check() && Auth::user()->isBanned()) {
|
||||||
if (Auth::check() && Auth::user()->isBanned())
|
|
||||||
{
|
|
||||||
View::share('isBanned', true);
|
View::share('isBanned', true);
|
||||||
}
|
} elseif (! $anonymousUser->isEmpty() && User::find($anonymousUser->id)->isBanned()) {
|
||||||
elseif(!$anonymousUser->isEmpty() && User::find($anonymousUser->id)->isBanned())
|
|
||||||
{
|
|
||||||
View::share('isBanned', true);
|
View::share('isBanned', true);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
View::share('isBanned', false);
|
View::share('isBanned', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
|
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
|
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
|
@ -16,11 +35,11 @@ class ForceLogoutMiddleware
|
||||||
*/
|
*/
|
||||||
public function handle($request, Closure $next)
|
public function handle($request, Closure $next)
|
||||||
{
|
{
|
||||||
if (Auth::user()->isBanned())
|
if (Auth::user()->isBanned()) {
|
||||||
{
|
|
||||||
Auth::logout();
|
Auth::logout();
|
||||||
|
|
||||||
$request->session()->flash('error', 'Error: Your session has been forcefully terminated. Please try again in a few days.');
|
$request->session()->flash('error', 'Error: Your session has been forcefully terminated. Please try again in a few days.');
|
||||||
|
|
||||||
return redirect('/');
|
return redirect('/');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use App\Providers\RouteServiceProvider;
|
use App\Providers\RouteServiceProvider;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
|
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Fideloper\Proxy\TrustProxies as Middleware;
|
use Fideloper\Proxy\TrustProxies as Middleware;
|
||||||
|
@ -12,7 +31,7 @@ class TrustProxies extends Middleware
|
||||||
*
|
*
|
||||||
* @var array|string
|
* @var array|string
|
||||||
*/
|
*/
|
||||||
protected $proxies = "*";
|
protected $proxies = '*';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The headers that should be used to detect proxies.
|
* The headers that should be used to detect proxies.
|
||||||
|
|
|
@ -1,15 +1,33 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Closure;
|
|
||||||
use App\Facades\UUID;
|
use App\Facades\UUID;
|
||||||
use Illuminate\Support\Facades\Http;
|
use Closure;
|
||||||
|
|
||||||
class UsernameUUID
|
class UsernameUUID
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Converts a Minecraft username found in the request body to a UUID
|
* Converts a Minecraft username found in the request body to a UUID.
|
||||||
*
|
*
|
||||||
* @param \Illuminate\Http\Request $request
|
* @param \Illuminate\Http\Request $request
|
||||||
* @param \Closure $next
|
* @param \Closure $next
|
||||||
|
@ -18,23 +36,21 @@ class UsernameUUID
|
||||||
public function handle($request, Closure $next)
|
public function handle($request, Closure $next)
|
||||||
{
|
{
|
||||||
$input = $request->all();
|
$input = $request->all();
|
||||||
if (isset($input['uuid']))
|
if (isset($input['uuid'])) {
|
||||||
{
|
try {
|
||||||
try
|
$username = $input['uuid'];
|
||||||
{
|
$input['uuid'] = UUID::toUUID($username);
|
||||||
$username = $input['uuid'];
|
} catch (\InvalidArgumentException $iae) {
|
||||||
$input['uuid'] = UUID::toUUID($username);
|
|
||||||
}
|
|
||||||
catch(\InvalidArgumentException $iae)
|
|
||||||
{
|
|
||||||
report($iae);
|
report($iae);
|
||||||
|
|
||||||
$request->session()->flash('error', $iae->getMessage());
|
$request->session()->flash('error', $iae->getMessage());
|
||||||
|
|
||||||
return redirect(route('register'));
|
return redirect(route('register'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$request->replace($input);
|
$request->replace($input);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -13,7 +32,7 @@ class Add2FASecretRequest extends FormRequest
|
||||||
*/
|
*/
|
||||||
public function authorize()
|
public function authorize()
|
||||||
{
|
{
|
||||||
// current logic only updates currently authenticated user
|
// current logic only updates currently authenticated user
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +44,7 @@ class Add2FASecretRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'otp' => 'required|string|min:6|max:6'
|
'otp' => 'required|string|min:6|max:6',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,29 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
|
||||||
|
|
||||||
class BanUserRequest extends FormRequest
|
class BanUserRequest extends FormRequest
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -28,7 +46,7 @@ class BanUserRequest extends FormRequest
|
||||||
return [
|
return [
|
||||||
'reason' => 'required|string',
|
'reason' => 'required|string',
|
||||||
'durationOperand' => 'nullable|string',
|
'durationOperand' => 'nullable|string',
|
||||||
'durationOperator' => 'nullable|string'
|
'durationOperator' => 'nullable|string',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -25,7 +44,7 @@ class ChangeEmailRequest extends FormRequest
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'currentPassword' => 'required|password',
|
'currentPassword' => 'required|password',
|
||||||
'newEmail' => 'required|email|unique:users,email'
|
'newEmail' => 'required|email|unique:users,email',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -25,7 +44,7 @@ class ChangePasswordRequest extends FormRequest
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'newPassword' => 'required|string|confirmed',
|
'newPassword' => 'required|string|confirmed',
|
||||||
'oldPassword' => 'required|string|password'
|
'oldPassword' => 'required|string|password',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -25,7 +44,7 @@ class DeleteUserRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'confirmPrompt' => 'required|string'
|
'confirmPrompt' => 'required|string',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -25,7 +44,7 @@ class EditTeamRequest extends FormRequest
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'teamDescription' => 'required|string|max:200',
|
'teamDescription' => 'required|string|max:200',
|
||||||
'joinType' => 'required|boolean'
|
'joinType' => 'required|boolean',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -24,7 +43,7 @@ class FlushSessionsRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'currentPasswordFlush' => 'required|password'
|
'currentPasswordFlush' => 'required|password',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,29 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
|
||||||
|
|
||||||
class NewCommentRequest extends FormRequest
|
class NewCommentRequest extends FormRequest
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -27,7 +45,7 @@ class NewCommentRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'comment' => 'required|string|max:600|min:20'
|
'comment' => 'required|string|max:600|min:20',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -24,7 +43,7 @@ class NewTeamRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'teamName' => 'required|max:200|string'
|
'teamName' => 'required|max:200|string',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use App\Profile;
|
use App\Profile;
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
use Illuminate\Support\Facades\Auth;
|
|
||||||
|
|
||||||
class ProfileSave extends FormRequest
|
class ProfileSave extends FormRequest
|
||||||
{
|
{
|
||||||
|
@ -33,7 +51,7 @@ class ProfileSave extends FormRequest
|
||||||
'socialInsta' => 'nullable|string',
|
'socialInsta' => 'nullable|string',
|
||||||
'socialTwitter' => 'nullable|string',
|
'socialTwitter' => 'nullable|string',
|
||||||
'socialDiscord' => 'nullable|string',
|
'socialDiscord' => 'nullable|string',
|
||||||
'socialGithub' => 'nullable|string'
|
'socialGithub' => 'nullable|string',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -25,7 +44,7 @@ class Remove2FASecretRequest extends FormRequest
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'currentPassword' => 'required|password',
|
'currentPassword' => 'required|password',
|
||||||
'consent' => 'required|accepted'
|
'consent' => 'required|accepted',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -24,7 +43,7 @@ class SaveNotesRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'noteText' => 'required|string'
|
'noteText' => 'required|string',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -25,7 +44,7 @@ class SearchPlayerRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'searchTerm' => 'required|string|max:17' // max user char limit set by Mojang
|
'searchTerm' => 'required|string|max:17', // max user char limit set by Mojang
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -24,7 +43,7 @@ class SendInviteRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'user' => 'required|integer'
|
'user' => 'required|integer',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -28,7 +47,7 @@ class UpdateUserRequest extends FormRequest
|
||||||
'email' => 'required|email',
|
'email' => 'required|email',
|
||||||
'name' => 'required|string',
|
'name' => 'required|string',
|
||||||
'uuid' => 'required|max:32|min:32',
|
'uuid' => 'required|max:32|min:32',
|
||||||
'roles' => 'required_without_all'
|
'roles' => 'required_without_all',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -24,16 +43,15 @@ class UserDeleteRequest extends FormRequest
|
||||||
*/
|
*/
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
if (Auth::user()->has2FA())
|
if (Auth::user()->has2FA()) {
|
||||||
{
|
|
||||||
return [
|
return [
|
||||||
'currentPassword' => 'required|password:web',
|
'currentPassword' => 'required|password:web',
|
||||||
'otp' => 'required|integer|max:6'
|
'otp' => 'required|integer|max:6',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'currentPassword' => 'required|password:web'
|
'currentPassword' => 'required|password:web',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,29 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
|
||||||
|
|
||||||
class VacancyEditRequest extends FormRequest
|
class VacancyEditRequest extends FormRequest
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -28,7 +46,7 @@ class VacancyEditRequest extends FormRequest
|
||||||
return [
|
return [
|
||||||
'vacancyDescription' => 'required|string',
|
'vacancyDescription' => 'required|string',
|
||||||
'vacancyFullDescription' => 'nullable|string',
|
'vacancyFullDescription' => 'nullable|string',
|
||||||
'vacancyCount' => 'required|integer|min:1'
|
'vacancyCount' => 'required|integer|min:1',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -30,7 +49,7 @@ class VacancyRequest extends FormRequest
|
||||||
'permissionGroup' => 'required|string',
|
'permissionGroup' => 'required|string',
|
||||||
'discordRole' => 'required|string',
|
'discordRole' => 'required|string',
|
||||||
'vacancyCount' => 'required|integer',
|
'vacancyCount' => 'required|integer',
|
||||||
'vacancyFormID' => 'required|integer'
|
'vacancyFormID' => 'required|integer',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Http\Requests;
|
namespace App\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
@ -24,7 +43,7 @@ class VoteRequest extends FormRequest
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'voteType' => 'required|string|in:VOTE_DENY,VOTE_APPROVE'
|
'voteType' => 'required|string|in:VOTE_DENY,VOTE_APPROVE',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Jobs;
|
namespace App\Jobs;
|
||||||
|
|
||||||
|
use App\Ban;
|
||||||
|
use Carbon\Carbon;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Foundation\Bus\Dispatchable;
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||||||
|
@ -9,15 +30,12 @@ use Illuminate\Queue\InteractsWithQueue;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
use App\Ban;
|
|
||||||
use Carbon\Carbon;
|
|
||||||
|
|
||||||
class CleanBans implements ShouldQueue
|
class CleanBans implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||||
|
|
||||||
|
|
||||||
public $bans;
|
public $bans;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new job instance.
|
* Create a new job instance.
|
||||||
*
|
*
|
||||||
|
@ -34,23 +52,18 @@ class CleanBans implements ShouldQueue
|
||||||
*/
|
*/
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
|
|
||||||
Log::debug('Running automatic ban cleaner...');
|
Log::debug('Running automatic ban cleaner...');
|
||||||
$bans = Ban::all();
|
$bans = Ban::all();
|
||||||
|
|
||||||
if (!is_null($bans))
|
if (! is_null($bans)) {
|
||||||
{
|
foreach ($this->bans as $ban) {
|
||||||
foreach($this->bans as $ban)
|
$bannedUntil = Carbon::parse($ban->bannedUntil);
|
||||||
{
|
|
||||||
$bannedUntil = Carbon::parse($ban->bannedUntil);
|
|
||||||
|
|
||||||
if ($bannedUntil->equalTo(now()))
|
if ($bannedUntil->equalTo(now())) {
|
||||||
{
|
Log::debug('Deleted ban '.$ban->id.' belonging to '.$ban->user->name);
|
||||||
Log::debug('Deleted ban ' . $ban->id . ' belonging to ' . $ban->user->name);
|
$ban->delete();
|
||||||
$ban->delete();
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Listeners;
|
namespace App\Listeners;
|
||||||
|
|
||||||
use App\Events\ApplicationDeniedEvent;
|
use App\Events\ApplicationDeniedEvent;
|
||||||
use App\Notifications\ApplicationDenied;
|
use App\Notifications\ApplicationDenied;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class DenyUser
|
class DenyUser
|
||||||
|
@ -29,9 +46,8 @@ class DenyUser
|
||||||
public function handle(ApplicationDeniedEvent $event)
|
public function handle(ApplicationDeniedEvent $event)
|
||||||
{
|
{
|
||||||
$event->application->setStatus('DENIED');
|
$event->application->setStatus('DENIED');
|
||||||
Log::info('User ' . $event->application->user->name . ' just had their application denied.');
|
Log::info('User '.$event->application->user->name.' just had their application denied.');
|
||||||
|
|
||||||
$event->application->user->notify(new ApplicationDenied($event->application));
|
$event->application->user->notify(new ApplicationDenied($event->application));
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,26 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Listeners;
|
namespace App\Listeners;
|
||||||
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class LogAuthenticationFailure
|
class LogAuthenticationFailure
|
||||||
|
@ -27,10 +44,9 @@ class LogAuthenticationFailure
|
||||||
public function handle($event)
|
public function handle($event)
|
||||||
{
|
{
|
||||||
$targetAccountID = 0;
|
$targetAccountID = 0;
|
||||||
$originalIP = "0.0.0.0";
|
$originalIP = '0.0.0.0';
|
||||||
|
|
||||||
if (isset($event->user->id))
|
if (isset($event->user->id)) {
|
||||||
{
|
|
||||||
$targetAccountID = $event->user->id;
|
$targetAccountID = $event->user->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,26 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Listeners;
|
namespace App\Listeners;
|
||||||
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class LogAuthenticationSuccess
|
class LogAuthenticationSuccess
|
||||||
|
|
|
@ -1,15 +1,30 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Listeners;
|
namespace App\Listeners;
|
||||||
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use App\Events\UserBannedEvent;
|
use App\Events\UserBannedEvent;
|
||||||
use App\Notifications\UserBanned;
|
use App\Notifications\UserBanned;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
|
|
||||||
use App\User;
|
use App\User;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class OnUserBanned
|
class OnUserBanned
|
||||||
{
|
{
|
||||||
|
@ -31,16 +46,12 @@ class OnUserBanned
|
||||||
*/
|
*/
|
||||||
public function handle(UserBannedEvent $event)
|
public function handle(UserBannedEvent $event)
|
||||||
{
|
{
|
||||||
|
Log::warning('User '.$event->user->name.' has just been banned from the site!');
|
||||||
|
|
||||||
Log::warning("User " . $event->user->name . " has just been banned from the site!");
|
foreach (User::all() as $user) {
|
||||||
|
if ($user->isStaffMember()) {
|
||||||
foreach(User::all() as $user)
|
$user->notify((new UserBanned($event->user, $event->ban))->delay(now()->addSeconds(10)));
|
||||||
{
|
}
|
||||||
if ($user->isStaffMember())
|
|
||||||
{
|
|
||||||
$user->notify((new UserBanned($event->user, $event->ban))->delay(now()->addSeconds(10)));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,30 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Listeners;
|
namespace App\Listeners;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
use Illuminate\Auth\Events\Registered;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
|
|
||||||
use App\User;
|
|
||||||
use App\Notifications\NewUser;
|
use App\Notifications\NewUser;
|
||||||
|
use App\User;
|
||||||
|
use Illuminate\Auth\Events\Registered;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class OnUserRegistration
|
class OnUserRegistration
|
||||||
{
|
{
|
||||||
|
@ -31,12 +47,10 @@ class OnUserRegistration
|
||||||
public function handle(Registered $event)
|
public function handle(Registered $event)
|
||||||
{
|
{
|
||||||
// TODO: Send push notification to online admins via browser (w/ pusher)
|
// TODO: Send push notification to online admins via browser (w/ pusher)
|
||||||
Log::info('User ' . $event->user->name . ' has just registered for an account.');
|
Log::info('User '.$event->user->name.' has just registered for an account.');
|
||||||
|
|
||||||
foreach(User::all() as $user)
|
foreach (User::all() as $user) {
|
||||||
{
|
if ($user->hasRole('admin')) {
|
||||||
if ($user->hasRole('admin'))
|
|
||||||
{
|
|
||||||
$user->notify(new NewUser($event->user));
|
$user->notify(new NewUser($event->user));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,29 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Listeners;
|
namespace App\Listeners;
|
||||||
|
|
||||||
use App\Events\ApplicationApprovedEvent;
|
use App\Events\ApplicationApprovedEvent;
|
||||||
use App\StaffProfile;
|
|
||||||
use App\Notifications\ApplicationApproved;
|
use App\Notifications\ApplicationApproved;
|
||||||
use Carbon\Carbon;
|
use App\StaffProfile;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class PromoteUser
|
class PromoteUser
|
||||||
|
@ -35,19 +51,18 @@ class PromoteUser
|
||||||
$staffProfile = StaffProfile::create([
|
$staffProfile = StaffProfile::create([
|
||||||
'userID' => $event->application->user->id,
|
'userID' => $event->application->user->id,
|
||||||
'approvalDate' => now()->toDateTimeString(),
|
'approvalDate' => now()->toDateTimeString(),
|
||||||
'memberNotes' => 'Approved by staff members. Welcome them to the team!'
|
'memberNotes' => 'Approved by staff members. Welcome them to the team!',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$event->application->user->assignRole('reviewer');
|
$event->application->user->assignRole('reviewer');
|
||||||
|
|
||||||
Log::info('User ' . $event->application->user->name . ' has just been promoted!', [
|
Log::info('User '.$event->application->user->name.' has just been promoted!', [
|
||||||
'newRank' => $event->application->response->vacancy->permissionGroupName,
|
'newRank' => $event->application->response->vacancy->permissionGroupName,
|
||||||
'staffProfileID' => $staffProfile->id
|
'staffProfileID' => $staffProfile->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$event->application->user->notify(new ApplicationApproved($event->application));
|
$event->application->user->notify(new ApplicationApproved($event->application));
|
||||||
// note: Also notify staff
|
// note: Also notify staff
|
||||||
// TODO: Also assign new app role based on the permission group name
|
// TODO: Also assign new app role based on the permission group name
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Mail;
|
namespace App\Mail;
|
||||||
|
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Mail\Mailable;
|
use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Mpociot\Teamwork\TeamInvite;
|
use Mpociot\Teamwork\TeamInvite;
|
||||||
|
@ -12,19 +30,14 @@ class InviteToTeam extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
||||||
|
|
||||||
public $teamName;
|
public $teamName;
|
||||||
|
|
||||||
|
|
||||||
public $name;
|
public $name;
|
||||||
|
|
||||||
|
|
||||||
public $inviterName;
|
public $inviterName;
|
||||||
|
|
||||||
|
|
||||||
public $denyToken;
|
public $denyToken;
|
||||||
|
|
||||||
|
|
||||||
public $acceptToken;
|
public $acceptToken;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -49,7 +62,7 @@ class InviteToTeam extends Mailable
|
||||||
public function build()
|
public function build()
|
||||||
{
|
{
|
||||||
return $this
|
return $this
|
||||||
->subject('You have just been invited to ' . $this->teamName)
|
->subject('You have just been invited to '.$this->teamName)
|
||||||
->view('mail.invited-to-team');
|
->view('mail.invited-to-team');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Mail;
|
namespace App\Mail;
|
||||||
|
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Mail\Mailable;
|
use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
|
|
|
@ -1,32 +1,43 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Mail;
|
namespace App\Mail;
|
||||||
|
|
||||||
|
use App\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Mail\Mailable;
|
use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
use App\User;
|
|
||||||
|
|
||||||
class UserAccountDeleteConfirmation extends Mailable
|
class UserAccountDeleteConfirmation extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public $deleteToken;
|
public $deleteToken;
|
||||||
|
|
||||||
|
|
||||||
public $cancelToken;
|
public $cancelToken;
|
||||||
|
|
||||||
|
|
||||||
public $originalIP;
|
public $originalIP;
|
||||||
|
|
||||||
|
|
||||||
public $name;
|
public $name;
|
||||||
|
|
||||||
|
|
||||||
public $userID;
|
public $userID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,7 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Application;
|
||||||
use App\Facades\Options;
|
use App\Facades\Options;
|
||||||
use App\Traits\Cancellable;
|
use App\Traits\Cancellable;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
|
@ -9,7 +29,6 @@ use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use App\Application;
|
|
||||||
|
|
||||||
class ApplicationApproved extends Notification implements ShouldQueue
|
class ApplicationApproved extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
|
@ -45,10 +64,9 @@ class ApplicationApproved extends Notification implements ShouldQueue
|
||||||
*/
|
*/
|
||||||
public function toMail($notifiable)
|
public function toMail($notifiable)
|
||||||
{
|
{
|
||||||
|
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - ' . $this->application->response->vacancy->vacancyName . ' application approved')
|
->subject(config('app.name').' - '.$this->application->response->vacancy->vacancyName.' application approved')
|
||||||
->line('<br />')
|
->line('<br />')
|
||||||
->line('Congratulations! Our Staff team has reviewed your application today, and your application has been approved.')
|
->line('Congratulations! Our Staff team has reviewed your application today, and your application has been approved.')
|
||||||
->line('You have just received the Reviewer role, which allows you to view and vote on other applications.')
|
->line('You have just received the Reviewer role, which allows you to view and vote on other applications.')
|
||||||
|
@ -62,19 +80,18 @@ class ApplicationApproved extends Notification implements ShouldQueue
|
||||||
|
|
||||||
public function toSlack($notifiable)
|
public function toSlack($notifiable)
|
||||||
{
|
{
|
||||||
|
|
||||||
$url = route('showSingleProfile', ['user' => $notifiable->id]);
|
$url = route('showSingleProfile', ['user' => $notifiable->id]);
|
||||||
$roles = implode(', ', $notifiable->roles->pluck('name')->all());
|
$roles = implode(', ', $notifiable->roles->pluck('name')->all());
|
||||||
|
|
||||||
return (new SlackMessage)
|
return (new SlackMessage)
|
||||||
->success()
|
->success()
|
||||||
->content('A user has been approved on the team. Welcome aboard!')
|
->content('A user has been approved on the team. Welcome aboard!')
|
||||||
->attachment(function($attachment) use ($notifiable, $url, $roles){
|
->attachment(function ($attachment) use ($notifiable, $url, $roles) {
|
||||||
$attachment->title('New staff member')
|
$attachment->title('New staff member')
|
||||||
->fields([
|
->fields([
|
||||||
'Name' => $notifiable->name,
|
'Name' => $notifiable->name,
|
||||||
'Email' => $notifiable->email,
|
'Email' => $notifiable->email,
|
||||||
'Roles' => $roles
|
'Roles' => $roles,
|
||||||
])
|
])
|
||||||
->action('View profile', $url);
|
->action('View profile', $url);
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,19 +1,37 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Application;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use App\Application;
|
|
||||||
|
|
||||||
class ApplicationDenied extends Notification implements ShouldQueue
|
class ApplicationDenied extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Queueable;
|
use Queueable;
|
||||||
|
|
||||||
|
|
||||||
public $application;
|
public $application;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -45,10 +63,9 @@ class ApplicationDenied extends Notification implements ShouldQueue
|
||||||
*/
|
*/
|
||||||
public function toMail($notifiable)
|
public function toMail($notifiable)
|
||||||
{
|
{
|
||||||
|
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - ' . $this->application->response->vacancy->vacancyName . ' application denied')
|
->subject(config('app.name').' - '.$this->application->response->vacancy->vacancyName.' application denied')
|
||||||
->line('Your most recent application has been denied.')
|
->line('Your most recent application has been denied.')
|
||||||
->line('Our review team denies applications for several reasons, including poor answers.')
|
->line('Our review team denies applications for several reasons, including poor answers.')
|
||||||
->line('Please review your application and try again in 30 days.')
|
->line('Please review your application and try again in 30 days.')
|
||||||
|
@ -56,20 +73,19 @@ class ApplicationDenied extends Notification implements ShouldQueue
|
||||||
->line('Better luck next time!');
|
->line('Better luck next time!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function toSlack($notifiable)
|
public function toSlack($notifiable)
|
||||||
{
|
{
|
||||||
$notifiableName = $notifiable->name;
|
$notifiableName = $notifiable->name;
|
||||||
|
|
||||||
return (new SlackMessage)
|
return (new SlackMessage)
|
||||||
->error()
|
->error()
|
||||||
->content('An application has just been denied.')
|
->content('An application has just been denied.')
|
||||||
->attachment(function($attachment) use ($notifiableName){
|
->attachment(function ($attachment) use ($notifiableName) {
|
||||||
$attachment->title('Application denied!')
|
$attachment->title('Application denied!')
|
||||||
->content($notifiableName . '\'s application has just been denied. They can try again in 30 days.');
|
->content($notifiableName.'\'s application has just been denied. They can try again in 30 days.');
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the array representation of the notification.
|
* Get the array representation of the notification.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,13 +1,32 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Facades\Options;
|
||||||
|
use App\Traits\Cancellable;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use App\Traits\Cancellable;
|
|
||||||
use App\Facades\Options;
|
|
||||||
|
|
||||||
class ApplicationMoved extends Notification implements ShouldQueue
|
class ApplicationMoved extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
|
@ -38,7 +57,7 @@ class ApplicationMoved extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - Application Updated')
|
->subject(config('app.name').' - Application Updated')
|
||||||
->line('Your most recent application has been moved up a stage.')
|
->line('Your most recent application has been moved up a stage.')
|
||||||
->line('This means our team has reviewed it and an interview will be scheduled ASAP.')
|
->line('This means our team has reviewed it and an interview will be scheduled ASAP.')
|
||||||
->action('Sign in', url(route('login')))
|
->action('Sign in', url(route('login')))
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
|
@ -42,7 +61,7 @@ class AppointmentFinished extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - Appointment completed')
|
->subject(config('app.name').' - Appointment completed')
|
||||||
->line('Your appointment has been marked as completed!')
|
->line('Your appointment has been marked as completed!')
|
||||||
->line('Please allow an additional day for your application to be fully processed.')
|
->line('Please allow an additional day for your application to be fully processed.')
|
||||||
->action('View applications', url(route('showUserApps')))
|
->action('View applications', url(route('showUserApps')))
|
||||||
|
|
|
@ -1,19 +1,36 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Appointment;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
|
|
||||||
use App\Appointment;
|
|
||||||
|
|
||||||
class AppointmentScheduled extends Notification implements ShouldQueue
|
class AppointmentScheduled extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Queueable;
|
use Queueable;
|
||||||
|
|
||||||
|
|
||||||
protected $appointment;
|
protected $appointment;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -47,10 +64,10 @@ class AppointmentScheduled extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - Interview scheduled')
|
->subject(config('app.name').' - Interview scheduled')
|
||||||
->line('A voice interview has been scheduled for you @ ' . $this->appointment->appointmentDate . '.')
|
->line('A voice interview has been scheduled for you @ '.$this->appointment->appointmentDate.'.')
|
||||||
->line('With the following details: ' . $this->appointment->appointmentDescription)
|
->line('With the following details: '.$this->appointment->appointmentDescription)
|
||||||
->line('This meeting will take place @ ' . $this->appointment->appointmentLocation . '. You will receive an email soon with details on how to join this meeting.')
|
->line('This meeting will take place @ '.$this->appointment->appointmentLocation.'. You will receive an email soon with details on how to join this meeting.')
|
||||||
->line('You are expected to show up at least 5 minutes before the scheduled date.')
|
->line('You are expected to show up at least 5 minutes before the scheduled date.')
|
||||||
->action('Sign in', url(route('login')))
|
->action('Sign in', url(route('login')))
|
||||||
->line('Thank you!');
|
->line('Thank you!');
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
|
@ -42,7 +61,7 @@ class ChangedPassword extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - Account password changed')
|
->subject(config('app.name').' - Account password changed')
|
||||||
->line('The password for the account registered to this email address has just been changed.')
|
->line('The password for the account registered to this email address has just been changed.')
|
||||||
->line('If this was not you, please contact an administrator immediately.')
|
->line('If this was not you, please contact an administrator immediately.')
|
||||||
->action('Sign in', url(route('login')))
|
->action('Sign in', url(route('login')))
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
|
@ -42,7 +61,7 @@ class EmailChanged extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - Email address changed')
|
->subject(config('app.name').' - Email address changed')
|
||||||
->line('The email address for your account has just been updated, either by you or an administrator.')
|
->line('The email address for your account has just been updated, either by you or an administrator.')
|
||||||
->action('Sign in', url(route('login')))
|
->action('Sign in', url(route('login')))
|
||||||
->line('Thank you!');
|
->line('Thank you!');
|
||||||
|
|
|
@ -1,26 +1,42 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Application;
|
||||||
|
use App\Facades\Options;
|
||||||
|
use App\Traits\Cancellable;
|
||||||
|
use App\Vacancy;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use App\Application;
|
|
||||||
use App\Vacancy;
|
|
||||||
|
|
||||||
use App\Traits\Cancellable;
|
|
||||||
use App\Facades\Options;
|
|
||||||
|
|
||||||
class NewApplicant extends Notification implements ShouldQueue
|
class NewApplicant extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Queueable, Cancellable;
|
use Queueable, Cancellable;
|
||||||
|
|
||||||
|
|
||||||
protected $application;
|
protected $application;
|
||||||
|
|
||||||
|
|
||||||
protected $vacancy;
|
protected $vacancy;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -36,8 +52,7 @@ class NewApplicant extends Notification implements ShouldQueue
|
||||||
|
|
||||||
public function channels()
|
public function channels()
|
||||||
{
|
{
|
||||||
if (Options::getOption('enable_slack_notifications') == 1)
|
if (Options::getOption('enable_slack_notifications') == 1) {
|
||||||
{
|
|
||||||
return ['slack'];
|
return ['slack'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,17 +74,15 @@ class NewApplicant extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - New application')
|
->subject(config('app.name').' - New application')
|
||||||
->line('Someone has just applied for a position. Check it out!')
|
->line('Someone has just applied for a position. Check it out!')
|
||||||
->line('You are receiving this because you\'re a staff member at ' . config('app.name') . '.')
|
->line('You are receiving this because you\'re a staff member at '.config('app.name').'.')
|
||||||
->action('View Application', url(route('showUserApp', ['application' => $this->application->id])))
|
->action('View Application', url(route('showUserApp', ['application' => $this->application->id])))
|
||||||
->line('Thank you!');
|
->line('Thank you!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function toSlack($notifiable)
|
public function toSlack($notifiable)
|
||||||
{
|
{
|
||||||
|
|
||||||
$vacancyDetails = [];
|
$vacancyDetails = [];
|
||||||
$vacancyDetails['name'] = $this->vacancy->vacancyName;
|
$vacancyDetails['name'] = $this->vacancy->vacancyName;
|
||||||
$vacancyDetails['slots'] = $this->vacancy->vacancyCount;
|
$vacancyDetails['slots'] = $this->vacancy->vacancyCount;
|
||||||
|
@ -80,16 +93,17 @@ class NewApplicant extends Notification implements ShouldQueue
|
||||||
return (new SlackMessage)
|
return (new SlackMessage)
|
||||||
->success()
|
->success()
|
||||||
->content('Notice: New application coming through. Please review as soon as possible.')
|
->content('Notice: New application coming through. Please review as soon as possible.')
|
||||||
->attachment(function($attachment) use ($vacancyDetails, $url, $applicant){
|
->attachment(function ($attachment) use ($vacancyDetails, $url, $applicant) {
|
||||||
$attachment->title('Application details')
|
$attachment->title('Application details')
|
||||||
->fields([
|
->fields([
|
||||||
'Applied for' => $vacancyDetails['name'],
|
'Applied for' => $vacancyDetails['name'],
|
||||||
'Avaiable positions' => $vacancyDetails['slots'],
|
'Avaiable positions' => $vacancyDetails['slots'],
|
||||||
'Applicant' => $applicant
|
'Applicant' => $applicant,
|
||||||
])
|
])
|
||||||
->action('Review application', $url);
|
->action('Review application', $url);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the array representation of the notification.
|
* Get the array representation of the notification.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,21 +1,39 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Application;
|
||||||
|
use App\Comment;
|
||||||
|
use App\Facades\Options;
|
||||||
|
use App\Traits\Cancellable;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use App\Comment;
|
|
||||||
use App\Application;
|
|
||||||
use App\Traits\Cancellable;
|
|
||||||
use App\Facades\Options;
|
|
||||||
|
|
||||||
class NewComment extends Notification implements ShouldQueue
|
class NewComment extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Queueable, Cancellable;
|
use Queueable, Cancellable;
|
||||||
|
|
||||||
|
|
||||||
protected $application;
|
protected $application;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,7 +61,7 @@ class NewComment extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - New comment')
|
->subject(config('app.name').' - New comment')
|
||||||
->line('Someone has just posted a new comment on an application you follow.')
|
->line('Someone has just posted a new comment on an application you follow.')
|
||||||
->line('You\'re receiving this email because you\'ve voted/commented on this application.')
|
->line('You\'re receiving this email because you\'ve voted/commented on this application.')
|
||||||
->action('Check it out', url(route('showUserApp', ['application' => $this->application->id])))
|
->action('Check it out', url(route('showUserApp', ['application' => $this->application->id])))
|
||||||
|
|
|
@ -1,9 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
|
@ -44,23 +62,22 @@ class NewContact extends Notification
|
||||||
public function toMail($notifiable)
|
public function toMail($notifiable)
|
||||||
{
|
{
|
||||||
if ($this->message->has([
|
if ($this->message->has([
|
||||||
'message',
|
'message',
|
||||||
'ip',
|
'ip',
|
||||||
'email'
|
'email',
|
||||||
]))
|
])) {
|
||||||
{
|
return (new MailMessage)
|
||||||
return (new MailMessage)
|
|
||||||
->line('We\'ve received a new contact form submission in the StaffManagement app center.')
|
->line('We\'ve received a new contact form submission in the StaffManagement app center.')
|
||||||
->line('This is what they sent: ')
|
->line('This is what they sent: ')
|
||||||
->line('')
|
->line('')
|
||||||
->line($this->message->get('message'))
|
->line($this->message->get('message'))
|
||||||
->line('')
|
->line('')
|
||||||
->line('This message was received from ' . $this->message->get('ip') . ' and submitted by ' . $this->message->get('email') . '.')
|
->line('This message was received from '.$this->message->get('ip').' and submitted by '.$this->message->get('email').'.')
|
||||||
->action('Sign in', url(route('login')))
|
->action('Sign in', url(route('login')))
|
||||||
->line('Thank you!');
|
->line('Thank you!');
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new \InvalidArgumentException("Invalid arguments supplied to NewContact!");
|
throw new \InvalidArgumentException('Invalid arguments supplied to NewContact!');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,17 +1,35 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Facades\Options;
|
||||||
|
use App\Facades\UUID;
|
||||||
|
use App\Traits\Cancellable;
|
||||||
|
use App\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
|
use Illuminate\Notifications\Notification;
|
||||||
use App\User;
|
|
||||||
use App\Facades\UUID;
|
|
||||||
use App\Traits\Cancellable;
|
|
||||||
use App\Facades\Options;
|
|
||||||
|
|
||||||
class NewUser extends Notification implements ShouldQueue
|
class NewUser extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
|
@ -49,8 +67,8 @@ class NewUser extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - New user')
|
->subject(config('app.name').' - New user')
|
||||||
->line($this->user->name . ' has just registered to our site.')
|
->line($this->user->name.' has just registered to our site.')
|
||||||
->line('You are receiving this email because you opted to receive new user notifications.')
|
->line('You are receiving this email because you opted to receive new user notifications.')
|
||||||
->action('View profile', url(route('showSingleProfile', ['user' => $this->user->id])))
|
->action('View profile', url(route('showSingleProfile', ['user' => $this->user->id])))
|
||||||
->line('Thank you!');
|
->line('Thank you!');
|
||||||
|
@ -58,28 +76,26 @@ class NewUser extends Notification implements ShouldQueue
|
||||||
|
|
||||||
public function toSlack($notifiable)
|
public function toSlack($notifiable)
|
||||||
{
|
{
|
||||||
$user = [];
|
$user = [];
|
||||||
|
|
||||||
$user['name'] = $this->user->name;
|
$user['name'] = $this->user->name;
|
||||||
$user['email'] = $this->user->email;
|
$user['email'] = $this->user->email;
|
||||||
$user['username'] = UUID::toUsername($this->user->uuid);
|
$user['username'] = UUID::toUsername($this->user->uuid);
|
||||||
|
|
||||||
$date = \Carbon\Carbon::parse($this->user->created_at);
|
$date = \Carbon\Carbon::parse($this->user->created_at);
|
||||||
$user['created_at'] = $date->englishMonth . ' ' . $date->day . ' ' . $date->year;
|
$user['created_at'] = $date->englishMonth.' '.$date->day.' '.$date->year;
|
||||||
|
|
||||||
return (new SlackMessage)
|
return (new SlackMessage)
|
||||||
->success()
|
->success()
|
||||||
->content('A new user has signed up!')
|
->content('A new user has signed up!')
|
||||||
->attachment(function($attachment) use ($user){
|
->attachment(function ($attachment) use ($user) {
|
||||||
|
|
||||||
$attachment->title('User details')
|
$attachment->title('User details')
|
||||||
->fields([
|
->fields([
|
||||||
'Email address' => $user['email'],
|
'Email address' => $user['email'],
|
||||||
'Name' => $user['name'],
|
'Name' => $user['name'],
|
||||||
'Minecraft Username' => $user['username'],
|
'Minecraft Username' => $user['username'],
|
||||||
'Registration date' => $user['created_at']
|
'Registration date' => $user['created_at'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,33 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Ban;
|
||||||
|
use App\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
|
|
||||||
use App\User;
|
|
||||||
use App\Ban;
|
|
||||||
|
|
||||||
class UserBanned extends Notification implements ShouldQueue
|
class UserBanned extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Queueable;
|
use Queueable;
|
||||||
|
@ -17,6 +35,7 @@ class UserBanned extends Notification implements ShouldQueue
|
||||||
protected $user;
|
protected $user;
|
||||||
|
|
||||||
protected $ban;
|
protected $ban;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new notification instance.
|
* Create a new notification instance.
|
||||||
*
|
*
|
||||||
|
@ -50,8 +69,8 @@ class UserBanned extends Notification implements ShouldQueue
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->line('Hello, ')
|
->line('Hello, ')
|
||||||
->line('Moderators have just banned user ' . $this->user->name . ' for ' . $this->ban->reason)
|
->line('Moderators have just banned user '.$this->user->name.' for '.$this->ban->reason)
|
||||||
->line('This ban will remain in effect until ' . $this->ban->bannedUntil . '.')
|
->line('This ban will remain in effect until '.$this->ban->bannedUntil.'.')
|
||||||
->action('View profile', url(route('showSingleProfile', ['user' => $this->user->id])))
|
->action('View profile', url(route('showSingleProfile', ['user' => $this->user->id])))
|
||||||
->line('Thank you!');
|
->line('Thank you!');
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,35 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright © 2020 Miguel Nogueira
|
||||||
|
*
|
||||||
|
* This file is part of Raspberry Staff Manager.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
namespace App\Notifications;
|
namespace App\Notifications;
|
||||||
|
|
||||||
|
use App\Facades\Options;
|
||||||
|
use App\Traits\Cancellable;
|
||||||
|
use App\Vacancy;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
use App\Vacancy;
|
|
||||||
use App\Facades\Options;
|
|
||||||
use App\Traits\Cancellable;
|
|
||||||
|
|
||||||
class VacancyClosed extends Notification implements ShouldQueue
|
class VacancyClosed extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels, Cancellable;
|
use Queueable, SerializesModels, Cancellable;
|
||||||
|
@ -25,7 +43,7 @@ class VacancyClosed extends Notification implements ShouldQueue
|
||||||
*/
|
*/
|
||||||
public function __construct(Vacancy $vacancy)
|
public function __construct(Vacancy $vacancy)
|
||||||
{
|
{
|
||||||
$this->vacancy = $vacancy;
|
$this->vacancy = $vacancy;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function optOut($notifiable)
|
public function optOut($notifiable)
|
||||||
|
@ -43,8 +61,8 @@ class VacancyClosed extends Notification implements ShouldQueue
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||||
->subject(config('app.name') . ' - Vacancy Closed')
|
->subject(config('app.name').' - Vacancy Closed')
|
||||||
->line('The vacancy ' . $this->vacancy->vacancyName . ', with ' . $this->vacancy->vacancyCount . ' remaining slots, has just been closed.')
|
->line('The vacancy '.$this->vacancy->vacancyName.', with '.$this->vacancy->vacancyCount.' remaining slots, has just been closed.')
|
||||||
->line('Please be aware that this position may be deleted/reopened any time.')
|
->line('Please be aware that this position may be deleted/reopened any time.')
|
||||||
->action('View positions', url(route('showPositions')))
|
->action('View positions', url(route('showPositions')))
|
||||||
->line('Thank you!');
|
->line('Thank you!');
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue