2019-04-10 12:58:47 -04:00
|
|
|
# Copyright 2019 New Vector Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import logging
|
2021-08-23 08:14:17 -04:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2019-04-10 12:58:47 -04:00
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
from twisted.web.server import Request
|
|
|
|
|
|
|
|
from synapse.http.server import HttpServer, respond_with_html
|
|
|
|
from synapse.http.servlet import RestServlet, parse_string
|
|
|
|
from synapse.http.site import SynapseRequest
|
|
|
|
from synapse.types import JsonDict
|
2019-04-10 12:58:47 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from ._base import client_patterns
|
2019-04-10 12:58:47 -04:00
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2019-04-10 12:58:47 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class AccountValidityRenewServlet(RestServlet):
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/account_validity/renew$")
|
2019-04-10 12:58:47 -04:00
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-04-10 12:58:47 -04:00
|
|
|
|
|
|
|
self.hs = hs
|
|
|
|
self.account_activity_handler = hs.get_account_validity_handler()
|
2019-04-16 15:13:59 -04:00
|
|
|
self.auth = hs.get_auth()
|
2021-04-19 14:16:34 -04:00
|
|
|
self.account_renewed_template = (
|
|
|
|
hs.config.account_validity.account_validity_account_renewed_template
|
|
|
|
)
|
|
|
|
self.account_previously_renewed_template = (
|
|
|
|
hs.config.account_validity.account_validity_account_previously_renewed_template
|
|
|
|
)
|
|
|
|
self.invalid_token_template = (
|
|
|
|
hs.config.account_validity.account_validity_invalid_token_template
|
|
|
|
)
|
2019-04-10 12:58:47 -04:00
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
async def on_GET(self, request: Request) -> None:
|
|
|
|
renewal_token = parse_string(request, "token", required=True)
|
2019-04-10 12:58:47 -04:00
|
|
|
|
2021-04-19 14:16:34 -04:00
|
|
|
(
|
|
|
|
token_valid,
|
|
|
|
token_stale,
|
|
|
|
expiration_ts,
|
2021-08-23 08:14:17 -04:00
|
|
|
) = await self.account_activity_handler.renew_account(renewal_token)
|
2019-07-31 12:12:04 -04:00
|
|
|
|
|
|
|
if token_valid:
|
|
|
|
status_code = 200
|
2021-04-19 14:16:34 -04:00
|
|
|
response = self.account_renewed_template.render(expiration_ts=expiration_ts)
|
|
|
|
elif token_stale:
|
|
|
|
status_code = 200
|
|
|
|
response = self.account_previously_renewed_template.render(
|
|
|
|
expiration_ts=expiration_ts
|
|
|
|
)
|
2019-07-31 12:12:04 -04:00
|
|
|
else:
|
|
|
|
status_code = 404
|
2021-04-19 14:16:34 -04:00
|
|
|
response = self.invalid_token_template.render(expiration_ts=expiration_ts)
|
2019-04-10 12:58:47 -04:00
|
|
|
|
2020-07-01 09:10:23 -04:00
|
|
|
respond_with_html(request, status_code, response)
|
2019-04-10 12:58:47 -04:00
|
|
|
|
|
|
|
|
2019-04-16 15:13:59 -04:00
|
|
|
class AccountValiditySendMailServlet(RestServlet):
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/account_validity/send_mail$")
|
2019-04-16 15:13:59 -04:00
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-04-16 15:13:59 -04:00
|
|
|
|
|
|
|
self.hs = hs
|
|
|
|
self.account_activity_handler = hs.get_account_validity_handler()
|
|
|
|
self.auth = hs.get_auth()
|
2021-04-19 14:16:34 -04:00
|
|
|
self.account_validity_renew_by_email_enabled = (
|
|
|
|
hs.config.account_validity.account_validity_renew_by_email_enabled
|
|
|
|
)
|
2019-04-16 15:13:59 -04:00
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
async def on_POST(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_expired=True)
|
2019-04-16 15:13:59 -04:00
|
|
|
user_id = requester.user.to_string()
|
2019-12-05 11:46:37 -05:00
|
|
|
await self.account_activity_handler.send_renewal_email_to_user(user_id)
|
2019-04-16 15:13:59 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
return 200, {}
|
2019-04-16 15:13:59 -04:00
|
|
|
|
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2019-04-10 12:58:47 -04:00
|
|
|
AccountValidityRenewServlet(hs).register(http_server)
|
2019-04-16 15:13:59 -04:00
|
|
|
AccountValiditySendMailServlet(hs).register(http_server)
|