/** * авторизация * @return \Response */ public function login() { Validation::prepareInput(['phone']); $phone = \Input::get('phone'); $password = \Input::get('password'); $selfPassword = null; $validator = Validation::validator(['phone', 'password']); if ($validator->fails()) { Reporter::loginFailValidate($validator); return $this->responseError($validator, 'Некорректные данные'); } Reporter::loginStart($phone, $password); // ключ который мы должны в итоге выдать фронтенду $key = null; // находим у себя $customer = Customer::instance()->initByPhone($phone); if ($customer) { Reporter::loginFoundSelf($customer->get()->agbis_id); // авторизуем по своему паролю if ($customer->checkPassword($password)) { Reporter::loginPasswordSelf($customer->get()->agbis_id); // наш пароль $selfPassword = $password; // в агбис будем входить по внешнему паролю $password = $customer->getExternalPassword(); } } // получаем сессию агбиса try { $api = new Api(); $user = $api->Login_con($phone, $password); $api->memory($user); // запомним отдельно в сессии api if (Input::get('remember')) { $cookie = Customer::instance()->getForeverCookie(); } else { $cookie = Customer::instance()->getTemporaryCookie(); } Reporter::loginExternal($user->id, $phone); // для нас - новый человек if (!$customer) { // пробуем найти по id агбиса $customer = Customer::instance()->initByExternalId($user->id); if ($customer) { // если нашли, это значит изменился телефон, обновим всю информацию $customer->updateCustomerByExternal($phone, $password); } else { // создадим нового $customer = Customer::instance()->createCustomerByExternal($user->id, $phone, $password); } } // устанавливаем пароль в соответствии с успешным входом $customer->doChangePasswordSoft($password, $selfPassword); // по итогу, у нас есть "наш" человек // и мы начинам свою сессию $key = $customer->startSession(); Reporter::loginNewKey($customer->get()->id, $key); $invite = new InviteComponent(); $invite->registerInvite($customer->get()); // обновляем дату-время последнего входа $customer->renewRegisterAt(); // и именно наш ключ отдаем клиенту $response = $this->responseSuccess(['key' => $key], 'Успешная авторизация')->withCookie($cookie); return $response; } catch (\Exception $e) { Reporter::loginFailException($e); return $this->responseException($e, 'Ошибка авторизации', null, 401); } }