LostController.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Bernhard Posselt <dev@bernhard-posselt.com>
  7. * @author Bjoern Schiessle <bjoern@schiessle.org>
  8. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  9. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  10. * @author Joas Schilling <coding@schilljs.com>
  11. * @author Julius Haertl <jus@bitgrid.net>
  12. * @author Julius Härtl <jus@bitgrid.net>
  13. * @author Lukas Reschke <lukas@statuscode.ch>
  14. * @author Morris Jobke <hey@morrisjobke.de>
  15. * @author Rémy Jacquin <remy@remyj.fr>
  16. * @author Robin Appelman <robin@icewind.nl>
  17. * @author Roeland Jago Douma <roeland@famdouma.nl>
  18. * @author Thomas Müller <thomas.mueller@tmit.eu>
  19. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  20. *
  21. * @license AGPL-3.0
  22. *
  23. * This code is free software: you can redistribute it and/or modify
  24. * it under the terms of the GNU Affero General Public License, version 3,
  25. * as published by the Free Software Foundation.
  26. *
  27. * This program is distributed in the hope that it will be useful,
  28. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  29. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  30. * GNU Affero General Public License for more details.
  31. *
  32. * You should have received a copy of the GNU Affero General Public License, version 3,
  33. * along with this program. If not, see <http://www.gnu.org/licenses/>
  34. *
  35. */
  36. namespace OC\Core\Controller;
  37. use Exception;
  38. use OCP\AppFramework\Controller;
  39. use OCP\AppFramework\Http\JSONResponse;
  40. use OCP\AppFramework\Http\TemplateResponse;
  41. use OCP\AppFramework\Services\IInitialState;
  42. use OCP\Defaults;
  43. use OCP\Encryption\IEncryptionModule;
  44. use OCP\Encryption\IManager;
  45. use OCP\EventDispatcher\IEventDispatcher;
  46. use OCP\HintException;
  47. use OCP\IConfig;
  48. use OCP\IL10N;
  49. use OCP\IRequest;
  50. use OCP\IURLGenerator;
  51. use OCP\IUser;
  52. use OCP\IUserManager;
  53. use OCP\Mail\IMailer;
  54. use OCP\Security\VerificationToken\IVerificationToken;
  55. use OCP\Security\VerificationToken\InvalidTokenException;
  56. use OC\Authentication\TwoFactorAuth\Manager;
  57. use OC\Core\Events\BeforePasswordResetEvent;
  58. use OC\Core\Events\PasswordResetEvent;
  59. use OC\Core\Exception\ResetPasswordException;
  60. use OC\Security\RateLimiting\Exception\RateLimitExceededException;
  61. use OC\Security\RateLimiting\Limiter;
  62. use Psr\Log\LoggerInterface;
  63. use function array_filter;
  64. use function count;
  65. use function reset;
  66. /**
  67. * Class LostController
  68. *
  69. * Successfully changing a password will emit the post_passwordReset hook.
  70. *
  71. * @package OC\Core\Controller
  72. */
  73. class LostController extends Controller {
  74. protected string $from;
  75. public function __construct(
  76. string $appName,
  77. IRequest $request,
  78. private IURLGenerator $urlGenerator,
  79. private IUserManager $userManager,
  80. private Defaults $defaults,
  81. private IL10N $l10n,
  82. private IConfig $config,
  83. string $defaultMailAddress,
  84. private IManager $encryptionManager,
  85. private IMailer $mailer,
  86. private LoggerInterface $logger,
  87. private Manager $twoFactorManager,
  88. private IInitialState $initialState,
  89. private IVerificationToken $verificationToken,
  90. private IEventDispatcher $eventDispatcher,
  91. private Limiter $limiter,
  92. ) {
  93. parent::__construct($appName, $request);
  94. $this->from = $defaultMailAddress;
  95. }
  96. /**
  97. * Someone wants to reset their password:
  98. *
  99. * @PublicPage
  100. * @NoCSRFRequired
  101. * @BruteForceProtection(action=passwordResetEmail)
  102. * @AnonRateThrottle(limit=10, period=300)
  103. */
  104. public function resetform(string $token, string $userId): TemplateResponse {
  105. try {
  106. $this->checkPasswordResetToken($token, $userId);
  107. } catch (Exception $e) {
  108. if ($this->config->getSystemValue('lost_password_link', '') !== 'disabled'
  109. || ($e instanceof InvalidTokenException
  110. && !in_array($e->getCode(), [InvalidTokenException::TOKEN_NOT_FOUND, InvalidTokenException::USER_UNKNOWN]))
  111. ) {
  112. $response = new TemplateResponse(
  113. 'core', 'error', [
  114. "errors" => [["error" => $e->getMessage()]]
  115. ],
  116. TemplateResponse::RENDER_AS_GUEST
  117. );
  118. $response->throttle();
  119. return $response;
  120. }
  121. return new TemplateResponse('core', 'error', [
  122. 'errors' => [['error' => $this->l10n->t('Password reset is disabled')]]
  123. ],
  124. TemplateResponse::RENDER_AS_GUEST
  125. );
  126. }
  127. $this->initialState->provideInitialState('resetPasswordUser', $userId);
  128. $this->initialState->provideInitialState('resetPasswordTarget',
  129. $this->urlGenerator->linkToRouteAbsolute('core.lost.setPassword', ['userId' => $userId, 'token' => $token])
  130. );
  131. return new TemplateResponse(
  132. 'core',
  133. 'login',
  134. [],
  135. 'guest'
  136. );
  137. }
  138. /**
  139. * @throws Exception
  140. */
  141. protected function checkPasswordResetToken(string $token, string $userId): void {
  142. try {
  143. $user = $this->userManager->get($userId);
  144. $this->verificationToken->check($token, $user, 'lostpassword', $user ? $user->getEMailAddress() : '', true);
  145. } catch (InvalidTokenException $e) {
  146. $error = $e->getCode() === InvalidTokenException::TOKEN_EXPIRED
  147. ? $this->l10n->t('Could not reset password because the token is expired')
  148. : $this->l10n->t('Could not reset password because the token is invalid');
  149. throw new Exception($error, (int)$e->getCode(), $e);
  150. }
  151. }
  152. private function error(string $message, array $additional = []): array {
  153. return array_merge(['status' => 'error', 'msg' => $message], $additional);
  154. }
  155. private function success(array $data = []): array {
  156. return array_merge($data, ['status' => 'success']);
  157. }
  158. /**
  159. * @PublicPage
  160. * @BruteForceProtection(action=passwordResetEmail)
  161. * @AnonRateThrottle(limit=10, period=300)
  162. */
  163. public function email(string $user): JSONResponse {
  164. if ($this->config->getSystemValue('lost_password_link', '') !== '') {
  165. return new JSONResponse($this->error($this->l10n->t('Password reset is disabled')));
  166. }
  167. $user = trim($user);
  168. \OCP\Util::emitHook(
  169. '\OCA\Files_Sharing\API\Server2Server',
  170. 'preLoginNameUsedAsUserName',
  171. ['uid' => &$user]
  172. );
  173. // FIXME: use HTTP error codes
  174. try {
  175. $this->sendEmail($user);
  176. } catch (ResetPasswordException $e) {
  177. // Ignore the error since we do not want to leak this info
  178. $this->logger->warning('Could not send password reset email: ' . $e->getMessage());
  179. } catch (Exception $e) {
  180. $this->logger->error($e->getMessage(), ['exception' => $e]);
  181. }
  182. $response = new JSONResponse($this->success());
  183. $response->throttle();
  184. return $response;
  185. }
  186. /**
  187. * @PublicPage
  188. * @BruteForceProtection(action=passwordResetEmail)
  189. * @AnonRateThrottle(limit=10, period=300)
  190. */
  191. public function setPassword(string $token, string $userId, string $password, bool $proceed): JSONResponse {
  192. if ($this->encryptionManager->isEnabled() && !$proceed) {
  193. $encryptionModules = $this->encryptionManager->getEncryptionModules();
  194. foreach ($encryptionModules as $module) {
  195. /** @var IEncryptionModule $instance */
  196. $instance = call_user_func($module['callback']);
  197. // this way we can find out whether per-user keys are used or a system wide encryption key
  198. if ($instance->needDetailedAccessList()) {
  199. return new JSONResponse($this->error('', ['encryption' => true]));
  200. }
  201. }
  202. }
  203. try {
  204. $this->checkPasswordResetToken($token, $userId);
  205. $user = $this->userManager->get($userId);
  206. $this->eventDispatcher->dispatchTyped(new BeforePasswordResetEvent($user, $password));
  207. \OC_Hook::emit('\OC\Core\LostPassword\Controller\LostController', 'pre_passwordReset', ['uid' => $userId, 'password' => $password]);
  208. if (strlen($password) > IUserManager::MAX_PASSWORD_LENGTH) {
  209. throw new HintException('Password too long', $this->l10n->t('Password is too long. Maximum allowed length is 469 characters.'));
  210. }
  211. if (!$user->setPassword($password)) {
  212. throw new Exception();
  213. }
  214. $this->eventDispatcher->dispatchTyped(new PasswordResetEvent($user, $password));
  215. \OC_Hook::emit('\OC\Core\LostPassword\Controller\LostController', 'post_passwordReset', ['uid' => $userId, 'password' => $password]);
  216. $this->twoFactorManager->clearTwoFactorPending($userId);
  217. $this->config->deleteUserValue($userId, 'core', 'lostpassword');
  218. @\OC::$server->getUserSession()->unsetMagicInCookie();
  219. } catch (HintException $e) {
  220. $response = new JSONResponse($this->error($e->getHint()));
  221. $response->throttle();
  222. return $response;
  223. } catch (Exception $e) {
  224. $response = new JSONResponse($this->error($e->getMessage()));
  225. $response->throttle();
  226. return $response;
  227. }
  228. return new JSONResponse($this->success(['user' => $userId]));
  229. }
  230. /**
  231. * @throws ResetPasswordException
  232. * @throws \OCP\PreConditionNotMetException
  233. */
  234. protected function sendEmail(string $input): void {
  235. $user = $this->findUserByIdOrMail($input);
  236. $email = $user->getEMailAddress();
  237. if (empty($email)) {
  238. throw new ResetPasswordException('Could not send reset e-mail since there is no email for username ' . $input);
  239. }
  240. try {
  241. $this->limiter->registerUserRequest('lostpasswordemail', 5, 1800, $user);
  242. } catch (RateLimitExceededException $e) {
  243. throw new ResetPasswordException('Could not send reset e-mail, 5 of them were already sent in the last 30 minutes', 0, $e);
  244. }
  245. // Generate the token. It is stored encrypted in the database with the
  246. // secret being the users' email address appended with the system secret.
  247. // This makes the token automatically invalidate once the user changes
  248. // their email address.
  249. $token = $this->verificationToken->create($user, 'lostpassword', $email);
  250. $link = $this->urlGenerator->linkToRouteAbsolute('core.lost.resetform', ['userId' => $user->getUID(), 'token' => $token]);
  251. $emailTemplate = $this->mailer->createEMailTemplate('core.ResetPassword', [
  252. 'link' => $link,
  253. ]);
  254. $emailTemplate->setSubject($this->l10n->t('%s password reset', [$this->defaults->getName()]));
  255. $emailTemplate->addHeader();
  256. $emailTemplate->addHeading($this->l10n->t('Password reset'));
  257. $emailTemplate->addBodyText(
  258. htmlspecialchars($this->l10n->t('Click the following button to reset your password. If you have not requested the password reset, then ignore this email.')),
  259. $this->l10n->t('Click the following link to reset your password. If you have not requested the password reset, then ignore this email.')
  260. );
  261. $emailTemplate->addBodyButton(
  262. htmlspecialchars($this->l10n->t('Reset your password')),
  263. $link,
  264. false
  265. );
  266. $emailTemplate->addFooter();
  267. try {
  268. $message = $this->mailer->createMessage();
  269. $message->setTo([$email => $user->getDisplayName()]);
  270. $message->setFrom([$this->from => $this->defaults->getName()]);
  271. $message->useTemplate($emailTemplate);
  272. $this->mailer->send($message);
  273. } catch (Exception $e) {
  274. // Log the exception and continue
  275. $this->logger->error($e->getMessage(), ['app' => 'core', 'exception' => $e]);
  276. }
  277. }
  278. /**
  279. * @throws ResetPasswordException
  280. */
  281. protected function findUserByIdOrMail(string $input): IUser {
  282. $user = $this->userManager->get($input);
  283. if ($user instanceof IUser) {
  284. if (!$user->isEnabled()) {
  285. throw new ResetPasswordException('User ' . $user->getUID() . ' is disabled');
  286. }
  287. return $user;
  288. }
  289. $users = array_filter($this->userManager->getByEmail($input), function (IUser $user) {
  290. return $user->isEnabled();
  291. });
  292. if (count($users) === 1) {
  293. return reset($users);
  294. }
  295. throw new ResetPasswordException('Could not find user ' . $input);
  296. }
  297. }