2020-04-29 17:15:54 +00:00
|
|
|
<?php
|
|
|
|
|
2020-10-21 00:01:41 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2020-04-29 17:15:54 +00:00
|
|
|
namespace App;
|
|
|
|
|
2020-10-21 00:01:41 +00:00
|
|
|
use GrahamCampbell\Markdown\Facades\Markdown;
|
2020-04-29 17:15:54 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2020-05-07 23:24:56 +00:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
2020-04-29 17:15:54 +00:00
|
|
|
|
|
|
|
class Vacancy extends Model
|
|
|
|
{
|
2020-05-07 23:24:56 +00:00
|
|
|
public $fillable = [
|
|
|
|
|
|
|
|
'permissionGroupName',
|
|
|
|
'vacancyName',
|
|
|
|
'vacancyDescription',
|
2020-07-11 04:34:12 +00:00
|
|
|
'vacancyFullDescription',
|
2020-05-07 23:24:56 +00:00
|
|
|
'discordRoleID',
|
|
|
|
'vacancyFormID',
|
|
|
|
'vacancyCount',
|
2020-05-08 05:06:24 +00:00
|
|
|
'vacancyStatus',
|
2020-10-21 00:01:41 +00:00
|
|
|
'vacancySlug',
|
2020-05-07 23:24:56 +00:00
|
|
|
|
|
|
|
];
|
|
|
|
|
2020-07-11 19:34:26 +00:00
|
|
|
/**
|
2020-10-21 00:01:41 +00:00
|
|
|
* Get the HTML variant of the vacancyFullDescription attribute.
|
|
|
|
*
|
|
|
|
* @param string $value The original value
|
|
|
|
* @return string
|
|
|
|
*/
|
2020-07-11 19:34:26 +00:00
|
|
|
public function getVacancyFullDescriptionAttribute($value)
|
|
|
|
{
|
2020-10-21 00:01:41 +00:00
|
|
|
if (! is_null($value)) {
|
|
|
|
return Markdown::convertToHTML($value);
|
|
|
|
} else {
|
|
|
|
return null;
|
2020-07-11 19:34:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-07 23:24:56 +00:00
|
|
|
public function forms()
|
|
|
|
{
|
2020-05-08 05:06:24 +00:00
|
|
|
return $this->belongsTo('App\Form', 'vacancyFormID', 'id');
|
2020-05-07 23:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function open()
|
|
|
|
{
|
|
|
|
$this->update([
|
2020-10-21 00:01:41 +00:00
|
|
|
'vacancyStatus' => 'OPEN',
|
2020-05-07 23:24:56 +00:00
|
|
|
]);
|
|
|
|
|
2020-10-21 00:01:41 +00:00
|
|
|
Log::info('Vacancies: Vacancy '.$this->id.' ('.$this->vacancyName.') opened by '.Auth::user()->name);
|
2020-05-07 23:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function close()
|
|
|
|
{
|
|
|
|
$this->update([
|
2020-10-21 00:01:41 +00:00
|
|
|
'vacancyStatus' => 'CLOSED',
|
2020-05-07 23:24:56 +00:00
|
|
|
]);
|
|
|
|
|
2020-10-21 00:01:41 +00:00
|
|
|
Log::warning('Vacancies: Vacancy '.$this->id.' ('.$this->vacancyName.') closed by '.Auth::user()->name);
|
2020-05-07 23:24:56 +00:00
|
|
|
}
|
2020-04-29 17:15:54 +00:00
|
|
|
}
|