mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-01 02:44:35 -04:00
Unique email validation for contact
This commit is contained in:
parent
09139a981d
commit
b2f7740fa1
@ -77,7 +77,16 @@ class Handler extends ExceptionHandler
|
|||||||
{
|
{
|
||||||
return response()->json(['message'=>'Fatal error', 500]);
|
return response()->json(['message'=>'Fatal error', 500]);
|
||||||
}
|
}
|
||||||
|
/* else if ($exception instanceof \Illuminate\Session\TokenMismatchException)
|
||||||
|
{
|
||||||
|
return redirect()
|
||||||
|
->back()
|
||||||
|
->withInput($request->except('password'))
|
||||||
|
->with([
|
||||||
|
'message' => ctrans('texts.token_expired'),
|
||||||
|
'message-type' => 'danger']);
|
||||||
|
}
|
||||||
|
*/
|
||||||
return parent::render($request, $exception);
|
return parent::render($request, $exception);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,7 @@ namespace App\Http\Controllers\ClientPortal;
|
|||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Http\Requests\ClientPortal\UpdateContactRequest;
|
use App\Http\Requests\ClientPortal\UpdateContactRequest;
|
||||||
|
use App\Http\Requests\ClientPortal\UpdateSettingsRequest;
|
||||||
use App\Jobs\Util\UploadAvatar;
|
use App\Jobs\Util\UploadAvatar;
|
||||||
use App\Models\ClientContact;
|
use App\Models\ClientContact;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
@ -89,4 +90,14 @@ class ProfileController extends Controller
|
|||||||
return back();
|
return back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function settings()
|
||||||
|
{
|
||||||
|
return view('portal.default.settings.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function updateSettings(UpdateSettingsRequest $request)
|
||||||
|
{
|
||||||
|
|
||||||
|
return back();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,10 +12,13 @@
|
|||||||
namespace App\Http\Requests\ClientPortal;
|
namespace App\Http\Requests\ClientPortal;
|
||||||
|
|
||||||
use App\Http\Requests\Request;
|
use App\Http\Requests\Request;
|
||||||
|
use App\Utils\Traits\MakesHash;
|
||||||
use Zend\Diactoros\Response\JsonResponse;
|
use Zend\Diactoros\Response\JsonResponse;
|
||||||
|
|
||||||
class UpdateContactRequest extends Request
|
class UpdateContactRequest extends Request
|
||||||
{
|
{
|
||||||
|
use MakesHash;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if the user is authorized to make this request.
|
* Determine if the user is authorized to make this request.
|
||||||
*
|
*
|
||||||
@ -24,7 +27,7 @@ class UpdateContactRequest extends Request
|
|||||||
|
|
||||||
public function authorize() : bool
|
public function authorize() : bool
|
||||||
{
|
{
|
||||||
return true;
|
return $this->encodePrimaryKey(auth()->user()->id) === request()->segment(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function rules()
|
public function rules()
|
||||||
@ -33,7 +36,8 @@ class UpdateContactRequest extends Request
|
|||||||
return [
|
return [
|
||||||
'first_name' => 'required',
|
'first_name' => 'required',
|
||||||
'last_name' => 'required',
|
'last_name' => 'required',
|
||||||
'email' => 'required|email',
|
//'email' => 'required|email',
|
||||||
|
'email' => 'required|email|unique:client_contacts,email,' . auth()->user()->id,
|
||||||
'password' => 'sometimes|nullable|min:6|confirmed',
|
'password' => 'sometimes|nullable|min:6|confirmed',
|
||||||
'file' => 'sometimes|nullable|max:100000|mimes:png,svg,jpeg,gif,jpg,bmp'
|
'file' => 'sometimes|nullable|max:100000|mimes:png,svg,jpeg,gif,jpg,bmp'
|
||||||
];
|
];
|
||||||
|
43
app/Http/Requests/ClientPortal/UpdateSettingsRequest.php
Normal file
43
app/Http/Requests/ClientPortal/UpdateSettingsRequest.php
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Invoice Ninja (https://invoiceninja.com)
|
||||||
|
*
|
||||||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
||||||
|
*
|
||||||
|
* @license https://opensource.org/licenses/AAL
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace App\Http\Requests\ClientPortal;
|
||||||
|
|
||||||
|
use App\Http\Requests\Request;
|
||||||
|
use App\Utils\Traits\MakesHash;
|
||||||
|
|
||||||
|
class UpdateSettingsRequest extends Request
|
||||||
|
{
|
||||||
|
use MakesHash;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if the user is authorized to make this request.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
|
||||||
|
public function authorize() : bool
|
||||||
|
{
|
||||||
|
return $this->encodePrimaryKey(auth()->user()->id) === request()->segment(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function rules()
|
||||||
|
{
|
||||||
|
|
||||||
|
return [
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -51,7 +51,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<a class="dropdown-item" href="{{ route('client.profile.edit', ['id' => auth()->user()->hashed_id])}}">
|
<a class="dropdown-item" href="{{ route('client.profile.edit', ['id' => auth()->user()->hashed_id])}}">
|
||||||
<i class="fa fa-user"></i> @lang('texts.profile')</a>
|
<i class="fa fa-user"></i> @lang('texts.profile')</a>
|
||||||
<a class="dropdown-item" href="">
|
<a class="dropdown-item" href="{{ route('client.profile.settings', ['id' => auth()->user()->hashed_id])}}">
|
||||||
<i class="fa fa-wrench"></i> @lang('texts.settings')</a>
|
<i class="fa fa-wrench"></i> @lang('texts.settings')</a>
|
||||||
|
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
|
110
resources/views/portal/default/settings/index.blade.php
Normal file
110
resources/views/portal/default/settings/index.blade.php
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
@extends('portal.default.layouts.master')
|
||||||
|
@push('css')
|
||||||
|
<link href="/vendors/css/select2.min.css" rel="stylesheet">
|
||||||
|
<link href="/vendors/css/select2-bootstrap4.css" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
select {border: 1px solid !important;}
|
||||||
|
.select2-container--bootstrap4 .select2-selection--single
|
||||||
|
{
|
||||||
|
border: 1px solid #e4e7ea !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
@endpush
|
||||||
|
@section('body')
|
||||||
|
<main class="main">
|
||||||
|
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row" style="padding-top: 30px;">
|
||||||
|
|
||||||
|
@if (Session::has('error'))
|
||||||
|
<div class="alert alert-danger">{!! Session::get('error') !!}</div>
|
||||||
|
@endif
|
||||||
|
<div class="col-sm-3" style="padding-bottom: 10px;">
|
||||||
|
|
||||||
|
{!! Former::framework('TwitterBootstrap4'); !!}
|
||||||
|
|
||||||
|
{!! Former::horizontal_open()
|
||||||
|
->id('update_settings')
|
||||||
|
->route('client.profile.update_settings', auth()->user()->hashed_id)
|
||||||
|
->method('PUT'); !!}
|
||||||
|
|
||||||
|
@csrf
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
|
||||||
|
<div class="card-header">
|
||||||
|
|
||||||
|
<strong>{{ ctrans('texts.avatar') }}</strong>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card-body align-items-center">
|
||||||
|
|
||||||
|
@if(auth()->user()->avatar)
|
||||||
|
<img src="{{ auth()->user()->avatar }}" class="img-fluid">
|
||||||
|
@else
|
||||||
|
<i class="fa fa-user fa-5x"></i>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
{!! Former::file('avatar')
|
||||||
|
->max(2, 'MB')
|
||||||
|
->accept('image')
|
||||||
|
->label('')
|
||||||
|
->inlineHelp(trans('texts.logo_help')) !!}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card-footer">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-sm-6" style="padding-bottom: 10px;">
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
|
||||||
|
<div class="card-header">
|
||||||
|
|
||||||
|
<strong> {{ ctrans('texts.user_details') }}</strong>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card-body">
|
||||||
|
|
||||||
|
{!! Former::text('first_name')->placeholder( ctrans('texts.first_name'))->label('')->value(auth()->user()->first_name)!!}
|
||||||
|
|
||||||
|
{!! Former::text('last_name')->placeholder( ctrans('texts.last_name'))->label('')->value(auth()->user()->last_name) !!}
|
||||||
|
|
||||||
|
{!! Former::text('email')->placeholder( ctrans('texts.email'))->label('')->value(auth()->user()->email) !!}
|
||||||
|
|
||||||
|
{!! Former::text('phone')->placeholder( ctrans('texts.phone'))->label('')->value(auth()->user()->phone) !!}
|
||||||
|
|
||||||
|
{!! Former::password('password')->placeholder( ctrans('texts.password'))->label('') !!}
|
||||||
|
|
||||||
|
{!! Former::password('password_confirmation')->placeholder( ctrans('texts.confirm_password'))->label('') !!}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card-footer">
|
||||||
|
|
||||||
|
<button class="btn btn-primary pull-right">{{ ctrans('texts.save') }}</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{!! Former::close() !!}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
@endsection
|
@ -18,6 +18,8 @@ Route::group(['middleware' => ['auth:contact'], 'prefix' => 'client', 'as' => 'c
|
|||||||
Route::get('invoices', 'ClientPortal\InvoiceController@index')->name('invoices.index'); // name = (dashboard. index / create / show / update / destroy / edit
|
Route::get('invoices', 'ClientPortal\InvoiceController@index')->name('invoices.index'); // name = (dashboard. index / create / show / update / destroy / edit
|
||||||
Route::get('profile/{client_contact}/edit', 'ClientPortal\ProfileController@edit')->name('profile.edit');
|
Route::get('profile/{client_contact}/edit', 'ClientPortal\ProfileController@edit')->name('profile.edit');
|
||||||
Route::put('profile/{client_contact}/edit', 'ClientPortal\ProfileController@update')->name('profile.update');
|
Route::put('profile/{client_contact}/edit', 'ClientPortal\ProfileController@update')->name('profile.update');
|
||||||
|
Route::get('profile/{client_contact}/settings', 'ClientPortal\ProfileController@settings')->name('profile.settings');
|
||||||
|
Route::put('profile/{client_contact}/settings', 'ClientPortal\ProfileController@updateSettings')->name('profile.update_settings');
|
||||||
|
|
||||||
Route::post('document', 'ClientPortal\DocumentController@store')->name('document.store');
|
Route::post('document', 'ClientPortal\DocumentController@store')->name('document.store');
|
||||||
Route::delete('document', 'ClientPortal\DocumentController@destroy')->name('document.destroy');
|
Route::delete('document', 'ClientPortal\DocumentController@destroy')->name('document.destroy');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user