rbrecruiter/app/Vacancy.php

83 lines
2.2 KiB
PHP
Raw Normal View History

<?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/>.
*/
namespace App;
2020-10-21 00:01:41 +00:00
use GrahamCampbell\Markdown\Facades\Markdown;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Log;
class Vacancy extends Model
{
public $fillable = [
'permissionGroupName',
'vacancyName',
'vacancyDescription',
'vacancyFullDescription',
'discordRoleID',
'vacancyFormID',
'vacancyCount',
'vacancyStatus',
2020-10-21 00:01:41 +00:00
'vacancySlug',
];
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
}
}
public function forms()
{
return $this->belongsTo('App\Form', 'vacancyFormID', 'id');
}
public function open()
{
$this->update([
2020-10-21 00:01:41 +00:00
'vacancyStatus' => 'OPEN',
]);
2020-10-21 00:01:41 +00:00
Log::info('Vacancies: Vacancy '.$this->id.' ('.$this->vacancyName.') opened by '.Auth::user()->name);
}
public function close()
{
$this->update([
2020-10-21 00:01:41 +00:00
'vacancyStatus' => 'CLOSED',
]);
2020-10-21 00:01:41 +00:00
Log::warning('Vacancies: Vacancy '.$this->id.' ('.$this->vacancyName.') closed by '.Auth::user()->name);
}
}