mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
174 lines
4.4 KiB
PHP
174 lines
4.4 KiB
PHP
<?php namespace App\Models;
|
|
|
|
use Auth;
|
|
use Eloquent;
|
|
use Utils;
|
|
|
|
class EntityModel extends Eloquent
|
|
{
|
|
public $timestamps = true;
|
|
protected $hidden = ['id'];
|
|
|
|
public static function createNew($context = null)
|
|
{
|
|
$className = get_called_class();
|
|
$entity = new $className();
|
|
|
|
if ($context) {
|
|
$entity->user_id = $context instanceof User ? $context->id : $context->user_id;
|
|
$entity->account_id = $context->account_id;
|
|
} elseif (Auth::check()) {
|
|
$entity->user_id = Auth::user()->id;
|
|
$entity->account_id = Auth::user()->account_id;
|
|
} else {
|
|
Utils::fatalError();
|
|
}
|
|
|
|
if(method_exists($className, 'withTrashed')){
|
|
$lastEntity = $className::withTrashed()
|
|
->scope(false, $entity->account_id);
|
|
} else {
|
|
$lastEntity = $className::scope(false, $entity->account_id);
|
|
}
|
|
|
|
$lastEntity = $lastEntity->orderBy('public_id', 'DESC')
|
|
->first();
|
|
|
|
if ($lastEntity) {
|
|
$entity->public_id = $lastEntity->public_id + 1;
|
|
} else {
|
|
$entity->public_id = 1;
|
|
}
|
|
|
|
return $entity;
|
|
}
|
|
|
|
public static function getPrivateId($publicId)
|
|
{
|
|
$className = get_called_class();
|
|
|
|
return $className::scope($publicId)->withTrashed()->value('id');
|
|
}
|
|
|
|
public function getActivityKey()
|
|
{
|
|
return '[' . $this->getEntityType().':'.$this->public_id.':'.$this->getDisplayName() . ']';
|
|
}
|
|
|
|
/*
|
|
public function getEntityType()
|
|
{
|
|
return '';
|
|
}
|
|
|
|
public function getNmae()
|
|
{
|
|
return '';
|
|
}
|
|
*/
|
|
|
|
public function scopeScope($query, $publicId = false, $accountId = false)
|
|
{
|
|
if (!$accountId) {
|
|
$accountId = Auth::user()->account_id;
|
|
}
|
|
|
|
$query->where($this->getTable() .'.account_id', '=', $accountId);
|
|
|
|
if ($publicId) {
|
|
if (is_array($publicId)) {
|
|
$query->whereIn('public_id', $publicId);
|
|
} else {
|
|
$query->wherePublicId($publicId);
|
|
}
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function scopeWithArchived($query)
|
|
{
|
|
return $query->withTrashed()->where('is_deleted', '=', false);
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->public_id;
|
|
}
|
|
|
|
public function getDisplayName()
|
|
{
|
|
return $this->getName();
|
|
}
|
|
|
|
public function setNullValues()
|
|
{
|
|
foreach ($this->fillable as $field) {
|
|
if (strstr($field, '_id') && !$this->$field) {
|
|
$this->$field = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
// converts "App\Models\Client" to "client_id"
|
|
public function getKeyField()
|
|
{
|
|
$class = get_class($this);
|
|
$parts = explode('\\', $class);
|
|
$name = $parts[count($parts)-1];
|
|
return strtolower($name) . '_id';
|
|
}
|
|
|
|
public static function canCreate() {
|
|
return Auth::user()->hasPermission('create_all');
|
|
}
|
|
|
|
public function canEdit() {
|
|
return static::canEditItem($this);
|
|
}
|
|
|
|
public static function canEditItem($item) {
|
|
return Auth::user()->hasPermission('edit_all') || (isset($item->user_id) && Auth::user()->id == $item->user_id);
|
|
}
|
|
|
|
public static function canEditItemById($item_id) {
|
|
if(Auth::user()->hasPermission('edit_all')) {
|
|
return true;
|
|
}
|
|
|
|
return static::whereId($item_id)->first()->user_id == Auth::user()->id;
|
|
}
|
|
|
|
public static function canEditItemByOwner($user_id) {
|
|
if(Auth::user()->hasPermission('edit_all')) {
|
|
return true;
|
|
}
|
|
|
|
return Auth::user()->id == $user_id;
|
|
}
|
|
|
|
public function canView() {
|
|
return static::canViewItem($this);
|
|
}
|
|
|
|
public static function canViewItem($item) {
|
|
return Auth::user()->hasPermission('view_all') || (isset($item->user_id) && Auth::user()->id == $item->user_id);
|
|
}
|
|
|
|
public static function canViewItemById($item_id) {
|
|
if(Auth::user()->hasPermission('view_all')) {
|
|
return true;
|
|
}
|
|
|
|
return static::whereId($item_id)->first()->user_id == Auth::user()->id;
|
|
}
|
|
|
|
public static function canViewItemByOwner($user_id) {
|
|
if(Auth::user()->hasPermission('view_all')) {
|
|
return true;
|
|
}
|
|
|
|
return Auth::user()->id == $user_id;
|
|
}
|
|
}
|