1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/app/Http/Controllers/TokenController.php
2021-09-25 20:13:01 -04:00

164 lines
3.8 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\AccountToken;
use App\Services\TokenService;
use Auth;
use Redirect;
use Session;
use URL;
use Validator;
use View;
/**
* Class TokenController.
*/
class TokenController extends BaseController
{
/**
* @var TokenService
*/
protected $tokenService;
/**
* TokenController constructor.
*
* @param TokenService $tokenService
*/
public function __construct(TokenService $tokenService)
{
//parent::__construct();
$this->tokenService = $tokenService;
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
public function index()
{
return Redirect::to('settings/' . ACCOUNT_API_TOKENS);
}
/**
* @return \Illuminate\Http\JsonResponse
*/
public function getDatatable()
{
return $this->tokenService->getDatatable(Auth::user()->id);
}
/**
* @param $publicId
*
* @return \Illuminate\Contracts\View\View
*/
public function edit($publicId)
{
$token = AccountToken::where('account_id', '=', Auth::user()->account_id)
->where('public_id', '=', $publicId)->firstOrFail();
$data = [
'token' => $token,
'method' => 'PUT',
'url' => 'tokens/'.$publicId,
'title' => trans('texts.edit_token'),
];
return View::make('accounts.token', $data);
}
/**
* @param $publicId
*
* @return \Illuminate\Http\RedirectResponse
*/
public function update($publicId)
{
return $this->save($publicId);
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
public function store()
{
return $this->save();
}
/**
* @return \Illuminate\Contracts\View\View
*/
public function create()
{
$data = [
'token' => null,
'method' => 'POST',
'url' => 'tokens',
'title' => trans('texts.add_token'),
];
return View::make('accounts.token', $data);
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
public function bulk()
{
$action = \Request::input('bulk_action');
$ids = \Request::input('bulk_public_id');
$count = $this->tokenService->bulk($ids, $action);
Session::flash('message', trans('texts.archived_token'));
return Redirect::to('settings/' . ACCOUNT_API_TOKENS);
}
/**
* @param bool $tokenPublicId
*
* @return $this|\Illuminate\Http\RedirectResponse
*/
public function save($tokenPublicId = false)
{
if (Auth::user()->account->hasFeature(FEATURE_API)) {
$rules = [
'name' => 'required',
];
if ($tokenPublicId) {
$token = AccountToken::where('account_id', '=', Auth::user()->account_id)
->where('public_id', '=', $tokenPublicId)->firstOrFail();
}
$validator = Validator::make(\Request::all(), $rules);
if ($validator->fails()) {
return Redirect::to($tokenPublicId ? 'tokens/edit' : 'tokens/create')->withInput()->withErrors($validator);
}
if ($tokenPublicId) {
$token->name = trim(\Request::input('name'));
} else {
$token = AccountToken::createNew();
$token->name = trim(\Request::input('name'));
$token->token = strtolower(str_random(RANDOM_KEY_LENGTH));
}
$token->save();
if ($tokenPublicId) {
$message = trans('texts.updated_token');
} else {
$message = trans('texts.created_token');
}
Session::flash('message', $message);
}
return Redirect::to('settings/' . ACCOUNT_API_TOKENS);
}
}