mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:47:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			146 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			146 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Filters;
 | 
						|
 | 
						|
use App\Models\Project;
 | 
						|
use App\Models\User;
 | 
						|
use Illuminate\Database\Eloquent\Builder;
 | 
						|
use Illuminate\Support\Facades\DB;
 | 
						|
use Illuminate\Support\Facades\Gate;
 | 
						|
 | 
						|
/**
 | 
						|
 * ProjectFilters.
 | 
						|
 */
 | 
						|
class ProjectFilters extends QueryFilters
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Filter based on search text.
 | 
						|
     *
 | 
						|
     * @param string query filter
 | 
						|
     * @return Builder
 | 
						|
     * @deprecated
 | 
						|
     */
 | 
						|
    public function filter(string $filter = '') : Builder
 | 
						|
    {
 | 
						|
        if (strlen($filter) == 0) {
 | 
						|
            return $this->builder;
 | 
						|
        }
 | 
						|
 | 
						|
        return  $this->builder->where(function ($query) use ($filter) {
 | 
						|
            $query->where('projects.name', 'like', '%'.$filter.'%')
 | 
						|
                  ->orWhere('projects.public_notes', 'like', '%'.$filter.'%')
 | 
						|
                  ->orWhere('projects.private_notes', 'like', '%'.$filter.'%');
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Filters the list based on the status
 | 
						|
     * archived, active, deleted.
 | 
						|
     *
 | 
						|
     * @param string filter
 | 
						|
     * @return Builder
 | 
						|
     */
 | 
						|
    public function status(string $filter = '') : Builder
 | 
						|
    {
 | 
						|
        if (strlen($filter) == 0) {
 | 
						|
            return $this->builder;
 | 
						|
        }
 | 
						|
 | 
						|
        $table = 'projects';
 | 
						|
        $filters = explode(',', $filter);
 | 
						|
 | 
						|
        return $this->builder->where(function ($query) use ($filters, $table) {
 | 
						|
            $query->whereNull($table.'.id');
 | 
						|
 | 
						|
            if (in_array(parent::STATUS_ACTIVE, $filters)) {
 | 
						|
                $query->orWhereNull($table.'.deleted_at');
 | 
						|
            }
 | 
						|
 | 
						|
            if (in_array(parent::STATUS_ARCHIVED, $filters)) {
 | 
						|
                $query->orWhere(function ($query) use ($table) {
 | 
						|
                    $query->whereNotNull($table.'.deleted_at');
 | 
						|
 | 
						|
                    if (! in_array($table, ['users'])) {
 | 
						|
                        $query->where($table.'.is_deleted', '=', 0);
 | 
						|
                    }
 | 
						|
                });
 | 
						|
            }
 | 
						|
 | 
						|
            if (in_array(parent::STATUS_DELETED, $filters)) {
 | 
						|
                $query->orWhere($table.'.is_deleted', '=', 1);
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Sorts the list based on $sort.
 | 
						|
     *
 | 
						|
     * @param string sort formatted as column|asc
 | 
						|
     * @return Builder
 | 
						|
     */
 | 
						|
    public function sort(string $sort) : Builder
 | 
						|
    {
 | 
						|
        $sort_col = explode('|', $sort);
 | 
						|
 | 
						|
        return $this->builder->orderBy($sort_col[0], $sort_col[1]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the base query.
 | 
						|
     *
 | 
						|
     * @param int company_id
 | 
						|
     * @param User $user
 | 
						|
     * @return Builder
 | 
						|
     * @deprecated
 | 
						|
     */
 | 
						|
    public function baseQuery(int $company_id, User $user) : Builder
 | 
						|
    {
 | 
						|
        $query = DB::table('projects')
 | 
						|
            ->join('companies', 'companies.id', '=', 'projects.company_id')
 | 
						|
            ->where('projects.company_id', '=', $company_id)
 | 
						|
            //->whereRaw('(projects.name != "" or contacts.first_name != "" or contacts.last_name != "" or contacts.email != "")') // filter out buy now invoices
 | 
						|
            ->select(
 | 
						|
                'projects.id',
 | 
						|
                'projects.name',
 | 
						|
                'projects.public_notes',
 | 
						|
                'projects.private_notes',
 | 
						|
                'projects.created_at',
 | 
						|
                'projects.created_at as project_created_at',
 | 
						|
                'projects.deleted_at',
 | 
						|
                'projects.is_deleted',
 | 
						|
                'projects.user_id',
 | 
						|
                'projects.assigned_user_id',
 | 
						|
            );
 | 
						|
 | 
						|
        /*
 | 
						|
         * If the user does not have permissions to view all invoices
 | 
						|
         * limit the user to only the invoices they have created
 | 
						|
         */
 | 
						|
        if (Gate::denies('view-list', Project::class)) {
 | 
						|
            $query->where('projects.user_id', '=', $user->id);
 | 
						|
        }
 | 
						|
 | 
						|
        return $query;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Filters the query by the users company ID.
 | 
						|
     *
 | 
						|
     * @return Illuminate\Database\Query\Builder
 | 
						|
     */
 | 
						|
    public function entityFilter()
 | 
						|
    {
 | 
						|
        //return $this->builder->whereCompanyId(auth()->user()->company()->id);
 | 
						|
        return $this->builder->whereCompanyId(auth()->user()->company()->id)->orWhere('company_id', null);
 | 
						|
    }
 | 
						|
}
 |