2020-02-28 13:11:56 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-02-28 13:11:56 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-02-28 13:11:56 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-02-28 13:11:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2020-02-29 22:03:43 +01:00
|
|
|
use App\Exceptions\ModelNotFoundException;
|
2020-02-28 13:11:56 +01:00
|
|
|
use App\Http\Requests\CompanyUser\UpdateCompanyUserRequest;
|
|
|
|
use App\Models\CompanyUser;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Transformers\CompanyUserTransformer;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Http\Response;
|
2020-02-28 13:11:56 +01:00
|
|
|
|
|
|
|
class CompanyUserController extends BaseController
|
|
|
|
{
|
|
|
|
protected $entity_type = CompanyUser::class;
|
|
|
|
|
|
|
|
protected $entity_transformer = CompanyUserTransformer::class;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return void
|
2020-02-28 13:11:56 +01:00
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new resource.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return void
|
2020-02-28 13:11:56 +01:00
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-07-22 04:25:58 +02:00
|
|
|
public function store()
|
2020-02-28 13:11:56 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param int $id
|
|
|
|
* @return void
|
2020-02-28 13:11:56 +01:00
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified resource.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param int $id
|
|
|
|
* @return void
|
2020-02-28 13:11:56 +01:00
|
|
|
*/
|
|
|
|
public function edit($id)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/company_users",
|
|
|
|
* operationId="updateCompanyUser",
|
|
|
|
* tags={"company_user"},
|
|
|
|
* summary="Update a company user record",
|
|
|
|
* description="Attempts to update a company user record. A company user can modify only their settings fields. Full access for Admin users",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="The Company User response",
|
2020-06-21 23:30:25 +02:00
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
2020-02-28 13:11:56 +01:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/CompanyUser"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param UpdateCompanyUserRequest $request
|
|
|
|
* @param User $user
|
|
|
|
* @return Response|mixed|void
|
2020-02-28 13:11:56 +01:00
|
|
|
*/
|
|
|
|
public function update(UpdateCompanyUserRequest $request, User $user)
|
|
|
|
{
|
2020-07-22 04:25:58 +02:00
|
|
|
$company = auth()->user()->company();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$company_user = CompanyUser::whereUserId($user->id)->whereCompanyId($company->id)->first();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $company_user) {
|
2021-01-24 23:24:13 +01:00
|
|
|
throw new ModelNotFoundException(ctrans('texts.company_user_not_found'));
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auth()->user()->isAdmin()) {
|
|
|
|
$company_user->fill($request->input('company_user'));
|
|
|
|
} else {
|
2021-06-19 23:34:30 +02:00
|
|
|
$company_user->settings = $request->input('company_user')['settings'];
|
|
|
|
$company_user->notifications = $request->input('company_user')['notifications'];
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$company_user->save();
|
2020-02-28 13:11:56 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
return $this->itemResponse($company_user->fresh());
|
2020-02-28 13:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified resource from storage.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param int $id
|
|
|
|
* @return void
|
2020-02-28 13:11:56 +01:00
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|