Exemplo n.º 1
0
 public function getDelete($id)
 {
     $table = null;
     if (!empty($id)) {
         $table = Contact::whereId($id)->whereCustomerId(Auth::customer()->user()->id);
         $table->delete();
     }
     return response()->json(array('msg' => 'ok', 'state' => 1, 'data' => null));
 }
Exemplo n.º 2
0
 /**
  * Handle an incoming request.
  *
  * @param  \Illuminate\Http\Request  $request
  * @param  \Closure  $next
  * @return mixed
  */
 public function handle($request, Closure $next, $guard = 'user')
 {
     $authenticated = Auth::guard($guard)->check();
     if ($guard == 'client' && !empty($request->invitation_key)) {
         $old_key = session('invitation_key');
         if ($old_key && $old_key != $request->invitation_key) {
             if ($this->getInvitationContactId($old_key) != $this->getInvitationContactId($request->invitation_key)) {
                 // This is a different client; reauthenticate
                 $authenticated = false;
                 Auth::guard($guard)->logout();
             }
         }
         Session::put('invitation_key', $request->invitation_key);
     }
     if ($guard == 'client') {
         $invitation_key = session('invitation_key');
         $account_id = $this->getInvitationAccountId($invitation_key);
         if (Auth::guard('user')->check() && Auth::user('user')->account_id === $account_id) {
             // This is an admin; let them pretend to be a client
             $authenticated = true;
         }
         // Does this account require portal passwords?
         $account = Account::whereId($account_id)->first();
         if ($account && (!$account->enable_portal_password || !$account->hasFeature(FEATURE_CLIENT_PORTAL_PASSWORD))) {
             $authenticated = true;
         }
         if (!$authenticated) {
             $contact = Contact::whereId($this->getInvitationContactId($invitation_key))->first();
             if ($contact && !$contact->password) {
                 $authenticated = true;
             }
         }
     }
     if (!$authenticated) {
         if ($request->ajax()) {
             return response('Unauthorized.', 401);
         } else {
             return redirect()->guest($guard == 'client' ? '/client/login' : '/login');
         }
     }
     return $next($request);
 }