Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
ed37325b32 | |||
dd6005ffdf | |||
664cd32f81 | |||
33f0eb6c41 | |||
9fd2fa9a78 | |||
3c77f8af4b | |||
545eeda79b | |||
01dba12ed0 | |||
c872d43c3d |
62
app/.github/workflows/main.yml
vendored
62
app/.github/workflows/main.yml
vendored
@ -1,6 +1,12 @@
|
|||||||
name: Test and lint
|
name: SimpleLogin actions
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
@ -9,35 +15,34 @@ jobs:
|
|||||||
- name: Check out repo
|
- name: Check out repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install poetry
|
- name: Install uv
|
||||||
run: pipx install poetry
|
uses: astral-sh/setup-uv@v5
|
||||||
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
# Install a specific version of uv.
|
||||||
cache: 'poetry'
|
version: "0.5.21"
|
||||||
|
enable-cache: true
|
||||||
|
|
||||||
- name: Install OS dependencies
|
- name: Install OS dependencies
|
||||||
if: ${{ matrix.python-version }} == '3.10'
|
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install -y libre2-dev libpq-dev
|
sudo apt install -y libre2-dev libpq-dev
|
||||||
|
|
||||||
|
- name: "Set up Python"
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version-file: "pyproject.toml"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
if: steps.setup-uv.outputs.cache-hit != 'true'
|
||||||
run: poetry install --no-interaction
|
run: uv sync --locked --all-extras
|
||||||
|
|
||||||
- name: Check formatting & linting
|
- name: Check formatting & linting
|
||||||
run: |
|
run: |
|
||||||
poetry run pre-commit run --all-files
|
uv run pre-commit run --all-files
|
||||||
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
max-parallel: 4
|
|
||||||
matrix:
|
|
||||||
python-version: ["3.10"]
|
|
||||||
|
|
||||||
# service containers to run with `postgres-job`
|
# service containers to run with `postgres-job`
|
||||||
services:
|
services:
|
||||||
@ -69,23 +74,26 @@ jobs:
|
|||||||
- name: Check out repo
|
- name: Check out repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install poetry
|
- name: Install uv
|
||||||
run: pipx install poetry
|
uses: astral-sh/setup-uv@v5
|
||||||
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
# Install a specific version of uv.
|
||||||
cache: 'poetry'
|
version: "0.5.21"
|
||||||
|
enable-cache: true
|
||||||
|
|
||||||
- name: Install OS dependencies
|
- name: Install OS dependencies
|
||||||
if: ${{ matrix.python-version }} == '3.10'
|
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install -y libre2-dev libpq-dev
|
sudo apt install -y libre2-dev libpq-dev
|
||||||
|
|
||||||
|
- name: "Set up Python"
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version-file: "pyproject.toml"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
if: steps.setup-uv.outputs.cache-hit != 'true'
|
||||||
run: poetry install --no-interaction
|
run: uv sync --locked --all-extras
|
||||||
|
|
||||||
|
|
||||||
- name: Start Redis v6
|
- name: Start Redis v6
|
||||||
@ -95,7 +103,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run db migration
|
- name: Run db migration
|
||||||
run: |
|
run: |
|
||||||
CONFIG=tests/test.env poetry run alembic upgrade head
|
CONFIG=tests/test.env uv run alembic upgrade head
|
||||||
|
|
||||||
- name: Prepare version file
|
- name: Prepare version file
|
||||||
run: |
|
run: |
|
||||||
@ -104,7 +112,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: |
|
run: |
|
||||||
poetry run pytest
|
uv run pytest
|
||||||
env:
|
env:
|
||||||
GITHUB_ACTIONS_TEST: true
|
GITHUB_ACTIONS_TEST: true
|
||||||
|
|
||||||
|
1
app/.python-version
Normal file
1
app/.python-version
Normal file
@ -0,0 +1 @@
|
|||||||
|
3.10.16
|
@ -20,7 +20,7 @@ SimpleLogin backend consists of 2 main components:
|
|||||||
## Install dependencies
|
## Install dependencies
|
||||||
|
|
||||||
The project requires:
|
The project requires:
|
||||||
- Python 3.10 and poetry to manage dependencies
|
- Python 3.10 and uv to manage dependencies
|
||||||
- Node v10 for front-end.
|
- Node v10 for front-end.
|
||||||
- Postgres 13+
|
- Postgres 13+
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ First, install all dependencies by running the following command.
|
|||||||
Feel free to use `virtualenv` or similar tools to isolate development environment.
|
Feel free to use `virtualenv` or similar tools to isolate development environment.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
poetry sync
|
uv sync
|
||||||
```
|
```
|
||||||
|
|
||||||
On Mac, sometimes you might need to install some other packages via `brew`:
|
On Mac, sometimes you might need to install some other packages via `brew`:
|
||||||
@ -55,7 +55,7 @@ brew install -s re2 pybind11
|
|||||||
We use pre-commit to run all our linting and static analysis checks. Please run
|
We use pre-commit to run all our linting and static analysis checks. Please run
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
poetry run pre-commit install
|
uv run pre-commit install
|
||||||
```
|
```
|
||||||
|
|
||||||
To install it in your development environment.
|
To install it in your development environment.
|
||||||
@ -160,25 +160,25 @@ Here are the small sum-ups of the directory structures and their roles:
|
|||||||
The code is formatted using [ruff](https://github.com/astral-sh/ruff), to format the code, simply run
|
The code is formatted using [ruff](https://github.com/astral-sh/ruff), to format the code, simply run
|
||||||
|
|
||||||
```
|
```
|
||||||
poetry run ruff format .
|
uv run ruff format .
|
||||||
```
|
```
|
||||||
|
|
||||||
The code is also checked with `flake8`, make sure to run `flake8` before creating the pull request by
|
The code is also checked with `flake8`, make sure to run `flake8` before creating the pull request by
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
poetry run flake8
|
uv run flake8
|
||||||
```
|
```
|
||||||
|
|
||||||
For HTML templates, we use `djlint`. Before creating a pull request, please run
|
For HTML templates, we use `djlint`. Before creating a pull request, please run
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
poetry run djlint --check templates
|
uv run djlint --check templates
|
||||||
```
|
```
|
||||||
|
|
||||||
If some files aren't properly formatted, you can format all files with
|
If some files aren't properly formatted, you can format all files with
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
poetry run djlint --reformat .
|
uv run djlint --reformat .
|
||||||
```
|
```
|
||||||
|
|
||||||
## Test sending email
|
## Test sending email
|
||||||
@ -239,13 +239,13 @@ brew install python3.10
|
|||||||
# make sure to update the PATH so python, pip point to Python3
|
# make sure to update the PATH so python, pip point to Python3
|
||||||
# for us it can be done by adding "export PATH=/opt/homebrew/opt/python@3.10/libexec/bin:$PATH" to .zprofile
|
# for us it can be done by adding "export PATH=/opt/homebrew/opt/python@3.10/libexec/bin:$PATH" to .zprofile
|
||||||
|
|
||||||
# Although pipx is the recommended way to install poetry,
|
# Although pipx is the recommended way to install uv,
|
||||||
# install pipx via brew will automatically install python 3.12
|
# install pipx via brew will automatically install python 3.12
|
||||||
# and poetry will then use python 3.12
|
# and uv will then use python 3.12
|
||||||
# so we recommend using poetry this way instead
|
# so we recommend using uv this way instead
|
||||||
curl -sSL https://install.python-poetry.org | python3 -
|
curl -sSL https://install.python-uv.org | python3 -
|
||||||
|
|
||||||
poetry install
|
uv install
|
||||||
|
|
||||||
# activate the virtualenv and you should be good to go!
|
# activate the virtualenv and you should be good to go!
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
|
@ -4,43 +4,47 @@ WORKDIR /code
|
|||||||
COPY ./static/package*.json /code/static/
|
COPY ./static/package*.json /code/static/
|
||||||
RUN cd /code/static && npm ci
|
RUN cd /code/static && npm ci
|
||||||
|
|
||||||
# Main image
|
FROM --platform=linux/amd64 ubuntu:22.04
|
||||||
FROM python:3.10
|
|
||||||
|
ARG UV_VERSION="0.5.21"
|
||||||
|
ARG UV_HASH="e108c300eafae22ad8e6d94519605530f18f8762eb58d2b98a617edfb5d088fc"
|
||||||
|
|
||||||
# Keeps Python from generating .pyc files in the container
|
# Keeps Python from generating .pyc files in the container
|
||||||
ENV PYTHONDONTWRITEBYTECODE 1
|
ENV PYTHONDONTWRITEBYTECODE=1
|
||||||
# Turns off buffering for easier container logging
|
# Turns off buffering for easier container logging
|
||||||
ENV PYTHONUNBUFFERED 1
|
ENV PYTHONUNBUFFERED=1
|
||||||
|
|
||||||
# Add poetry to PATH
|
|
||||||
ENV PATH="${PATH}:/root/.local/bin"
|
|
||||||
|
|
||||||
WORKDIR /code
|
WORKDIR /code
|
||||||
|
|
||||||
# Copy poetry files
|
# Copy dependency files
|
||||||
COPY poetry.lock pyproject.toml ./
|
COPY pyproject.toml uv.lock .python-version ./
|
||||||
|
|
||||||
# Install and setup poetry
|
# Install deps
|
||||||
RUN pip install -U pip \
|
RUN apt-get update \
|
||||||
&& apt-get update \
|
&& apt-get install -y curl netcat-traditional gcc python3-dev gnupg git libre2-dev build-essential pkg-config cmake ninja-build bash clang \
|
||||||
&& apt install -y curl netcat-traditional gcc python3-dev gnupg git libre2-dev cmake ninja-build\
|
&& curl -sSL "https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-x86_64-unknown-linux-gnu.tar.gz" > uv.tar.gz \
|
||||||
&& curl -sSL https://install.python-poetry.org | python3 - \
|
&& echo "${UV_HASH} uv.tar.gz" | sha256sum -c - \
|
||||||
# Remove curl and netcat from the image
|
&& tar xf uv.tar.gz -C /tmp/ \
|
||||||
&& apt-get purge -y curl netcat-traditional \
|
&& mv /tmp/uv-x86_64-unknown-linux-gnu/uv /usr/bin/uv \
|
||||||
# Run poetry
|
&& mv /tmp/uv-x86_64-unknown-linux-gnu/uvx /usr/bin/uvx \
|
||||||
&& poetry config virtualenvs.create false \
|
&& rm -rf /tmp/uv* \
|
||||||
&& poetry install --no-interaction --no-ansi --no-root \
|
&& rm -f uv.tar.gz \
|
||||||
# Clear apt cache \
|
&& uv python install `cat .python-version` \
|
||||||
&& apt-get purge -y libre2-dev cmake ninja-build\
|
&& uv sync --locked \
|
||||||
|
&& apt-get autoremove -y \
|
||||||
|
&& apt-get purge -y curl netcat-traditional build-essential pkg-config cmake ninja-build python3-dev clang\
|
||||||
|
&& apt-get autoremove -y \
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Copy code
|
||||||
|
COPY . .
|
||||||
|
|
||||||
# copy npm packages
|
# copy npm packages
|
||||||
COPY --from=npm /code /code
|
COPY --from=npm /code /code
|
||||||
|
|
||||||
# copy everything else into /code
|
ENV PATH="/code/.venv/bin:$PATH"
|
||||||
COPY . .
|
|
||||||
|
|
||||||
EXPOSE 7777
|
EXPOSE 7777
|
||||||
|
|
||||||
#gunicorn wsgi:app -b 0.0.0.0:7777 -w 2 --timeout 15 --log-level DEBUG
|
#gunicorn wsgi:app -b 0.0.0.0:7777 -w 2 --timeout 15 --log-level DEBUG
|
||||||
|
@ -84,7 +84,7 @@ For email gurus, we have chosen 1024 key length instead of 2048 for DNS simplici
|
|||||||
|
|
||||||
### DNS
|
### DNS
|
||||||
|
|
||||||
Please note that DNS changes could take up to 24 hours to propagate. In practice, it's a lot faster though (~1 minute or so in our test). In DNS setup, we usually use domain with a trailing dot (`.`) at the end to to force using absolute domain.
|
Please note that DNS changes could take up to 24 hours to propagate. In practice, it's a lot faster though (~1 minute or so in our test). In DNS setup, we usually use domain with a trailing dot (`.`) at the end to force using absolute domain.
|
||||||
|
|
||||||
|
|
||||||
#### MX record
|
#### MX record
|
||||||
|
@ -3,9 +3,10 @@ from dataclasses import dataclass
|
|||||||
from enum import Enum
|
from enum import Enum
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
import arrow
|
import sqlalchemy.exc
|
||||||
from arrow import Arrow
|
from arrow import Arrow
|
||||||
from newrelic import agent
|
from newrelic import agent
|
||||||
|
from psycopg2.errors import UniqueViolation
|
||||||
from sqlalchemy import or_
|
from sqlalchemy import or_
|
||||||
|
|
||||||
from app.db import Session
|
from app.db import Session
|
||||||
@ -34,6 +35,7 @@ from app.utils import random_string
|
|||||||
class SLPlanType(Enum):
|
class SLPlanType(Enum):
|
||||||
Free = 1
|
Free = 1
|
||||||
Premium = 2
|
Premium = 2
|
||||||
|
PremiumLifetime = 3
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
@ -57,23 +59,26 @@ class LinkResult:
|
|||||||
strategy: str
|
strategy: str
|
||||||
|
|
||||||
|
|
||||||
def send_user_plan_changed_event(partner_user: PartnerUser) -> Optional[int]:
|
def send_user_plan_changed_event(
|
||||||
|
partner_user: PartnerUser,
|
||||||
|
) -> UserPlanChanged:
|
||||||
subscription_end = partner_user.user.get_active_subscription_end(
|
subscription_end = partner_user.user.get_active_subscription_end(
|
||||||
include_partner_subscription=False
|
include_partner_subscription=False
|
||||||
)
|
)
|
||||||
end_timestamp = None
|
|
||||||
if partner_user.user.lifetime:
|
if partner_user.user.lifetime:
|
||||||
end_timestamp = arrow.get("2038-01-01").timestamp
|
event = UserPlanChanged(lifetime=True)
|
||||||
elif subscription_end:
|
elif subscription_end:
|
||||||
end_timestamp = subscription_end.timestamp
|
event = UserPlanChanged(plan_end_time=subscription_end.timestamp)
|
||||||
event = UserPlanChanged(plan_end_time=end_timestamp)
|
else:
|
||||||
|
event = UserPlanChanged(plan_end_time=None)
|
||||||
EventDispatcher.send_event(partner_user.user, EventContent(user_plan_change=event))
|
EventDispatcher.send_event(partner_user.user, EventContent(user_plan_change=event))
|
||||||
Session.flush()
|
Session.flush()
|
||||||
return end_timestamp
|
return event
|
||||||
|
|
||||||
|
|
||||||
def set_plan_for_partner_user(partner_user: PartnerUser, plan: SLPlan):
|
def set_plan_for_partner_user(partner_user: PartnerUser, plan: SLPlan):
|
||||||
sub = PartnerSubscription.get_by(partner_user_id=partner_user.id)
|
sub = PartnerSubscription.get_by(partner_user_id=partner_user.id)
|
||||||
|
is_lifetime = plan.type == SLPlanType.PremiumLifetime
|
||||||
if plan.type == SLPlanType.Free:
|
if plan.type == SLPlanType.Free:
|
||||||
if sub is not None:
|
if sub is not None:
|
||||||
LOG.i(
|
LOG.i(
|
||||||
@ -82,25 +87,30 @@ def set_plan_for_partner_user(partner_user: PartnerUser, plan: SLPlan):
|
|||||||
PartnerSubscription.delete(sub.id)
|
PartnerSubscription.delete(sub.id)
|
||||||
agent.record_custom_event("PlanChange", {"plan": "free"})
|
agent.record_custom_event("PlanChange", {"plan": "free"})
|
||||||
else:
|
else:
|
||||||
|
end_time = plan.expiration
|
||||||
|
if plan.type == SLPlanType.PremiumLifetime:
|
||||||
|
end_time = None
|
||||||
if sub is None:
|
if sub is None:
|
||||||
LOG.i(
|
LOG.i(
|
||||||
f"Creating partner_subscription [user_id={partner_user.user_id}] [partner_id={partner_user.partner_id}]"
|
f"Creating partner_subscription [user_id={partner_user.user_id}] [partner_id={partner_user.partner_id}] with {end_time} / {is_lifetime}"
|
||||||
)
|
)
|
||||||
create_partner_subscription(
|
create_partner_subscription(
|
||||||
partner_user=partner_user,
|
partner_user=partner_user,
|
||||||
expiration=plan.expiration,
|
expiration=end_time,
|
||||||
|
lifetime=is_lifetime,
|
||||||
msg="Upgraded via partner. User did not have a previous partner subscription",
|
msg="Upgraded via partner. User did not have a previous partner subscription",
|
||||||
)
|
)
|
||||||
agent.record_custom_event("PlanChange", {"plan": "premium", "type": "new"})
|
agent.record_custom_event("PlanChange", {"plan": "premium", "type": "new"})
|
||||||
else:
|
else:
|
||||||
if sub.end_at != plan.expiration:
|
if sub.end_at != plan.expiration or sub.lifetime != is_lifetime:
|
||||||
LOG.i(
|
|
||||||
f"Updating partner_subscription [user_id={partner_user.user_id}] [partner_id={partner_user.partner_id}]"
|
|
||||||
)
|
|
||||||
agent.record_custom_event(
|
agent.record_custom_event(
|
||||||
"PlanChange", {"plan": "premium", "type": "extension"}
|
"PlanChange", {"plan": "premium", "type": "extension"}
|
||||||
)
|
)
|
||||||
sub.end_at = plan.expiration
|
sub.end_at = plan.expiration if not is_lifetime else None
|
||||||
|
sub.lifetime = is_lifetime
|
||||||
|
LOG.i(
|
||||||
|
f"Updating partner_subscription [user_id={partner_user.user_id}] [partner_id={partner_user.partner_id}] to {sub.end_at} / {sub.lifetime} "
|
||||||
|
)
|
||||||
emit_user_audit_log(
|
emit_user_audit_log(
|
||||||
user=partner_user.user,
|
user=partner_user.user,
|
||||||
action=UserAuditLogAction.SubscriptionExtended,
|
action=UserAuditLogAction.SubscriptionExtended,
|
||||||
@ -160,15 +170,57 @@ class ClientMergeStrategy(ABC):
|
|||||||
|
|
||||||
class NewUserStrategy(ClientMergeStrategy):
|
class NewUserStrategy(ClientMergeStrategy):
|
||||||
def process(self) -> LinkResult:
|
def process(self) -> LinkResult:
|
||||||
# Will create a new SL User with a random password
|
|
||||||
canonical_email = canonicalize_email(self.link_request.email)
|
canonical_email = canonicalize_email(self.link_request.email)
|
||||||
new_user = User.create(
|
try:
|
||||||
email=canonical_email,
|
# Will create a new SL User with a random password
|
||||||
name=self.link_request.name,
|
new_user = User.create(
|
||||||
password=random_string(20),
|
email=canonical_email,
|
||||||
activated=True,
|
name=self.link_request.name,
|
||||||
from_partner=self.link_request.from_partner,
|
password=random_string(20),
|
||||||
|
activated=True,
|
||||||
|
from_partner=self.link_request.from_partner,
|
||||||
|
)
|
||||||
|
self.create_partner_user(new_user)
|
||||||
|
Session.commit()
|
||||||
|
|
||||||
|
if not new_user.created_by_partner:
|
||||||
|
send_welcome_email(new_user)
|
||||||
|
|
||||||
|
agent.record_custom_event(
|
||||||
|
"PartnerUserCreation", {"partner": self.partner.name}
|
||||||
|
)
|
||||||
|
|
||||||
|
return LinkResult(
|
||||||
|
user=new_user,
|
||||||
|
strategy=self.__class__.__name__,
|
||||||
|
)
|
||||||
|
except (UniqueViolation, sqlalchemy.exc.IntegrityError) as e:
|
||||||
|
Session.rollback()
|
||||||
|
LOG.debug(f"Got the duplicate user error: {e}")
|
||||||
|
return self.create_missing_link(canonical_email)
|
||||||
|
|
||||||
|
def create_missing_link(self, canonical_email: str):
|
||||||
|
# If there's a unique key violation due to race conditions try to create only the partner if needed
|
||||||
|
partner_user = PartnerUser.get_by(
|
||||||
|
external_user_id=self.link_request.external_user_id,
|
||||||
|
partner_id=self.partner.id,
|
||||||
)
|
)
|
||||||
|
if partner_user is None:
|
||||||
|
# Get the user by canonical email and if not by normal email
|
||||||
|
user = User.get_by(email=canonical_email) or User.get_by(
|
||||||
|
email=self.link_request.email
|
||||||
|
)
|
||||||
|
if not user:
|
||||||
|
raise RuntimeError(
|
||||||
|
"Tried to create only partner on UniqueViolation but cannot find the user"
|
||||||
|
)
|
||||||
|
partner_user = self.create_partner_user(user)
|
||||||
|
Session.commit()
|
||||||
|
return LinkResult(
|
||||||
|
user=partner_user.user, strategy=ExistingUnlinkedUserStrategy.__name__
|
||||||
|
)
|
||||||
|
|
||||||
|
def create_partner_user(self, new_user: User):
|
||||||
partner_user = create_partner_user(
|
partner_user = create_partner_user(
|
||||||
user=new_user,
|
user=new_user,
|
||||||
partner_id=self.partner.id,
|
partner_id=self.partner.id,
|
||||||
@ -182,17 +234,7 @@ class NewUserStrategy(ClientMergeStrategy):
|
|||||||
partner_user,
|
partner_user,
|
||||||
self.link_request.plan,
|
self.link_request.plan,
|
||||||
)
|
)
|
||||||
Session.commit()
|
return partner_user
|
||||||
|
|
||||||
if not new_user.created_by_partner:
|
|
||||||
send_welcome_email(new_user)
|
|
||||||
|
|
||||||
agent.record_custom_event("PartnerUserCreation", {"partner": self.partner.name})
|
|
||||||
|
|
||||||
return LinkResult(
|
|
||||||
user=new_user,
|
|
||||||
strategy=self.__class__.__name__,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class ExistingUnlinkedUserStrategy(ClientMergeStrategy):
|
class ExistingUnlinkedUserStrategy(ClientMergeStrategy):
|
||||||
|
@ -8,14 +8,16 @@ from flask_admin.form import SecureForm
|
|||||||
from flask_admin.model.template import EndpointLinkRowAction
|
from flask_admin.model.template import EndpointLinkRowAction
|
||||||
from markupsafe import Markup
|
from markupsafe import Markup
|
||||||
|
|
||||||
from app import models, s3
|
from app import models, s3, config
|
||||||
from flask import redirect, url_for, request, flash, Response
|
from flask import redirect, url_for, request, flash, Response
|
||||||
from flask_admin import expose, AdminIndexView
|
from flask_admin import expose, AdminIndexView
|
||||||
from flask_admin.actions import action
|
from flask_admin.actions import action
|
||||||
from flask_admin.contrib import sqla
|
from flask_admin.contrib import sqla
|
||||||
from flask_login import current_user
|
from flask_login import current_user
|
||||||
|
|
||||||
|
from app.custom_domain_validation import CustomDomainValidation, DomainValidationResult
|
||||||
from app.db import Session
|
from app.db import Session
|
||||||
|
from app.dns_utils import get_network_dns_client
|
||||||
from app.events.event_dispatcher import EventDispatcher
|
from app.events.event_dispatcher import EventDispatcher
|
||||||
from app.events.generated.event_pb2 import EventContent, UserPlanChanged
|
from app.events.generated.event_pb2 import EventContent, UserPlanChanged
|
||||||
from app.models import (
|
from app.models import (
|
||||||
@ -39,6 +41,7 @@ from app.models import (
|
|||||||
AliasMailbox,
|
AliasMailbox,
|
||||||
AliasAuditLog,
|
AliasAuditLog,
|
||||||
UserAuditLog,
|
UserAuditLog,
|
||||||
|
CustomDomain,
|
||||||
)
|
)
|
||||||
from app.newsletter_utils import send_newsletter_to_user, send_newsletter_to_address
|
from app.newsletter_utils import send_newsletter_to_user, send_newsletter_to_address
|
||||||
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
||||||
@ -773,21 +776,22 @@ class InvalidMailboxDomainAdmin(SLModelView):
|
|||||||
|
|
||||||
|
|
||||||
class EmailSearchResult:
|
class EmailSearchResult:
|
||||||
no_match: bool = True
|
def __init__(self):
|
||||||
alias: Optional[Alias] = None
|
self.no_match: bool = True
|
||||||
alias_audit_log: Optional[List[AliasAuditLog]] = None
|
self.alias: Optional[Alias] = None
|
||||||
mailbox: List[Mailbox] = []
|
self.alias_audit_log: Optional[List[AliasAuditLog]] = None
|
||||||
mailbox_count: int = 0
|
self.mailbox: List[Mailbox] = []
|
||||||
deleted_alias: Optional[DeletedAlias] = None
|
self.mailbox_count: int = 0
|
||||||
deleted_alias_audit_log: Optional[List[AliasAuditLog]] = None
|
self.deleted_alias: Optional[DeletedAlias] = None
|
||||||
domain_deleted_alias: Optional[DomainDeletedAlias] = None
|
self.deleted_alias_audit_log: Optional[List[AliasAuditLog]] = None
|
||||||
domain_deleted_alias_audit_log: Optional[List[AliasAuditLog]] = None
|
self.domain_deleted_alias: Optional[DomainDeletedAlias] = None
|
||||||
user: Optional[User] = None
|
self.domain_deleted_alias_audit_log: Optional[List[AliasAuditLog]] = None
|
||||||
user_audit_log: Optional[List[UserAuditLog]] = None
|
self.user: Optional[User] = None
|
||||||
query: str
|
self.user_audit_log: Optional[List[UserAuditLog]] = None
|
||||||
|
self.query: str
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def from_email(email: str) -> EmailSearchResult:
|
def from_request_email(email: str) -> EmailSearchResult:
|
||||||
output = EmailSearchResult()
|
output = EmailSearchResult()
|
||||||
output.query = email
|
output.query = email
|
||||||
alias = Alias.get_by(email=email)
|
alias = Alias.get_by(email=email)
|
||||||
@ -799,7 +803,11 @@ class EmailSearchResult:
|
|||||||
.all()
|
.all()
|
||||||
)
|
)
|
||||||
output.no_match = False
|
output.no_match = False
|
||||||
user = User.get_by(email=email)
|
try:
|
||||||
|
user_id = int(email)
|
||||||
|
user = User.get(user_id)
|
||||||
|
except ValueError:
|
||||||
|
user = User.get_by(email=email)
|
||||||
if user:
|
if user:
|
||||||
output.user = user
|
output.user = user
|
||||||
output.user_audit_log = (
|
output.user_audit_log = (
|
||||||
@ -908,7 +916,7 @@ class EmailSearchAdmin(BaseView):
|
|||||||
email = request.args.get("email")
|
email = request.args.get("email")
|
||||||
if email is not None and len(email) > 0:
|
if email is not None and len(email) > 0:
|
||||||
email = email.strip()
|
email = email.strip()
|
||||||
search = EmailSearchResult.from_email(email)
|
search = EmailSearchResult.from_request_email(email)
|
||||||
|
|
||||||
return self.render(
|
return self.render(
|
||||||
"admin/email_search.html",
|
"admin/email_search.html",
|
||||||
@ -916,3 +924,106 @@ class EmailSearchAdmin(BaseView):
|
|||||||
data=search,
|
data=search,
|
||||||
helper=EmailSearchHelpers,
|
helper=EmailSearchHelpers,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class CustomDomainWithValidationData:
|
||||||
|
def __init__(self, domain: CustomDomain):
|
||||||
|
self.domain: CustomDomain = domain
|
||||||
|
self.ownership_expected: Optional[str] = None
|
||||||
|
self.ownership_validation: Optional[DomainValidationResult] = None
|
||||||
|
self.mx_expected: Optional[str] = None
|
||||||
|
self.mx_validation: Optional[DomainValidationResult] = None
|
||||||
|
self.spf_expected: Optional[str] = None
|
||||||
|
self.spf_validation: Optional[DomainValidationResult] = None
|
||||||
|
self.dkim_expected: {str: str} = {}
|
||||||
|
self.dkim_validation: {str: str} = {}
|
||||||
|
|
||||||
|
|
||||||
|
class CustomDomainSearchResult:
|
||||||
|
def __init__(self):
|
||||||
|
self.no_match: bool = False
|
||||||
|
self.user: Optional[User] = None
|
||||||
|
self.domains: list[CustomDomainWithValidationData] = []
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def from_user(user: Optional[User]) -> CustomDomainSearchResult:
|
||||||
|
out = CustomDomainSearchResult()
|
||||||
|
if user is None:
|
||||||
|
out.no_match = True
|
||||||
|
return out
|
||||||
|
out.user = user
|
||||||
|
dns_client = get_network_dns_client()
|
||||||
|
validator = CustomDomainValidation(
|
||||||
|
dkim_domain=config.EMAIL_DOMAIN,
|
||||||
|
partner_domains=config.PARTNER_DNS_CUSTOM_DOMAINS,
|
||||||
|
partner_domains_validation_prefixes=config.PARTNER_CUSTOM_DOMAIN_VALIDATION_PREFIXES,
|
||||||
|
dns_client=dns_client,
|
||||||
|
)
|
||||||
|
for custom_domain in user.custom_domains:
|
||||||
|
validation_data = CustomDomainWithValidationData(custom_domain)
|
||||||
|
if not custom_domain.ownership_verified:
|
||||||
|
validation_data.ownership_expected = (
|
||||||
|
validator.get_ownership_verification_record(custom_domain)
|
||||||
|
)
|
||||||
|
validation_data.ownership_validation = (
|
||||||
|
validator.validate_domain_ownership(custom_domain)
|
||||||
|
)
|
||||||
|
if not custom_domain.verified:
|
||||||
|
validation_data.mx_expected = validator.get_expected_mx_records(
|
||||||
|
custom_domain
|
||||||
|
)
|
||||||
|
validation_data.mx_validation = validator.validate_mx_records(
|
||||||
|
custom_domain
|
||||||
|
)
|
||||||
|
if not custom_domain.spf_verified:
|
||||||
|
validation_data.spf_expected = validator.get_expected_spf_record(
|
||||||
|
custom_domain
|
||||||
|
)
|
||||||
|
validation_data.spf_validation = validator.validate_spf_records(
|
||||||
|
custom_domain
|
||||||
|
)
|
||||||
|
if not custom_domain.dkim_verified:
|
||||||
|
validation_data.dkim_expected = validator.get_dkim_records(
|
||||||
|
custom_domain
|
||||||
|
)
|
||||||
|
validation_data.dkim_validation = validator.validate_dkim_records(
|
||||||
|
custom_domain
|
||||||
|
)
|
||||||
|
out.domains.append(validation_data)
|
||||||
|
print(validation_data.dkim_expected, validation_data.dkim_validation)
|
||||||
|
|
||||||
|
return out
|
||||||
|
|
||||||
|
|
||||||
|
class CustomDomainSearchAdmin(BaseView):
|
||||||
|
def is_accessible(self):
|
||||||
|
return current_user.is_authenticated and current_user.is_admin
|
||||||
|
|
||||||
|
def inaccessible_callback(self, name, **kwargs):
|
||||||
|
# redirect to login page if user doesn't have access
|
||||||
|
flash("You don't have access to the admin page", "error")
|
||||||
|
return redirect(url_for("dashboard.index", next=request.url))
|
||||||
|
|
||||||
|
@expose("/", methods=["GET", "POST"])
|
||||||
|
def index(self):
|
||||||
|
query = request.args.get("user")
|
||||||
|
if query is None:
|
||||||
|
search = CustomDomainSearchResult()
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
user_id = int(query)
|
||||||
|
user = User.get_by(id=user_id)
|
||||||
|
except ValueError:
|
||||||
|
user = User.get_by(email=query)
|
||||||
|
if user is None:
|
||||||
|
cd = CustomDomain.get_by(domain=query)
|
||||||
|
if cd is not None:
|
||||||
|
user = cd.user
|
||||||
|
search = CustomDomainSearchResult.from_user(user)
|
||||||
|
print("NEW", search.domains)
|
||||||
|
|
||||||
|
return self.render(
|
||||||
|
"admin/custom_domain_search.html",
|
||||||
|
data=search,
|
||||||
|
query=query,
|
||||||
|
)
|
||||||
|
@ -58,7 +58,7 @@ def verify_prefix_suffix(
|
|||||||
|
|
||||||
# alias_domain must be either one of user custom domains or built-in domains
|
# alias_domain must be either one of user custom domains or built-in domains
|
||||||
if alias_domain not in user.available_alias_domains(alias_options=alias_options):
|
if alias_domain not in user.available_alias_domains(alias_options=alias_options):
|
||||||
LOG.e("wrong alias suffix %s, user %s", alias_suffix, user)
|
LOG.i("wrong alias suffix %s, user %s", alias_suffix, user)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# SimpleLogin domain case:
|
# SimpleLogin domain case:
|
||||||
@ -75,17 +75,17 @@ def verify_prefix_suffix(
|
|||||||
and not config.DISABLE_ALIAS_SUFFIX
|
and not config.DISABLE_ALIAS_SUFFIX
|
||||||
):
|
):
|
||||||
if not alias_domain_prefix.startswith("."):
|
if not alias_domain_prefix.startswith("."):
|
||||||
LOG.e("User %s submits a wrong alias suffix %s", user, alias_suffix)
|
LOG.i("User %s submits a wrong alias suffix %s", user, alias_suffix)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if alias_domain not in user_custom_domains:
|
if alias_domain not in user_custom_domains:
|
||||||
if not config.DISABLE_ALIAS_SUFFIX:
|
if not config.DISABLE_ALIAS_SUFFIX:
|
||||||
LOG.e("wrong alias suffix %s, user %s", alias_suffix, user)
|
LOG.i("wrong alias suffix %s, user %s", alias_suffix, user)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if alias_domain not in available_sl_domains:
|
if alias_domain not in available_sl_domains:
|
||||||
LOG.e("wrong alias suffix %s, user %s", alias_suffix, user)
|
LOG.i("wrong alias suffix %s, user %s", alias_suffix, user)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
@ -299,7 +299,10 @@ def update_alias(alias_id):
|
|||||||
changed = True
|
changed = True
|
||||||
|
|
||||||
if "mailbox_ids" in data:
|
if "mailbox_ids" in data:
|
||||||
mailbox_ids = [int(m_id) for m_id in data.get("mailbox_ids")]
|
try:
|
||||||
|
mailbox_ids = [int(m_id) for m_id in data.get("mailbox_ids")]
|
||||||
|
except ValueError:
|
||||||
|
return jsonify(error="Invalid mailbox_id"), 400
|
||||||
err = set_mailboxes_for_alias(
|
err = set_mailboxes_for_alias(
|
||||||
user_id=user.id, alias=alias, mailbox_ids=mailbox_ids
|
user_id=user.id, alias=alias, mailbox_ids=mailbox_ids
|
||||||
)
|
)
|
||||||
|
@ -6,12 +6,7 @@ from flask import request
|
|||||||
|
|
||||||
from app import mailbox_utils
|
from app import mailbox_utils
|
||||||
from app.api.base import api_bp, require_api_auth
|
from app.api.base import api_bp, require_api_auth
|
||||||
from app.dashboard.views.mailbox_detail import verify_mailbox_change
|
|
||||||
from app.db import Session
|
from app.db import Session
|
||||||
from app.email_utils import (
|
|
||||||
mailbox_already_used,
|
|
||||||
email_can_be_used_as_mailbox,
|
|
||||||
)
|
|
||||||
from app.models import Mailbox
|
from app.models import Mailbox
|
||||||
from app.utils import sanitize_email
|
from app.utils import sanitize_email
|
||||||
|
|
||||||
@ -122,20 +117,10 @@ def update_mailbox(mailbox_id):
|
|||||||
|
|
||||||
if "email" in data:
|
if "email" in data:
|
||||||
new_email = sanitize_email(data.get("email"))
|
new_email = sanitize_email(data.get("email"))
|
||||||
|
|
||||||
if mailbox_already_used(new_email, user):
|
|
||||||
return jsonify(error=f"{new_email} already used"), 400
|
|
||||||
elif not email_can_be_used_as_mailbox(new_email):
|
|
||||||
return (
|
|
||||||
jsonify(
|
|
||||||
error=f"{new_email} cannot be used. Please note a mailbox cannot "
|
|
||||||
f"be a disposable email address"
|
|
||||||
),
|
|
||||||
400,
|
|
||||||
)
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
verify_mailbox_change(user, mailbox, new_email)
|
mailbox_utils.request_mailbox_email_change(user, mailbox, new_email)
|
||||||
|
except mailbox_utils.MailboxError as e:
|
||||||
|
return jsonify(error=e.msg), 400
|
||||||
except SMTPRecipientsRefused:
|
except SMTPRecipientsRefused:
|
||||||
return jsonify(error=f"Incorrect mailbox, please recheck {new_email}"), 400
|
return jsonify(error=f"Incorrect mailbox, please recheck {new_email}"), 400
|
||||||
else:
|
else:
|
||||||
@ -145,7 +130,7 @@ def update_mailbox(mailbox_id):
|
|||||||
if "cancel_email_change" in data:
|
if "cancel_email_change" in data:
|
||||||
cancel_email_change = data.get("cancel_email_change")
|
cancel_email_change = data.get("cancel_email_change")
|
||||||
if cancel_email_change:
|
if cancel_email_change:
|
||||||
mailbox.new_email = None
|
mailbox_utils.cancel_email_change(mailbox.id, user)
|
||||||
changed = True
|
changed = True
|
||||||
|
|
||||||
if changed:
|
if changed:
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
from email_validator import EmailNotValidError
|
||||||
from flask import g
|
from flask import g
|
||||||
from flask import jsonify, request
|
from flask import jsonify, request
|
||||||
|
|
||||||
@ -93,12 +94,15 @@ def new_custom_alias_v2():
|
|||||||
400,
|
400,
|
||||||
)
|
)
|
||||||
|
|
||||||
alias = Alias.create(
|
try:
|
||||||
user_id=user.id,
|
alias = Alias.create(
|
||||||
email=full_alias,
|
user_id=user.id,
|
||||||
mailbox_id=user.default_mailbox_id,
|
email=full_alias,
|
||||||
note=note,
|
mailbox_id=user.default_mailbox_id,
|
||||||
)
|
note=note,
|
||||||
|
)
|
||||||
|
except EmailNotValidError:
|
||||||
|
return jsonify(error="Email is not valid"), 400
|
||||||
|
|
||||||
Session.commit()
|
Session.commit()
|
||||||
|
|
||||||
@ -153,8 +157,17 @@ def new_custom_alias_v3():
|
|||||||
if not isinstance(data, dict):
|
if not isinstance(data, dict):
|
||||||
return jsonify(error="request body does not follow the required format"), 400
|
return jsonify(error="request body does not follow the required format"), 400
|
||||||
|
|
||||||
alias_prefix = data.get("alias_prefix", "").strip().lower().replace(" ", "")
|
alias_prefix_data = data.get("alias_prefix", "") or ""
|
||||||
|
|
||||||
|
if not isinstance(alias_prefix_data, str):
|
||||||
|
return jsonify(error="request body does not follow the required format"), 400
|
||||||
|
|
||||||
|
alias_prefix = alias_prefix_data.strip().lower().replace(" ", "")
|
||||||
signed_suffix = data.get("signed_suffix", "") or ""
|
signed_suffix = data.get("signed_suffix", "") or ""
|
||||||
|
|
||||||
|
if not isinstance(signed_suffix, str):
|
||||||
|
return jsonify(error="request body does not follow the required format"), 400
|
||||||
|
|
||||||
signed_suffix = signed_suffix.strip()
|
signed_suffix = signed_suffix.strip()
|
||||||
|
|
||||||
mailbox_ids = data.get("mailbox_ids")
|
mailbox_ids = data.get("mailbox_ids")
|
||||||
|
127
app/app/coupon_utils.py
Normal file
127
app/app/coupon_utils.py
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
import arrow
|
||||||
|
from sqlalchemy import or_, update, and_
|
||||||
|
|
||||||
|
from app.config import ADMIN_EMAIL
|
||||||
|
from app.db import Session
|
||||||
|
from app.email_utils import send_email
|
||||||
|
from app.events.event_dispatcher import EventDispatcher
|
||||||
|
from app.events.generated.event_pb2 import EventContent, UserPlanChanged
|
||||||
|
from app.log import LOG
|
||||||
|
from app.models import User, ManualSubscription, Coupon, LifetimeCoupon
|
||||||
|
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
||||||
|
|
||||||
|
|
||||||
|
class CouponUserCannotRedeemError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def redeem_coupon(coupon_code: str, user: User) -> Optional[Coupon]:
|
||||||
|
if user.lifetime:
|
||||||
|
LOG.i(f"User {user} is a lifetime SL user. Cannot redeem coupons")
|
||||||
|
raise CouponUserCannotRedeemError()
|
||||||
|
|
||||||
|
sub = user.get_active_subscription()
|
||||||
|
if sub and not isinstance(sub, ManualSubscription):
|
||||||
|
LOG.i(
|
||||||
|
f"User {user} has an active subscription that is not manual. Cannot redeem coupon {coupon_code}"
|
||||||
|
)
|
||||||
|
raise CouponUserCannotRedeemError()
|
||||||
|
|
||||||
|
coupon = Coupon.get_by(code=coupon_code)
|
||||||
|
if not coupon:
|
||||||
|
LOG.i(f"User is trying to redeem coupon {coupon_code} that does not exist")
|
||||||
|
return None
|
||||||
|
|
||||||
|
now = arrow.utcnow()
|
||||||
|
stmt = (
|
||||||
|
update(Coupon)
|
||||||
|
.where(
|
||||||
|
and_(
|
||||||
|
Coupon.code == coupon_code,
|
||||||
|
Coupon.used == False, # noqa: E712
|
||||||
|
or_(
|
||||||
|
Coupon.expires_date == None, # noqa: E711
|
||||||
|
Coupon.expires_date > now,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.values(used=True, used_by_user_id=user.id, updated_at=now)
|
||||||
|
)
|
||||||
|
res = Session.execute(stmt)
|
||||||
|
if res.rowcount == 0:
|
||||||
|
LOG.i(f"Coupon {coupon.id} could not be redeemed. It's expired or invalid.")
|
||||||
|
return None
|
||||||
|
|
||||||
|
LOG.i(
|
||||||
|
f"Redeemed normal coupon {coupon.id} for {coupon.nb_year} years by user {user}"
|
||||||
|
)
|
||||||
|
if sub:
|
||||||
|
# renew existing subscription
|
||||||
|
if sub.end_at > arrow.now():
|
||||||
|
sub.end_at = sub.end_at.shift(years=coupon.nb_year)
|
||||||
|
else:
|
||||||
|
sub.end_at = arrow.now().shift(years=coupon.nb_year, days=1)
|
||||||
|
else:
|
||||||
|
sub = ManualSubscription.create(
|
||||||
|
user_id=user.id,
|
||||||
|
end_at=arrow.now().shift(years=coupon.nb_year, days=1),
|
||||||
|
comment="using coupon code",
|
||||||
|
is_giveaway=coupon.is_giveaway,
|
||||||
|
commit=True,
|
||||||
|
)
|
||||||
|
emit_user_audit_log(
|
||||||
|
user=user,
|
||||||
|
action=UserAuditLogAction.Upgrade,
|
||||||
|
message=f"User {user} redeemed coupon {coupon.id} for {coupon.nb_year} years",
|
||||||
|
)
|
||||||
|
EventDispatcher.send_event(
|
||||||
|
user=user,
|
||||||
|
content=EventContent(
|
||||||
|
user_plan_change=UserPlanChanged(plan_end_time=sub.end_at.timestamp)
|
||||||
|
),
|
||||||
|
)
|
||||||
|
Session.commit()
|
||||||
|
return coupon
|
||||||
|
|
||||||
|
|
||||||
|
def redeem_lifetime_coupon(coupon_code: str, user: User) -> Optional[Coupon]:
|
||||||
|
coupon: LifetimeCoupon = LifetimeCoupon.get_by(code=coupon_code)
|
||||||
|
if not coupon:
|
||||||
|
return None
|
||||||
|
|
||||||
|
stmt = (
|
||||||
|
update(LifetimeCoupon)
|
||||||
|
.where(
|
||||||
|
and_(
|
||||||
|
LifetimeCoupon.code == coupon_code,
|
||||||
|
LifetimeCoupon.nb_used > 0,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.values(nb_used=LifetimeCoupon.nb_used - 1)
|
||||||
|
)
|
||||||
|
res = Session.execute(stmt)
|
||||||
|
if res.rowcount == 0:
|
||||||
|
LOG.i("Coupon could not be redeemed")
|
||||||
|
return None
|
||||||
|
|
||||||
|
user.lifetime = True
|
||||||
|
user.lifetime_coupon_id = coupon.id
|
||||||
|
if coupon.paid:
|
||||||
|
user.paid_lifetime = True
|
||||||
|
EventDispatcher.send_event(
|
||||||
|
user=user,
|
||||||
|
content=EventContent(user_plan_change=UserPlanChanged(lifetime=True)),
|
||||||
|
)
|
||||||
|
Session.commit()
|
||||||
|
|
||||||
|
# notify admin
|
||||||
|
send_email(
|
||||||
|
ADMIN_EMAIL,
|
||||||
|
subject=f"User {user} used lifetime coupon({coupon.comment}). Coupon nb_used: {coupon.nb_used}",
|
||||||
|
plaintext="",
|
||||||
|
html="",
|
||||||
|
)
|
||||||
|
|
||||||
|
return coupon
|
@ -227,7 +227,10 @@ def alias_contact_manager(alias_id):
|
|||||||
|
|
||||||
page = 0
|
page = 0
|
||||||
if request.args.get("page"):
|
if request.args.get("page"):
|
||||||
page = int(request.args.get("page"))
|
try:
|
||||||
|
page = int(request.args.get("page"))
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
|
||||||
query = request.args.get("query") or ""
|
query = request.args.get("query") or ""
|
||||||
|
|
||||||
|
@ -1,17 +1,15 @@
|
|||||||
import arrow
|
import arrow
|
||||||
from flask import render_template, flash, redirect, url_for, request
|
from flask import render_template, flash, redirect, url_for
|
||||||
from flask_login import login_required, current_user
|
from flask_login import login_required, current_user
|
||||||
from flask_wtf import FlaskForm
|
from flask_wtf import FlaskForm
|
||||||
from wtforms import StringField, validators
|
from wtforms import StringField, validators
|
||||||
|
|
||||||
from app import parallel_limiter
|
from app import parallel_limiter
|
||||||
from app.config import PADDLE_VENDOR_ID, PADDLE_COUPON_ID
|
from app.config import PADDLE_VENDOR_ID, PADDLE_COUPON_ID
|
||||||
|
from app.coupon_utils import redeem_coupon, CouponUserCannotRedeemError
|
||||||
from app.dashboard.base import dashboard_bp
|
from app.dashboard.base import dashboard_bp
|
||||||
from app.db import Session
|
|
||||||
from app.log import LOG
|
from app.log import LOG
|
||||||
from app.models import (
|
from app.models import (
|
||||||
ManualSubscription,
|
|
||||||
Coupon,
|
|
||||||
Subscription,
|
Subscription,
|
||||||
AppleSubscription,
|
AppleSubscription,
|
||||||
CoinbaseSubscription,
|
CoinbaseSubscription,
|
||||||
@ -58,56 +56,23 @@ def coupon_route():
|
|||||||
|
|
||||||
if coupon_form.validate_on_submit():
|
if coupon_form.validate_on_submit():
|
||||||
code = coupon_form.code.data
|
code = coupon_form.code.data
|
||||||
|
try:
|
||||||
coupon: Coupon = Coupon.get_by(code=code)
|
coupon = redeem_coupon(code, current_user)
|
||||||
if coupon and not coupon.used:
|
if coupon:
|
||||||
if coupon.expires_date and coupon.expires_date < arrow.now():
|
|
||||||
flash(
|
|
||||||
f"The coupon was expired on {coupon.expires_date.humanize()}",
|
|
||||||
"error",
|
|
||||||
)
|
|
||||||
return redirect(request.url)
|
|
||||||
|
|
||||||
updated = (
|
|
||||||
Session.query(Coupon)
|
|
||||||
.filter_by(code=code, used=False)
|
|
||||||
.update({"used_by_user_id": current_user.id, "used": True})
|
|
||||||
)
|
|
||||||
if updated != 1:
|
|
||||||
flash("Coupon is not valid", "error")
|
|
||||||
return redirect(request.url)
|
|
||||||
|
|
||||||
manual_sub: ManualSubscription = ManualSubscription.get_by(
|
|
||||||
user_id=current_user.id
|
|
||||||
)
|
|
||||||
if manual_sub:
|
|
||||||
# renew existing subscription
|
|
||||||
if manual_sub.end_at > arrow.now():
|
|
||||||
manual_sub.end_at = manual_sub.end_at.shift(years=coupon.nb_year)
|
|
||||||
else:
|
|
||||||
manual_sub.end_at = arrow.now().shift(years=coupon.nb_year, days=1)
|
|
||||||
Session.commit()
|
|
||||||
flash(
|
|
||||||
f"Your current subscription is extended to {manual_sub.end_at.humanize()}",
|
|
||||||
"success",
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
ManualSubscription.create(
|
|
||||||
user_id=current_user.id,
|
|
||||||
end_at=arrow.now().shift(years=coupon.nb_year, days=1),
|
|
||||||
comment="using coupon code",
|
|
||||||
is_giveaway=coupon.is_giveaway,
|
|
||||||
commit=True,
|
|
||||||
)
|
|
||||||
flash(
|
flash(
|
||||||
"Your account has been upgraded to Premium, thanks for your support!",
|
"Your account has been upgraded to Premium, thanks for your support!",
|
||||||
"success",
|
"success",
|
||||||
)
|
)
|
||||||
|
else:
|
||||||
return redirect(url_for("dashboard.index"))
|
flash(
|
||||||
|
"This coupon cannot be redeemed. It's invalid or has expired",
|
||||||
else:
|
"warning",
|
||||||
flash(f"Code *{code}* expired or invalid", "warning")
|
)
|
||||||
|
except CouponUserCannotRedeemError:
|
||||||
|
flash(
|
||||||
|
"You have an active subscription. Please remove it before redeeming a coupon",
|
||||||
|
"warning",
|
||||||
|
)
|
||||||
|
|
||||||
return render_template(
|
return render_template(
|
||||||
"dashboard/coupon.html",
|
"dashboard/coupon.html",
|
||||||
|
@ -71,7 +71,10 @@ def index():
|
|||||||
|
|
||||||
page = 0
|
page = 0
|
||||||
if request.args.get("page"):
|
if request.args.get("page"):
|
||||||
page = int(request.args.get("page"))
|
try:
|
||||||
|
page = int(request.args.get("page"))
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
|
||||||
highlight_alias_id = None
|
highlight_alias_id = None
|
||||||
if request.args.get("highlight_alias_id"):
|
if request.args.get("highlight_alias_id"):
|
||||||
|
@ -1,16 +1,11 @@
|
|||||||
import arrow
|
|
||||||
from flask import render_template, flash, redirect, url_for
|
from flask import render_template, flash, redirect, url_for
|
||||||
from flask_login import login_required, current_user
|
from flask_login import login_required, current_user
|
||||||
from flask_wtf import FlaskForm
|
from flask_wtf import FlaskForm
|
||||||
from wtforms import StringField, validators
|
from wtforms import StringField, validators
|
||||||
|
|
||||||
from app.config import ADMIN_EMAIL
|
from app import parallel_limiter
|
||||||
|
from app.coupon_utils import redeem_lifetime_coupon
|
||||||
from app.dashboard.base import dashboard_bp
|
from app.dashboard.base import dashboard_bp
|
||||||
from app.db import Session
|
|
||||||
from app.email_utils import send_email
|
|
||||||
from app.events.event_dispatcher import EventDispatcher
|
|
||||||
from app.events.generated.event_pb2 import UserPlanChanged, EventContent
|
|
||||||
from app.models import LifetimeCoupon
|
|
||||||
|
|
||||||
|
|
||||||
class CouponForm(FlaskForm):
|
class CouponForm(FlaskForm):
|
||||||
@ -19,6 +14,7 @@ class CouponForm(FlaskForm):
|
|||||||
|
|
||||||
@dashboard_bp.route("/lifetime_licence", methods=["GET", "POST"])
|
@dashboard_bp.route("/lifetime_licence", methods=["GET", "POST"])
|
||||||
@login_required
|
@login_required
|
||||||
|
@parallel_limiter.lock()
|
||||||
def lifetime_licence():
|
def lifetime_licence():
|
||||||
if current_user.lifetime:
|
if current_user.lifetime:
|
||||||
flash("You already have a lifetime licence", "warning")
|
flash("You already have a lifetime licence", "warning")
|
||||||
@ -35,36 +31,12 @@ def lifetime_licence():
|
|||||||
|
|
||||||
if coupon_form.validate_on_submit():
|
if coupon_form.validate_on_submit():
|
||||||
code = coupon_form.code.data
|
code = coupon_form.code.data
|
||||||
|
coupon = redeem_lifetime_coupon(code, current_user)
|
||||||
coupon: LifetimeCoupon = LifetimeCoupon.get_by(code=code)
|
if coupon:
|
||||||
if coupon and coupon.nb_used > 0:
|
|
||||||
coupon.nb_used -= 1
|
|
||||||
current_user.lifetime = True
|
|
||||||
current_user.lifetime_coupon_id = coupon.id
|
|
||||||
if coupon.paid:
|
|
||||||
current_user.paid_lifetime = True
|
|
||||||
EventDispatcher.send_event(
|
|
||||||
user=current_user,
|
|
||||||
content=EventContent(
|
|
||||||
user_plan_change=UserPlanChanged(
|
|
||||||
plan_end_time=arrow.get("2038-01-01").timestamp
|
|
||||||
)
|
|
||||||
),
|
|
||||||
)
|
|
||||||
Session.commit()
|
|
||||||
|
|
||||||
# notify admin
|
|
||||||
send_email(
|
|
||||||
ADMIN_EMAIL,
|
|
||||||
subject=f"User {current_user} used lifetime coupon({coupon.comment}). Coupon nb_used: {coupon.nb_used}",
|
|
||||||
plaintext="",
|
|
||||||
html="",
|
|
||||||
)
|
|
||||||
|
|
||||||
flash("You are upgraded to lifetime premium!", "success")
|
flash("You are upgraded to lifetime premium!", "success")
|
||||||
return redirect(url_for("dashboard.index"))
|
return redirect(url_for("dashboard.index"))
|
||||||
|
|
||||||
else:
|
else:
|
||||||
flash(f"Code *{code}* expired or invalid", "warning")
|
flash("Coupon code expired or invalid", "warning")
|
||||||
|
|
||||||
return render_template("dashboard/lifetime_licence.html", coupon_form=coupon_form)
|
return render_template("dashboard/lifetime_licence.html", coupon_form=coupon_form)
|
||||||
|
@ -1,23 +1,23 @@
|
|||||||
from smtplib import SMTPRecipientsRefused
|
|
||||||
|
|
||||||
from email_validator import validate_email, EmailNotValidError
|
from email_validator import validate_email, EmailNotValidError
|
||||||
from flask import render_template, request, redirect, url_for, flash
|
from flask import render_template, request, redirect, url_for, flash
|
||||||
from flask_login import login_required, current_user
|
from flask_login import login_required, current_user
|
||||||
from flask_wtf import FlaskForm
|
from flask_wtf import FlaskForm
|
||||||
from itsdangerous import TimestampSigner
|
from itsdangerous import TimestampSigner
|
||||||
from wtforms import validators
|
from wtforms import validators
|
||||||
from wtforms.fields.html5 import EmailField
|
from wtforms.fields.simple import StringField
|
||||||
|
|
||||||
|
from app import mailbox_utils
|
||||||
from app.config import ENFORCE_SPF, MAILBOX_SECRET
|
from app.config import ENFORCE_SPF, MAILBOX_SECRET
|
||||||
from app.config import URL
|
|
||||||
from app.dashboard.base import dashboard_bp
|
from app.dashboard.base import dashboard_bp
|
||||||
from app.dashboard.views.enter_sudo import sudo_required
|
from app.dashboard.views.enter_sudo import sudo_required
|
||||||
from app.db import Session
|
from app.db import Session
|
||||||
from app.email_utils import email_can_be_used_as_mailbox
|
|
||||||
from app.email_utils import mailbox_already_used, render, send_email
|
|
||||||
from app.extensions import limiter
|
from app.extensions import limiter
|
||||||
from app.mailbox_utils import perform_mailbox_email_change, MailboxEmailChangeError
|
from app.mailbox_utils import (
|
||||||
from app.models import Alias, AuthorizedAddress
|
perform_mailbox_email_change,
|
||||||
|
MailboxEmailChangeError,
|
||||||
|
MailboxError,
|
||||||
|
)
|
||||||
|
from app.models import AuthorizedAddress
|
||||||
from app.models import Mailbox
|
from app.models import Mailbox
|
||||||
from app.pgp_utils import PGPException, load_public_key_and_check
|
from app.pgp_utils import PGPException, load_public_key_and_check
|
||||||
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
||||||
@ -25,7 +25,7 @@ from app.utils import sanitize_email, CSRFValidationForm
|
|||||||
|
|
||||||
|
|
||||||
class ChangeEmailForm(FlaskForm):
|
class ChangeEmailForm(FlaskForm):
|
||||||
email = EmailField(
|
email = StringField(
|
||||||
"email", validators=[validators.DataRequired(), validators.Email()]
|
"email", validators=[validators.DataRequired(), validators.Email()]
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -56,34 +56,19 @@ def mailbox_detail_route(mailbox_id):
|
|||||||
request.form.get("form-name") == "update-email"
|
request.form.get("form-name") == "update-email"
|
||||||
and change_email_form.validate_on_submit()
|
and change_email_form.validate_on_submit()
|
||||||
):
|
):
|
||||||
new_email = sanitize_email(change_email_form.email.data)
|
try:
|
||||||
if new_email != mailbox.email and not pending_email:
|
response = mailbox_utils.request_mailbox_email_change(
|
||||||
# check if this email is not already used
|
current_user, mailbox, change_email_form.email.data
|
||||||
if mailbox_already_used(new_email, current_user) or Alias.get_by(
|
)
|
||||||
email=new_email
|
flash(
|
||||||
):
|
f"You are going to receive an email to confirm {mailbox.email}.",
|
||||||
flash(f"Email {new_email} already used", "error")
|
"success",
|
||||||
elif not email_can_be_used_as_mailbox(new_email):
|
)
|
||||||
flash("You cannot use this email address as your mailbox", "error")
|
except mailbox_utils.MailboxError as e:
|
||||||
else:
|
flash(e.msg, "error")
|
||||||
mailbox.new_email = new_email
|
return redirect(
|
||||||
Session.commit()
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
||||||
|
)
|
||||||
try:
|
|
||||||
verify_mailbox_change(current_user, mailbox, new_email)
|
|
||||||
except SMTPRecipientsRefused:
|
|
||||||
flash(
|
|
||||||
f"Incorrect mailbox, please recheck {mailbox.email}",
|
|
||||||
"error",
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
flash(
|
|
||||||
f"You are going to receive an email to confirm {new_email}.",
|
|
||||||
"success",
|
|
||||||
)
|
|
||||||
return redirect(
|
|
||||||
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
||||||
)
|
|
||||||
elif request.form.get("form-name") == "force-spf":
|
elif request.form.get("form-name") == "force-spf":
|
||||||
if not ENFORCE_SPF:
|
if not ENFORCE_SPF:
|
||||||
flash("SPF enforcement globally not enabled", "error")
|
flash("SPF enforcement globally not enabled", "error")
|
||||||
@ -265,81 +250,57 @@ def mailbox_detail_route(mailbox_id):
|
|||||||
return render_template("dashboard/mailbox_detail.html", **locals())
|
return render_template("dashboard/mailbox_detail.html", **locals())
|
||||||
|
|
||||||
|
|
||||||
def verify_mailbox_change(user, mailbox, new_email):
|
|
||||||
s = TimestampSigner(MAILBOX_SECRET)
|
|
||||||
mailbox_id_signed = s.sign(str(mailbox.id)).decode()
|
|
||||||
verification_url = (
|
|
||||||
f"{URL}/dashboard/mailbox/confirm_change?mailbox_id={mailbox_id_signed}"
|
|
||||||
)
|
|
||||||
|
|
||||||
send_email(
|
|
||||||
new_email,
|
|
||||||
"Confirm mailbox change on SimpleLogin",
|
|
||||||
render(
|
|
||||||
"transactional/verify-mailbox-change.txt.jinja2",
|
|
||||||
user=user,
|
|
||||||
link=verification_url,
|
|
||||||
mailbox_email=mailbox.email,
|
|
||||||
mailbox_new_email=new_email,
|
|
||||||
),
|
|
||||||
render(
|
|
||||||
"transactional/verify-mailbox-change.html",
|
|
||||||
user=user,
|
|
||||||
link=verification_url,
|
|
||||||
mailbox_email=mailbox.email,
|
|
||||||
mailbox_new_email=new_email,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@dashboard_bp.route(
|
@dashboard_bp.route(
|
||||||
"/mailbox/<int:mailbox_id>/cancel_email_change", methods=["GET", "POST"]
|
"/mailbox/<int:mailbox_id>/cancel_email_change", methods=["GET", "POST"]
|
||||||
)
|
)
|
||||||
@login_required
|
@login_required
|
||||||
def cancel_mailbox_change_route(mailbox_id):
|
def cancel_mailbox_change_route(mailbox_id):
|
||||||
mailbox = Mailbox.get(mailbox_id)
|
try:
|
||||||
if not mailbox or mailbox.user_id != current_user.id:
|
mailbox_utils.cancel_email_change(mailbox_id, current_user)
|
||||||
flash("You cannot see this page", "warning")
|
|
||||||
return redirect(url_for("dashboard.index"))
|
|
||||||
|
|
||||||
if mailbox.new_email:
|
|
||||||
mailbox.new_email = None
|
|
||||||
Session.commit()
|
|
||||||
flash("Your mailbox change is cancelled", "success")
|
flash("Your mailbox change is cancelled", "success")
|
||||||
return redirect(
|
return redirect(
|
||||||
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
||||||
)
|
)
|
||||||
else:
|
except MailboxError as e:
|
||||||
flash("You have no pending mailbox change", "warning")
|
flash(e.msg, "warning")
|
||||||
return redirect(
|
return redirect(url_for("dashboard.index"))
|
||||||
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@dashboard_bp.route("/mailbox/confirm_change")
|
@dashboard_bp.route("/mailbox/confirm_change")
|
||||||
def mailbox_confirm_email_change_route():
|
def mailbox_confirm_email_change_route():
|
||||||
s = TimestampSigner(MAILBOX_SECRET)
|
mailbox_id = request.args.get("mailbox_id")
|
||||||
signed_mailbox_id = request.args.get("mailbox_id")
|
|
||||||
|
|
||||||
try:
|
code = request.args.get("code")
|
||||||
mailbox_id = int(s.unsign(signed_mailbox_id, max_age=900))
|
if code:
|
||||||
except Exception:
|
print("HAS OCO", code)
|
||||||
flash("Invalid link", "error")
|
try:
|
||||||
return redirect(url_for("dashboard.index"))
|
mailbox = mailbox_utils.verify_mailbox_code(current_user, mailbox_id, code)
|
||||||
|
flash("Successfully changed mailbox email", "success")
|
||||||
res = perform_mailbox_email_change(mailbox_id)
|
|
||||||
|
|
||||||
flash(res.message, res.message_category)
|
|
||||||
if res.error:
|
|
||||||
if res.error == MailboxEmailChangeError.EmailAlreadyUsed:
|
|
||||||
return redirect(
|
return redirect(
|
||||||
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox.id)
|
||||||
)
|
)
|
||||||
elif res.error == MailboxEmailChangeError.InvalidId:
|
except mailbox_utils.MailboxError as e:
|
||||||
return redirect(url_for("dashboard.index"))
|
print(e)
|
||||||
else:
|
flash(f"Cannot verify mailbox: {e.msg}", "error")
|
||||||
raise Exception("Unhandled MailboxEmailChangeError")
|
return redirect(url_for("dashboard.mailbox_route"))
|
||||||
else:
|
else:
|
||||||
return redirect(
|
s = TimestampSigner(MAILBOX_SECRET)
|
||||||
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
try:
|
||||||
)
|
mailbox_id = int(s.unsign(mailbox_id, max_age=900))
|
||||||
|
res = perform_mailbox_email_change(mailbox_id)
|
||||||
|
flash(res.message, res.message_category)
|
||||||
|
if res.error:
|
||||||
|
if res.error == MailboxEmailChangeError.EmailAlreadyUsed:
|
||||||
|
return redirect(
|
||||||
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
||||||
|
)
|
||||||
|
elif res.error == MailboxEmailChangeError.InvalidId:
|
||||||
|
return redirect(url_for("dashboard.index"))
|
||||||
|
else:
|
||||||
|
raise Exception("Unhandled MailboxEmailChangeError")
|
||||||
|
except Exception:
|
||||||
|
flash("Invalid link", "error")
|
||||||
|
return redirect(url_for("dashboard.index"))
|
||||||
|
|
||||||
|
flash("Successfully changed mailbox email", "success")
|
||||||
|
return redirect(url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id))
|
||||||
|
@ -43,7 +43,10 @@ def notification_route(notification_id):
|
|||||||
def notifications_route():
|
def notifications_route():
|
||||||
page = 0
|
page = 0
|
||||||
if request.args.get("page"):
|
if request.args.get("page"):
|
||||||
page = int(request.args.get("page"))
|
try:
|
||||||
|
page = int(request.args.get("page"))
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
|
||||||
notifications = (
|
notifications = (
|
||||||
Notification.filter_by(user_id=current_user.id)
|
Notification.filter_by(user_id=current_user.id)
|
||||||
|
@ -174,7 +174,12 @@ def setting():
|
|||||||
flash("Your preference has been updated", "success")
|
flash("Your preference has been updated", "success")
|
||||||
return redirect(url_for("dashboard.setting"))
|
return redirect(url_for("dashboard.setting"))
|
||||||
elif request.form.get("form-name") == "random-alias-suffix":
|
elif request.form.get("form-name") == "random-alias-suffix":
|
||||||
scheme = int(request.form.get("random-alias-suffix-generator"))
|
try:
|
||||||
|
scheme = int(request.form.get("random-alias-suffix-generator"))
|
||||||
|
except ValueError:
|
||||||
|
flash("Invalid value", "error")
|
||||||
|
return redirect(url_for("dashboard.setting"))
|
||||||
|
|
||||||
if AliasSuffixEnum.has_value(scheme):
|
if AliasSuffixEnum.has_value(scheme):
|
||||||
current_user.random_alias_suffix = scheme
|
current_user.random_alias_suffix = scheme
|
||||||
Session.commit()
|
Session.commit()
|
||||||
|
@ -1345,17 +1345,16 @@ def get_queue_id(msg: Message) -> Optional[str]:
|
|||||||
|
|
||||||
received_header = str(msg[headers.RECEIVED])
|
received_header = str(msg[headers.RECEIVED])
|
||||||
if not received_header:
|
if not received_header:
|
||||||
return
|
return None
|
||||||
|
|
||||||
# received_header looks like 'from mail-wr1-x434.google.com (mail-wr1-x434.google.com [IPv6:2a00:1450:4864:20::434])\r\n\t(using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits))\r\n\t(No client certificate requested)\r\n\tby mx1.simplelogin.co (Postfix) with ESMTPS id 4FxQmw1DXdz2vK2\r\n\tfor <jglfdjgld@alias.com>; Fri, 4 Jun 2021 14:55:43 +0000 (UTC)'
|
# received_header looks like 'from mail-wr1-x434.google.com (mail-wr1-x434.google.com [IPv6:2a00:1450:4864:20::434])\r\n\t(using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits))\r\n\t(No client certificate requested)\r\n\tby mx1.simplelogin.co (Postfix) with ESMTPS id 4FxQmw1DXdz2vK2\r\n\tfor <jglfdjgld@alias.com>; Fri, 4 Jun 2021 14:55:43 +0000 (UTC)'
|
||||||
search_result = re.search("with ESMTPS id [0-9a-zA-Z]{1,}", received_header)
|
search_result = re.search(r"with E?SMTP[AS]? id ([0-9a-zA-Z]{1,})", received_header)
|
||||||
if not search_result:
|
if search_result:
|
||||||
return
|
return search_result.group(1)
|
||||||
|
search_result = re.search("\(Postfix\)\r\n\tid ([a-zA-Z0-9]{1,});", received_header)
|
||||||
# the "with ESMTPS id 4FxQmw1DXdz2vK2" part
|
if search_result:
|
||||||
with_esmtps = received_header[search_result.start() : search_result.end()]
|
return search_result.group(1)
|
||||||
|
return None
|
||||||
return with_esmtps[len("with ESMTPS id ") :]
|
|
||||||
|
|
||||||
|
|
||||||
def should_ignore_bounce(mail_from: str) -> bool:
|
def should_ignore_bounce(mail_from: str) -> bool:
|
||||||
|
@ -24,7 +24,7 @@ _sym_db = _symbol_database.Default()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0b\x65vent.proto\x12\x12simplelogin_events\"(\n\x0fUserPlanChanged\x12\x15\n\rplan_end_time\x18\x01 \x01(\r\"\r\n\x0bUserDeleted\"\\\n\x0c\x41liasCreated\x12\n\n\x02id\x18\x01 \x01(\r\x12\r\n\x05\x65mail\x18\x02 \x01(\t\x12\x0c\n\x04note\x18\x03 \x01(\t\x12\x0f\n\x07\x65nabled\x18\x04 \x01(\x08\x12\x12\n\ncreated_at\x18\x05 \x01(\r\"T\n\x12\x41liasStatusChanged\x12\n\n\x02id\x18\x01 \x01(\r\x12\r\n\x05\x65mail\x18\x02 \x01(\t\x12\x0f\n\x07\x65nabled\x18\x03 \x01(\x08\x12\x12\n\ncreated_at\x18\x04 \x01(\r\")\n\x0c\x41liasDeleted\x12\n\n\x02id\x18\x01 \x01(\r\x12\r\n\x05\x65mail\x18\x02 \x01(\t\"D\n\x10\x41liasCreatedList\x12\x30\n\x06\x65vents\x18\x01 \x03(\x0b\x32 .simplelogin_events.AliasCreated\"\x93\x03\n\x0c\x45ventContent\x12?\n\x10user_plan_change\x18\x01 \x01(\x0b\x32#.simplelogin_events.UserPlanChangedH\x00\x12\x37\n\x0cuser_deleted\x18\x02 \x01(\x0b\x32\x1f.simplelogin_events.UserDeletedH\x00\x12\x39\n\ralias_created\x18\x03 \x01(\x0b\x32 .simplelogin_events.AliasCreatedH\x00\x12\x45\n\x13\x61lias_status_change\x18\x04 \x01(\x0b\x32&.simplelogin_events.AliasStatusChangedH\x00\x12\x39\n\ralias_deleted\x18\x05 \x01(\x0b\x32 .simplelogin_events.AliasDeletedH\x00\x12\x41\n\x11\x61lias_create_list\x18\x06 \x01(\x0b\x32$.simplelogin_events.AliasCreatedListH\x00\x42\t\n\x07\x63ontent\"y\n\x05\x45vent\x12\x0f\n\x07user_id\x18\x01 \x01(\r\x12\x18\n\x10\x65xternal_user_id\x18\x02 \x01(\t\x12\x12\n\npartner_id\x18\x03 \x01(\r\x12\x31\n\x07\x63ontent\x18\x04 \x01(\x0b\x32 .simplelogin_events.EventContentb\x06proto3')
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0b\x65vent.proto\x12\x12simplelogin_events\":\n\x0fUserPlanChanged\x12\x15\n\rplan_end_time\x18\x01 \x01(\r\x12\x10\n\x08lifetime\x18\x02 \x01(\x08\"\r\n\x0bUserDeleted\"\\\n\x0c\x41liasCreated\x12\n\n\x02id\x18\x01 \x01(\r\x12\r\n\x05\x65mail\x18\x02 \x01(\t\x12\x0c\n\x04note\x18\x03 \x01(\t\x12\x0f\n\x07\x65nabled\x18\x04 \x01(\x08\x12\x12\n\ncreated_at\x18\x05 \x01(\r\"T\n\x12\x41liasStatusChanged\x12\n\n\x02id\x18\x01 \x01(\r\x12\r\n\x05\x65mail\x18\x02 \x01(\t\x12\x0f\n\x07\x65nabled\x18\x03 \x01(\x08\x12\x12\n\ncreated_at\x18\x04 \x01(\r\")\n\x0c\x41liasDeleted\x12\n\n\x02id\x18\x01 \x01(\r\x12\r\n\x05\x65mail\x18\x02 \x01(\t\"D\n\x10\x41liasCreatedList\x12\x30\n\x06\x65vents\x18\x01 \x03(\x0b\x32 .simplelogin_events.AliasCreated\"\x93\x03\n\x0c\x45ventContent\x12?\n\x10user_plan_change\x18\x01 \x01(\x0b\x32#.simplelogin_events.UserPlanChangedH\x00\x12\x37\n\x0cuser_deleted\x18\x02 \x01(\x0b\x32\x1f.simplelogin_events.UserDeletedH\x00\x12\x39\n\ralias_created\x18\x03 \x01(\x0b\x32 .simplelogin_events.AliasCreatedH\x00\x12\x45\n\x13\x61lias_status_change\x18\x04 \x01(\x0b\x32&.simplelogin_events.AliasStatusChangedH\x00\x12\x39\n\ralias_deleted\x18\x05 \x01(\x0b\x32 .simplelogin_events.AliasDeletedH\x00\x12\x41\n\x11\x61lias_create_list\x18\x06 \x01(\x0b\x32$.simplelogin_events.AliasCreatedListH\x00\x42\t\n\x07\x63ontent\"y\n\x05\x45vent\x12\x0f\n\x07user_id\x18\x01 \x01(\r\x12\x18\n\x10\x65xternal_user_id\x18\x02 \x01(\t\x12\x12\n\npartner_id\x18\x03 \x01(\r\x12\x31\n\x07\x63ontent\x18\x04 \x01(\x0b\x32 .simplelogin_events.EventContentb\x06proto3')
|
||||||
|
|
||||||
_globals = globals()
|
_globals = globals()
|
||||||
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
||||||
@ -32,19 +32,19 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'event_pb2', _globals)
|
|||||||
if not _descriptor._USE_C_DESCRIPTORS:
|
if not _descriptor._USE_C_DESCRIPTORS:
|
||||||
DESCRIPTOR._loaded_options = None
|
DESCRIPTOR._loaded_options = None
|
||||||
_globals['_USERPLANCHANGED']._serialized_start=35
|
_globals['_USERPLANCHANGED']._serialized_start=35
|
||||||
_globals['_USERPLANCHANGED']._serialized_end=75
|
_globals['_USERPLANCHANGED']._serialized_end=93
|
||||||
_globals['_USERDELETED']._serialized_start=77
|
_globals['_USERDELETED']._serialized_start=95
|
||||||
_globals['_USERDELETED']._serialized_end=90
|
_globals['_USERDELETED']._serialized_end=108
|
||||||
_globals['_ALIASCREATED']._serialized_start=92
|
_globals['_ALIASCREATED']._serialized_start=110
|
||||||
_globals['_ALIASCREATED']._serialized_end=184
|
_globals['_ALIASCREATED']._serialized_end=202
|
||||||
_globals['_ALIASSTATUSCHANGED']._serialized_start=186
|
_globals['_ALIASSTATUSCHANGED']._serialized_start=204
|
||||||
_globals['_ALIASSTATUSCHANGED']._serialized_end=270
|
_globals['_ALIASSTATUSCHANGED']._serialized_end=288
|
||||||
_globals['_ALIASDELETED']._serialized_start=272
|
_globals['_ALIASDELETED']._serialized_start=290
|
||||||
_globals['_ALIASDELETED']._serialized_end=313
|
_globals['_ALIASDELETED']._serialized_end=331
|
||||||
_globals['_ALIASCREATEDLIST']._serialized_start=315
|
_globals['_ALIASCREATEDLIST']._serialized_start=333
|
||||||
_globals['_ALIASCREATEDLIST']._serialized_end=383
|
_globals['_ALIASCREATEDLIST']._serialized_end=401
|
||||||
_globals['_EVENTCONTENT']._serialized_start=386
|
_globals['_EVENTCONTENT']._serialized_start=404
|
||||||
_globals['_EVENTCONTENT']._serialized_end=789
|
_globals['_EVENTCONTENT']._serialized_end=807
|
||||||
_globals['_EVENT']._serialized_start=791
|
_globals['_EVENT']._serialized_start=809
|
||||||
_globals['_EVENT']._serialized_end=912
|
_globals['_EVENT']._serialized_end=930
|
||||||
# @@protoc_insertion_point(module_scope)
|
# @@protoc_insertion_point(module_scope)
|
||||||
|
@ -6,10 +6,12 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
|
|||||||
DESCRIPTOR: _descriptor.FileDescriptor
|
DESCRIPTOR: _descriptor.FileDescriptor
|
||||||
|
|
||||||
class UserPlanChanged(_message.Message):
|
class UserPlanChanged(_message.Message):
|
||||||
__slots__ = ("plan_end_time",)
|
__slots__ = ("plan_end_time", "lifetime")
|
||||||
PLAN_END_TIME_FIELD_NUMBER: _ClassVar[int]
|
PLAN_END_TIME_FIELD_NUMBER: _ClassVar[int]
|
||||||
|
LIFETIME_FIELD_NUMBER: _ClassVar[int]
|
||||||
plan_end_time: int
|
plan_end_time: int
|
||||||
def __init__(self, plan_end_time: _Optional[int] = ...) -> None: ...
|
lifetime: bool
|
||||||
|
def __init__(self, plan_end_time: _Optional[int] = ..., lifetime: bool = ...) -> None: ...
|
||||||
|
|
||||||
class UserDeleted(_message.Message):
|
class UserDeleted(_message.Message):
|
||||||
__slots__ = ()
|
__slots__ = ()
|
||||||
|
@ -12,11 +12,13 @@ from app.email_utils import (
|
|||||||
email_can_be_used_as_mailbox,
|
email_can_be_used_as_mailbox,
|
||||||
send_email,
|
send_email,
|
||||||
render,
|
render,
|
||||||
|
get_email_domain_part,
|
||||||
)
|
)
|
||||||
from app.email_validation import is_valid_email
|
from app.email_validation import is_valid_email
|
||||||
from app.log import LOG
|
from app.log import LOG
|
||||||
from app.models import User, Mailbox, Job, MailboxActivation
|
from app.models import User, Mailbox, Job, MailboxActivation, Alias
|
||||||
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
||||||
|
from app.utils import canonicalize_email, sanitize_email
|
||||||
|
|
||||||
|
|
||||||
@dataclasses.dataclass
|
@dataclasses.dataclass
|
||||||
@ -52,26 +54,13 @@ def create_mailbox(
|
|||||||
use_digit_codes: bool = False,
|
use_digit_codes: bool = False,
|
||||||
send_link: bool = True,
|
send_link: bool = True,
|
||||||
) -> CreateMailboxOutput:
|
) -> CreateMailboxOutput:
|
||||||
|
email = sanitize_email(email)
|
||||||
if not user.is_premium():
|
if not user.is_premium():
|
||||||
LOG.i(
|
LOG.i(
|
||||||
f"User {user} has tried to create mailbox with {email} but is not premium"
|
f"User {user} has tried to create mailbox with {email} but is not premium"
|
||||||
)
|
)
|
||||||
raise OnlyPaidError()
|
raise OnlyPaidError()
|
||||||
if not is_valid_email(email):
|
check_email_for_mailbox(email, user)
|
||||||
LOG.i(
|
|
||||||
f"User {user} has tried to create mailbox with {email} but is not valid email"
|
|
||||||
)
|
|
||||||
raise MailboxError("Invalid email")
|
|
||||||
elif mailbox_already_used(email, user):
|
|
||||||
LOG.i(
|
|
||||||
f"User {user} has tried to create mailbox with {email} but email is already used"
|
|
||||||
)
|
|
||||||
raise MailboxError("Email already used")
|
|
||||||
elif not email_can_be_used_as_mailbox(email):
|
|
||||||
LOG.i(
|
|
||||||
f"User {user} has tried to create mailbox with {email} but email is invalid"
|
|
||||||
)
|
|
||||||
raise MailboxError("Invalid email")
|
|
||||||
new_mailbox: Mailbox = Mailbox.create(
|
new_mailbox: Mailbox = Mailbox.create(
|
||||||
email=email, user_id=user.id, verified=verified, commit=True
|
email=email, user_id=user.id, verified=verified, commit=True
|
||||||
)
|
)
|
||||||
@ -103,8 +92,29 @@ def create_mailbox(
|
|||||||
return output
|
return output
|
||||||
|
|
||||||
|
|
||||||
|
def check_email_for_mailbox(email, user):
|
||||||
|
if not is_valid_email(email):
|
||||||
|
LOG.i(
|
||||||
|
f"User {user} has tried to create mailbox with {email} but is not valid email"
|
||||||
|
)
|
||||||
|
raise MailboxError("Invalid email")
|
||||||
|
elif mailbox_already_used(email, user):
|
||||||
|
LOG.i(
|
||||||
|
f"User {user} has tried to create mailbox with {email} but email is already used"
|
||||||
|
)
|
||||||
|
raise MailboxError("Email already used")
|
||||||
|
elif not email_can_be_used_as_mailbox(email):
|
||||||
|
LOG.i(
|
||||||
|
f"User {user} has tried to create mailbox with {email} but email is invalid"
|
||||||
|
)
|
||||||
|
raise MailboxError("Invalid email")
|
||||||
|
|
||||||
|
|
||||||
def delete_mailbox(
|
def delete_mailbox(
|
||||||
user: User, mailbox_id: int, transfer_mailbox_id: Optional[int]
|
user: User,
|
||||||
|
mailbox_id: int,
|
||||||
|
transfer_mailbox_id: Optional[int],
|
||||||
|
send_mail: bool = True,
|
||||||
) -> Mailbox:
|
) -> Mailbox:
|
||||||
mailbox = Mailbox.get(mailbox_id)
|
mailbox = Mailbox.get(mailbox_id)
|
||||||
|
|
||||||
@ -150,6 +160,7 @@ def delete_mailbox(
|
|||||||
"transfer_mailbox_id": transfer_mailbox_id
|
"transfer_mailbox_id": transfer_mailbox_id
|
||||||
if transfer_mailbox_id and transfer_mailbox_id > 0
|
if transfer_mailbox_id and transfer_mailbox_id > 0
|
||||||
else None,
|
else None,
|
||||||
|
"send_mail": send_mail,
|
||||||
},
|
},
|
||||||
run_at=arrow.now(),
|
run_at=arrow.now(),
|
||||||
commit=True,
|
commit=True,
|
||||||
@ -176,7 +187,7 @@ def verify_mailbox_code(user: User, mailbox_id: int, code: str) -> Mailbox:
|
|||||||
f"User {user} failed to verify mailbox {mailbox_id} because it's owned by another user"
|
f"User {user} failed to verify mailbox {mailbox_id} because it's owned by another user"
|
||||||
)
|
)
|
||||||
raise MailboxError("Invalid mailbox")
|
raise MailboxError("Invalid mailbox")
|
||||||
if mailbox.verified:
|
if mailbox.verified and not mailbox.new_email:
|
||||||
LOG.i(
|
LOG.i(
|
||||||
f"User {user} failed to verify mailbox {mailbox_id} because it's already verified"
|
f"User {user} failed to verify mailbox {mailbox_id} because it's already verified"
|
||||||
)
|
)
|
||||||
@ -213,13 +224,34 @@ def verify_mailbox_code(user: User, mailbox_id: int, code: str) -> Mailbox:
|
|||||||
activation.tries = activation.tries + 1
|
activation.tries = activation.tries + 1
|
||||||
Session.commit()
|
Session.commit()
|
||||||
raise CannotVerifyError("Invalid activation code")
|
raise CannotVerifyError("Invalid activation code")
|
||||||
LOG.i(f"User {user} has verified mailbox {mailbox_id}")
|
if mailbox.new_email:
|
||||||
mailbox.verified = True
|
LOG.i(
|
||||||
emit_user_audit_log(
|
f"User {user} has verified mailbox email change from {mailbox.email} to {mailbox.new_email}"
|
||||||
user=user,
|
)
|
||||||
action=UserAuditLogAction.VerifyMailbox,
|
emit_user_audit_log(
|
||||||
message=f"Verify mailbox {mailbox_id} ({mailbox.email})",
|
user=user,
|
||||||
)
|
action=UserAuditLogAction.UpdateMailbox,
|
||||||
|
message=f"Change mailbox email for mailbox {mailbox_id} (old={mailbox.email} | new={mailbox.new_email})",
|
||||||
|
)
|
||||||
|
mailbox.email = mailbox.new_email
|
||||||
|
mailbox.new_email = None
|
||||||
|
mailbox.verified = True
|
||||||
|
elif not mailbox.verified:
|
||||||
|
LOG.i(f"User {user} has verified mailbox {mailbox_id}")
|
||||||
|
mailbox.verified = True
|
||||||
|
emit_user_audit_log(
|
||||||
|
user=user,
|
||||||
|
action=UserAuditLogAction.VerifyMailbox,
|
||||||
|
message=f"Verify mailbox {mailbox_id} ({mailbox.email})",
|
||||||
|
)
|
||||||
|
if Mailbox.get_by(email=mailbox.new_email, user_id=user.id):
|
||||||
|
raise MailboxError("That addres is already in use")
|
||||||
|
|
||||||
|
else:
|
||||||
|
LOG.i(
|
||||||
|
"User {user} alread has mailbox {mailbox} verified and no pending email change"
|
||||||
|
)
|
||||||
|
|
||||||
clear_activation_codes_for_mailbox(mailbox)
|
clear_activation_codes_for_mailbox(mailbox)
|
||||||
return mailbox
|
return mailbox
|
||||||
|
|
||||||
@ -244,7 +276,10 @@ def generate_activation_code(
|
|||||||
|
|
||||||
|
|
||||||
def send_verification_email(
|
def send_verification_email(
|
||||||
user: User, mailbox: Mailbox, activation: MailboxActivation, send_link: bool = True
|
user: User,
|
||||||
|
mailbox: Mailbox,
|
||||||
|
activation: MailboxActivation,
|
||||||
|
send_link: bool = True,
|
||||||
):
|
):
|
||||||
LOG.i(
|
LOG.i(
|
||||||
f"Sending mailbox verification email to {mailbox.email} with send link={send_link}"
|
f"Sending mailbox verification email to {mailbox.email} with send link={send_link}"
|
||||||
@ -279,6 +314,72 @@ def send_verification_email(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def send_change_email(user: User, mailbox: Mailbox, activation: MailboxActivation):
|
||||||
|
verification_url = f"{config.URL}/dashboard/mailbox/confirm_change?mailbox_id={mailbox.id}&code={activation.code}"
|
||||||
|
|
||||||
|
send_email(
|
||||||
|
mailbox.new_email,
|
||||||
|
"Confirm mailbox change on SimpleLogin",
|
||||||
|
render(
|
||||||
|
"transactional/verify-mailbox-change.txt.jinja2",
|
||||||
|
user=user,
|
||||||
|
link=verification_url,
|
||||||
|
mailbox_email=mailbox.email,
|
||||||
|
mailbox_new_email=mailbox.new_email,
|
||||||
|
),
|
||||||
|
render(
|
||||||
|
"transactional/verify-mailbox-change.html",
|
||||||
|
user=user,
|
||||||
|
link=verification_url,
|
||||||
|
mailbox_email=mailbox.email,
|
||||||
|
mailbox_new_email=mailbox.new_email,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def request_mailbox_email_change(
|
||||||
|
user: User,
|
||||||
|
mailbox: Mailbox,
|
||||||
|
new_email: str,
|
||||||
|
email_ownership_verified: bool = False,
|
||||||
|
send_email: bool = True,
|
||||||
|
use_digit_codes: bool = False,
|
||||||
|
) -> CreateMailboxOutput:
|
||||||
|
new_email = sanitize_email(new_email)
|
||||||
|
if new_email == mailbox.email:
|
||||||
|
raise MailboxError("Same email")
|
||||||
|
check_email_for_mailbox(new_email, user)
|
||||||
|
if email_ownership_verified:
|
||||||
|
mailbox.email = new_email
|
||||||
|
else:
|
||||||
|
mailbox.new_email = new_email
|
||||||
|
emit_user_audit_log(
|
||||||
|
user=user,
|
||||||
|
action=UserAuditLogAction.UpdateMailbox,
|
||||||
|
message=f"Updated mailbox {mailbox.id} email ({new_email}) pre-verified({email_ownership_verified}",
|
||||||
|
)
|
||||||
|
Session.commit()
|
||||||
|
|
||||||
|
if email_ownership_verified:
|
||||||
|
LOG.i(f"User {user} as created a pre-verified mailbox with {new_email}")
|
||||||
|
return CreateMailboxOutput(mailbox=mailbox, activation=None)
|
||||||
|
|
||||||
|
LOG.i(f"User {user} has updated mailbox email with {new_email}")
|
||||||
|
activation = generate_activation_code(mailbox, use_digit_code=use_digit_codes)
|
||||||
|
output = CreateMailboxOutput(mailbox=mailbox, activation=activation)
|
||||||
|
|
||||||
|
if not send_email:
|
||||||
|
LOG.i(f"Skipping sending validation email for mailbox {mailbox}")
|
||||||
|
return output
|
||||||
|
|
||||||
|
send_change_email(
|
||||||
|
user,
|
||||||
|
mailbox,
|
||||||
|
activation=activation,
|
||||||
|
)
|
||||||
|
return output
|
||||||
|
|
||||||
|
|
||||||
class MailboxEmailChangeError(Enum):
|
class MailboxEmailChangeError(Enum):
|
||||||
InvalidId = 1
|
InvalidId = 1
|
||||||
EmailAlreadyUsed = 2
|
EmailAlreadyUsed = 2
|
||||||
@ -328,3 +429,73 @@ def perform_mailbox_email_change(mailbox_id: int) -> MailboxEmailChangeResult:
|
|||||||
message="Invalid link",
|
message="Invalid link",
|
||||||
message_category="error",
|
message_category="error",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def cancel_email_change(mailbox_id: int, user: User):
|
||||||
|
mailbox = Mailbox.get(mailbox_id)
|
||||||
|
if not mailbox:
|
||||||
|
LOG.i(
|
||||||
|
f"User {user} has tried to cancel a mailbox an unknown mailbox {mailbox_id}"
|
||||||
|
)
|
||||||
|
raise MailboxError("Invalid mailbox")
|
||||||
|
if mailbox.user.id != user.id:
|
||||||
|
LOG.i(
|
||||||
|
f"User {user} has tried to cancel a mailbox {mailbox} owned by another user"
|
||||||
|
)
|
||||||
|
raise MailboxError("Invalid mailbox")
|
||||||
|
mailbox.new_email = None
|
||||||
|
LOG.i(f"User {mailbox.user} has cancelled mailbox email change")
|
||||||
|
clear_activation_codes_for_mailbox(mailbox)
|
||||||
|
|
||||||
|
|
||||||
|
def __get_alias_mailbox_from_email(
|
||||||
|
email_address: str, alias: Alias
|
||||||
|
) -> Optional[Mailbox]:
|
||||||
|
for mailbox in alias.mailboxes:
|
||||||
|
if mailbox.email == email_address:
|
||||||
|
return mailbox
|
||||||
|
|
||||||
|
for authorized_address in mailbox.authorized_addresses:
|
||||||
|
if authorized_address.email == email_address:
|
||||||
|
LOG.d(
|
||||||
|
"Found an authorized address for %s %s %s",
|
||||||
|
alias,
|
||||||
|
mailbox,
|
||||||
|
authorized_address,
|
||||||
|
)
|
||||||
|
return mailbox
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def __get_alias_mailbox_from_email_or_canonical_email(
|
||||||
|
email_address: str, alias: Alias
|
||||||
|
) -> Optional[Mailbox]:
|
||||||
|
# We need to first check for the uncanonicalized version because we still have users in the db with the
|
||||||
|
# email non canonicalized. So if it matches the already existing one use that, otherwise check the canonical one
|
||||||
|
mbox = __get_alias_mailbox_from_email(email_address, alias)
|
||||||
|
if mbox is not None:
|
||||||
|
return mbox
|
||||||
|
canonical_email = canonicalize_email(email_address)
|
||||||
|
if canonical_email != email_address:
|
||||||
|
return __get_alias_mailbox_from_email(canonical_email, alias)
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def get_mailbox_for_reply_phase(
|
||||||
|
envelope_mail_from: str, header_mail_from: str, alias
|
||||||
|
) -> Optional[Mailbox]:
|
||||||
|
"""return the corresponding mailbox given the mail_from and alias
|
||||||
|
Usually the mail_from=mailbox.email but it can also be one of the authorized address
|
||||||
|
"""
|
||||||
|
mbox = __get_alias_mailbox_from_email_or_canonical_email(envelope_mail_from, alias)
|
||||||
|
if mbox is not None:
|
||||||
|
return mbox
|
||||||
|
if not header_mail_from:
|
||||||
|
return None
|
||||||
|
envelope_from_domain = get_email_domain_part(envelope_mail_from)
|
||||||
|
header_from_domain = get_email_domain_part(header_mail_from)
|
||||||
|
if envelope_from_domain != header_from_domain:
|
||||||
|
return None
|
||||||
|
# For services that use VERP sending (envelope from has encoded data to account for bounces)
|
||||||
|
# if the domain is the same in the header from as the envelope from we can use the header from
|
||||||
|
return __get_alias_mailbox_from_email_or_canonical_email(header_mail_from, alias)
|
||||||
|
@ -158,6 +158,8 @@ class File(Base, ModelMixin):
|
|||||||
path = sa.Column(sa.String(128), unique=True, nullable=False)
|
path = sa.Column(sa.String(128), unique=True, nullable=False)
|
||||||
user_id = sa.Column(sa.ForeignKey("users.id", ondelete="cascade"), nullable=True)
|
user_id = sa.Column(sa.ForeignKey("users.id", ondelete="cascade"), nullable=True)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_file_user_id", "user_id"),)
|
||||||
|
|
||||||
def get_url(self, expires_in=3600):
|
def get_url(self, expires_in=3600):
|
||||||
return s3.get_url(self.path, expires_in)
|
return s3.get_url(self.path, expires_in)
|
||||||
|
|
||||||
@ -319,6 +321,8 @@ class HibpNotifiedAlias(Base, ModelMixin):
|
|||||||
|
|
||||||
notified_at = sa.Column(ArrowType, default=arrow.utcnow, nullable=False)
|
notified_at = sa.Column(ArrowType, default=arrow.utcnow, nullable=False)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_hibp_notified_alias_user_id", "user_id"),)
|
||||||
|
|
||||||
|
|
||||||
class Fido(Base, ModelMixin):
|
class Fido(Base, ModelMixin):
|
||||||
__tablename__ = "fido"
|
__tablename__ = "fido"
|
||||||
@ -333,11 +337,13 @@ class Fido(Base, ModelMixin):
|
|||||||
name = sa.Column(sa.String(128), nullable=False, unique=False)
|
name = sa.Column(sa.String(128), nullable=False, unique=False)
|
||||||
user_id = sa.Column(sa.ForeignKey("users.id", ondelete="cascade"), nullable=True)
|
user_id = sa.Column(sa.ForeignKey("users.id", ondelete="cascade"), nullable=True)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_fido_user_id", "user_id"),)
|
||||||
|
|
||||||
|
|
||||||
class User(Base, ModelMixin, UserMixin, PasswordOracle):
|
class User(Base, ModelMixin, UserMixin, PasswordOracle):
|
||||||
__tablename__ = "users"
|
__tablename__ = "users"
|
||||||
|
|
||||||
FLAG_DISABLE_CREATE_CONTACTS = 1 << 0
|
FLAG_FREE_DISABLE_CREATE_CONTACTS = 1 << 0
|
||||||
FLAG_CREATED_FROM_PARTNER = 1 << 1
|
FLAG_CREATED_FROM_PARTNER = 1 << 1
|
||||||
FLAG_FREE_OLD_ALIAS_LIMIT = 1 << 2
|
FLAG_FREE_OLD_ALIAS_LIMIT = 1 << 2
|
||||||
FLAG_CREATED_ALIAS_FROM_PARTNER = 1 << 3
|
FLAG_CREATED_ALIAS_FROM_PARTNER = 1 << 3
|
||||||
@ -544,7 +550,7 @@ class User(Base, ModelMixin, UserMixin, PasswordOracle):
|
|||||||
# bitwise flags. Allow for future expansion
|
# bitwise flags. Allow for future expansion
|
||||||
flags = sa.Column(
|
flags = sa.Column(
|
||||||
sa.BigInteger,
|
sa.BigInteger,
|
||||||
default=FLAG_DISABLE_CREATE_CONTACTS,
|
default=FLAG_FREE_DISABLE_CREATE_CONTACTS,
|
||||||
server_default="0",
|
server_default="0",
|
||||||
nullable=False,
|
nullable=False,
|
||||||
)
|
)
|
||||||
@ -565,6 +571,11 @@ class User(Base, ModelMixin, UserMixin, PasswordOracle):
|
|||||||
"ix_users_activated_trial_end_lifetime", activated, trial_end, lifetime
|
"ix_users_activated_trial_end_lifetime", activated, trial_end, lifetime
|
||||||
),
|
),
|
||||||
sa.Index("ix_users_delete_on", delete_on),
|
sa.Index("ix_users_delete_on", delete_on),
|
||||||
|
sa.Index("ix_users_default_mailbox_id", default_mailbox_id),
|
||||||
|
sa.Index(
|
||||||
|
"ix_users_default_alias_custom_domain_id", default_alias_custom_domain_id
|
||||||
|
),
|
||||||
|
sa.Index("ix_users_profile_picture_id", profile_picture_id),
|
||||||
)
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@ -629,7 +640,7 @@ class User(Base, ModelMixin, UserMixin, PasswordOracle):
|
|||||||
# If the user is created from partner, do not notify
|
# If the user is created from partner, do not notify
|
||||||
# nor give a trial
|
# nor give a trial
|
||||||
if from_partner:
|
if from_partner:
|
||||||
user.flags = User.FLAG_CREATED_FROM_PARTNER
|
user.flags = user.flags | User.FLAG_CREATED_FROM_PARTNER
|
||||||
user.notification = False
|
user.notification = False
|
||||||
user.trial_end = None
|
user.trial_end = None
|
||||||
Job.create(
|
Job.create(
|
||||||
@ -1178,7 +1189,7 @@ class User(Base, ModelMixin, UserMixin, PasswordOracle):
|
|||||||
def can_create_contacts(self) -> bool:
|
def can_create_contacts(self) -> bool:
|
||||||
if self.is_premium():
|
if self.is_premium():
|
||||||
return True
|
return True
|
||||||
if self.flags & User.FLAG_DISABLE_CREATE_CONTACTS == 0:
|
if self.flags & User.FLAG_FREE_DISABLE_CREATE_CONTACTS == 0:
|
||||||
return True
|
return True
|
||||||
return not config.DISABLE_CREATE_CONTACTS_FOR_FREE_USERS
|
return not config.DISABLE_CREATE_CONTACTS_FOR_FREE_USERS
|
||||||
|
|
||||||
@ -1221,6 +1232,8 @@ class ActivationCode(Base, ModelMixin):
|
|||||||
|
|
||||||
expired = sa.Column(ArrowType, nullable=False, default=_expiration_1h)
|
expired = sa.Column(ArrowType, nullable=False, default=_expiration_1h)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_activation_code_user_id", "user_id"),)
|
||||||
|
|
||||||
def is_expired(self):
|
def is_expired(self):
|
||||||
return self.expired < arrow.now()
|
return self.expired < arrow.now()
|
||||||
|
|
||||||
@ -1237,6 +1250,8 @@ class ResetPasswordCode(Base, ModelMixin):
|
|||||||
|
|
||||||
expired = sa.Column(ArrowType, nullable=False, default=_expiration_1h)
|
expired = sa.Column(ArrowType, nullable=False, default=_expiration_1h)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_reset_password_code_user_id", "user_id"),)
|
||||||
|
|
||||||
def is_expired(self):
|
def is_expired(self):
|
||||||
return self.expired < arrow.now()
|
return self.expired < arrow.now()
|
||||||
|
|
||||||
@ -1279,6 +1294,8 @@ class MfaBrowser(Base, ModelMixin):
|
|||||||
|
|
||||||
user = orm.relationship(User)
|
user = orm.relationship(User)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_mfa_browser_user_id", "user_id"),)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def create_new(cls, user, token_length=64) -> "MfaBrowser":
|
def create_new(cls, user, token_length=64) -> "MfaBrowser":
|
||||||
found = False
|
found = False
|
||||||
@ -1337,6 +1354,12 @@ class Client(Base, ModelMixin):
|
|||||||
user = orm.relationship(User)
|
user = orm.relationship(User)
|
||||||
referral = orm.relationship("Referral")
|
referral = orm.relationship("Referral")
|
||||||
|
|
||||||
|
__table_args__ = (
|
||||||
|
sa.Index("ix_client_user_id", "user_id"),
|
||||||
|
sa.Index("ix_client_icon_id", "icon_id"),
|
||||||
|
sa.Index("ix_client_referral_id", "referral_id"),
|
||||||
|
)
|
||||||
|
|
||||||
def nb_user(self):
|
def nb_user(self):
|
||||||
return ClientUser.filter_by(client_id=self.id).count()
|
return ClientUser.filter_by(client_id=self.id).count()
|
||||||
|
|
||||||
@ -1385,6 +1408,8 @@ class RedirectUri(Base, ModelMixin):
|
|||||||
|
|
||||||
client = orm.relationship(Client, backref="redirect_uris")
|
client = orm.relationship(Client, backref="redirect_uris")
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_redirect_uri_client_id", "client_id"),)
|
||||||
|
|
||||||
|
|
||||||
class AuthorizationCode(Base, ModelMixin):
|
class AuthorizationCode(Base, ModelMixin):
|
||||||
__tablename__ = "authorization_code"
|
__tablename__ = "authorization_code"
|
||||||
@ -1406,6 +1431,11 @@ class AuthorizationCode(Base, ModelMixin):
|
|||||||
|
|
||||||
expired = sa.Column(ArrowType, nullable=False, default=_expiration_5m)
|
expired = sa.Column(ArrowType, nullable=False, default=_expiration_5m)
|
||||||
|
|
||||||
|
__table_args__ = (
|
||||||
|
sa.Index("ix_authorization_code_client_id", "client_id"),
|
||||||
|
sa.Index("ix_authorization_code_user_id", "user_id"),
|
||||||
|
)
|
||||||
|
|
||||||
def is_expired(self):
|
def is_expired(self):
|
||||||
return self.expired < arrow.now()
|
return self.expired < arrow.now()
|
||||||
|
|
||||||
@ -1428,6 +1458,11 @@ class OauthToken(Base, ModelMixin):
|
|||||||
|
|
||||||
expired = sa.Column(ArrowType, nullable=False, default=_expiration_1h)
|
expired = sa.Column(ArrowType, nullable=False, default=_expiration_1h)
|
||||||
|
|
||||||
|
__table_args__ = (
|
||||||
|
sa.Index("ix_oauth_token_user_id", "user_id"),
|
||||||
|
sa.Index("ix_oauth_token_client_id", "client_id"),
|
||||||
|
)
|
||||||
|
|
||||||
def is_expired(self):
|
def is_expired(self):
|
||||||
return self.expired < arrow.now()
|
return self.expired < arrow.now()
|
||||||
|
|
||||||
@ -1581,6 +1616,7 @@ class Alias(Base, ModelMixin):
|
|||||||
postgresql_ops={"note": "gin_trgm_ops"},
|
postgresql_ops={"note": "gin_trgm_ops"},
|
||||||
postgresql_using="gin",
|
postgresql_using="gin",
|
||||||
),
|
),
|
||||||
|
Index("ix_alias_original_owner_id", "original_owner_id"),
|
||||||
)
|
)
|
||||||
|
|
||||||
user = orm.relationship(User, foreign_keys=[user_id])
|
user = orm.relationship(User, foreign_keys=[user_id])
|
||||||
@ -1623,7 +1659,7 @@ class Alias(Base, ModelMixin):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_custom_domain(alias_address) -> Optional["CustomDomain"]:
|
def get_custom_domain(alias_address: str) -> Optional["CustomDomain"]:
|
||||||
alias_domain = validate_email(
|
alias_domain = validate_email(
|
||||||
alias_address, check_deliverability=False, allow_smtputf8=False
|
alias_address, check_deliverability=False, allow_smtputf8=False
|
||||||
).domain
|
).domain
|
||||||
@ -1666,6 +1702,11 @@ class Alias(Base, ModelMixin):
|
|||||||
custom_domain = Alias.get_custom_domain(email)
|
custom_domain = Alias.get_custom_domain(email)
|
||||||
if custom_domain:
|
if custom_domain:
|
||||||
new_alias.custom_domain_id = custom_domain.id
|
new_alias.custom_domain_id = custom_domain.id
|
||||||
|
else:
|
||||||
|
custom_domain = CustomDomain.get(kw["custom_domain_id"])
|
||||||
|
# If it comes from a custom domain created from partner. Mark it as created from partner
|
||||||
|
if custom_domain is not None and custom_domain.partner_id is not None:
|
||||||
|
new_alias.flags = (new_alias.flags or 0) | Alias.FLAG_PARTNER_CREATED
|
||||||
|
|
||||||
Session.add(new_alias)
|
Session.add(new_alias)
|
||||||
DailyMetric.get_or_create_today_metric().nb_alias += 1
|
DailyMetric.get_or_create_today_metric().nb_alias += 1
|
||||||
@ -2069,7 +2110,12 @@ class Contact(Base, ModelMixin):
|
|||||||
|
|
||||||
class EmailLog(Base, ModelMixin):
|
class EmailLog(Base, ModelMixin):
|
||||||
__tablename__ = "email_log"
|
__tablename__ = "email_log"
|
||||||
__table_args__ = (Index("ix_email_log_created_at", "created_at"),)
|
__table_args__ = (
|
||||||
|
Index("ix_email_log_created_at", "created_at"),
|
||||||
|
Index("ix_email_log_mailbox_id", "mailbox_id"),
|
||||||
|
Index("ix_email_log_bounced_mailbox_id", "bounced_mailbox_id"),
|
||||||
|
Index("ix_email_log_refused_email_id", "refused_email_id"),
|
||||||
|
)
|
||||||
|
|
||||||
user_id = sa.Column(
|
user_id = sa.Column(
|
||||||
sa.ForeignKey(User.id, ondelete="cascade"), nullable=False, index=True
|
sa.ForeignKey(User.id, ondelete="cascade"), nullable=False, index=True
|
||||||
@ -2345,6 +2391,7 @@ class AliasUsedOn(Base, ModelMixin):
|
|||||||
|
|
||||||
__table_args__ = (
|
__table_args__ = (
|
||||||
sa.UniqueConstraint("alias_id", "hostname", name="uq_alias_used"),
|
sa.UniqueConstraint("alias_id", "hostname", name="uq_alias_used"),
|
||||||
|
sa.Index("ix_alias_used_on_user_id", "user_id"),
|
||||||
)
|
)
|
||||||
|
|
||||||
alias_id = sa.Column(
|
alias_id = sa.Column(
|
||||||
@ -2371,6 +2418,11 @@ class ApiKey(Base, ModelMixin):
|
|||||||
|
|
||||||
user = orm.relationship(User)
|
user = orm.relationship(User)
|
||||||
|
|
||||||
|
__table_args__ = (
|
||||||
|
sa.Index("ix_api_key_code", "code"),
|
||||||
|
sa.Index("ix_api_key_user_id", "user_id"),
|
||||||
|
)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def create(cls, user_id, name=None, **kwargs):
|
def create(cls, user_id, name=None, **kwargs):
|
||||||
code = random_string(60)
|
code = random_string(60)
|
||||||
@ -2529,6 +2581,7 @@ class AutoCreateRule(Base, ModelMixin):
|
|||||||
sa.UniqueConstraint(
|
sa.UniqueConstraint(
|
||||||
"custom_domain_id", "order", name="uq_auto_create_rule_order"
|
"custom_domain_id", "order", name="uq_auto_create_rule_order"
|
||||||
),
|
),
|
||||||
|
sa.Index("ix_auto_create_rule_custom_domain_id", "custom_domain_id"),
|
||||||
)
|
)
|
||||||
|
|
||||||
custom_domain_id = sa.Column(
|
custom_domain_id = sa.Column(
|
||||||
@ -2572,6 +2625,7 @@ class DomainDeletedAlias(Base, ModelMixin):
|
|||||||
|
|
||||||
__table_args__ = (
|
__table_args__ = (
|
||||||
sa.UniqueConstraint("domain_id", "email", name="uq_domain_trash"),
|
sa.UniqueConstraint("domain_id", "email", name="uq_domain_trash"),
|
||||||
|
sa.Index("ix_domain_deleted_alias_user_id", "user_id"),
|
||||||
)
|
)
|
||||||
|
|
||||||
email = sa.Column(sa.String(256), nullable=False)
|
email = sa.Column(sa.String(256), nullable=False)
|
||||||
@ -2632,6 +2686,8 @@ class Coupon(Base, ModelMixin):
|
|||||||
# a coupon can have an expiration
|
# a coupon can have an expiration
|
||||||
expires_date = sa.Column(ArrowType, nullable=True)
|
expires_date = sa.Column(ArrowType, nullable=True)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_coupon_used_by_user_id", "used_by_user_id"),)
|
||||||
|
|
||||||
|
|
||||||
class Directory(Base, ModelMixin):
|
class Directory(Base, ModelMixin):
|
||||||
__tablename__ = "directory"
|
__tablename__ = "directory"
|
||||||
@ -2646,6 +2702,8 @@ class Directory(Base, ModelMixin):
|
|||||||
"Mailbox", secondary="directory_mailbox", lazy="joined"
|
"Mailbox", secondary="directory_mailbox", lazy="joined"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_directory_user_id", "user_id"),)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def mailboxes(self):
|
def mailboxes(self):
|
||||||
if self._mailboxes:
|
if self._mailboxes:
|
||||||
@ -2747,7 +2805,10 @@ class Mailbox(Base, ModelMixin):
|
|||||||
|
|
||||||
generic_subject = sa.Column(sa.String(78), nullable=True)
|
generic_subject = sa.Column(sa.String(78), nullable=True)
|
||||||
|
|
||||||
__table_args__ = (sa.UniqueConstraint("user_id", "email", name="uq_mailbox_user"),)
|
__table_args__ = (
|
||||||
|
sa.UniqueConstraint("user_id", "email", name="uq_mailbox_user"),
|
||||||
|
sa.Index("ix_mailbox_pgp_finger_print", "pgp_finger_print"),
|
||||||
|
)
|
||||||
|
|
||||||
user = orm.relationship(User, foreign_keys=[user_id])
|
user = orm.relationship(User, foreign_keys=[user_id])
|
||||||
|
|
||||||
@ -2884,6 +2945,8 @@ class RefusedEmail(Base, ModelMixin):
|
|||||||
# toggle this when email content (stored at full_report_path & path are deleted)
|
# toggle this when email content (stored at full_report_path & path are deleted)
|
||||||
deleted = sa.Column(sa.Boolean, nullable=False, default=False, server_default="0")
|
deleted = sa.Column(sa.Boolean, nullable=False, default=False, server_default="0")
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_refused_email_user_id", "user_id"),)
|
||||||
|
|
||||||
def get_url(self, expires_in=3600):
|
def get_url(self, expires_in=3600):
|
||||||
if self.path:
|
if self.path:
|
||||||
return s3.get_url(self.path, expires_in)
|
return s3.get_url(self.path, expires_in)
|
||||||
@ -2906,6 +2969,8 @@ class Referral(Base, ModelMixin):
|
|||||||
|
|
||||||
user = orm.relationship(User, foreign_keys=[user_id], backref="referrals")
|
user = orm.relationship(User, foreign_keys=[user_id], backref="referrals")
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_referral_user_id", "user_id"),)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def nb_user(self) -> int:
|
def nb_user(self) -> int:
|
||||||
return User.filter_by(referral_id=self.id, activated=True).count()
|
return User.filter_by(referral_id=self.id, activated=True).count()
|
||||||
@ -2945,6 +3010,8 @@ class SentAlert(Base, ModelMixin):
|
|||||||
to_email = sa.Column(sa.String(256), nullable=False)
|
to_email = sa.Column(sa.String(256), nullable=False)
|
||||||
alert_type = sa.Column(sa.String(256), nullable=False)
|
alert_type = sa.Column(sa.String(256), nullable=False)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_sent_alert_user_id", "user_id"),)
|
||||||
|
|
||||||
|
|
||||||
class AliasMailbox(Base, ModelMixin):
|
class AliasMailbox(Base, ModelMixin):
|
||||||
__tablename__ = "alias_mailbox"
|
__tablename__ = "alias_mailbox"
|
||||||
@ -3190,6 +3257,11 @@ class BatchImport(Base, ModelMixin):
|
|||||||
file = orm.relationship(File)
|
file = orm.relationship(File)
|
||||||
user = orm.relationship(User)
|
user = orm.relationship(User)
|
||||||
|
|
||||||
|
__table_args__ = (
|
||||||
|
sa.Index("ix_batch_import_file_id", "file_id"),
|
||||||
|
sa.Index("ix_batch_import_user_id", "user_id"),
|
||||||
|
)
|
||||||
|
|
||||||
def nb_alias(self):
|
def nb_alias(self):
|
||||||
return Alias.filter_by(batch_import_id=self.id).count()
|
return Alias.filter_by(batch_import_id=self.id).count()
|
||||||
|
|
||||||
@ -3210,6 +3282,7 @@ class AuthorizedAddress(Base, ModelMixin):
|
|||||||
|
|
||||||
__table_args__ = (
|
__table_args__ = (
|
||||||
sa.UniqueConstraint("mailbox_id", "email", name="uq_authorize_address"),
|
sa.UniqueConstraint("mailbox_id", "email", name="uq_authorize_address"),
|
||||||
|
sa.Index("ix_authorized_address_user_id", "user_id"),
|
||||||
)
|
)
|
||||||
|
|
||||||
mailbox = orm.relationship(Mailbox, backref="authorized_addresses")
|
mailbox = orm.relationship(Mailbox, backref="authorized_addresses")
|
||||||
@ -3351,6 +3424,8 @@ class Payout(Base, ModelMixin):
|
|||||||
|
|
||||||
user = orm.relationship(User)
|
user = orm.relationship(User)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_payout_user_id", "user_id"),)
|
||||||
|
|
||||||
|
|
||||||
class IgnoredEmail(Base, ModelMixin):
|
class IgnoredEmail(Base, ModelMixin):
|
||||||
"""If an email has mail_from and rcpt_to present in this table, discard it by returning 250 status."""
|
"""If an email has mail_from and rcpt_to present in this table, discard it by returning 250 status."""
|
||||||
@ -3452,6 +3527,8 @@ class PhoneReservation(Base, ModelMixin):
|
|||||||
start = sa.Column(ArrowType, nullable=False)
|
start = sa.Column(ArrowType, nullable=False)
|
||||||
end = sa.Column(ArrowType, nullable=False)
|
end = sa.Column(ArrowType, nullable=False)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_phone_reservation_user_id", "user_id"),)
|
||||||
|
|
||||||
|
|
||||||
class PhoneMessage(Base, ModelMixin):
|
class PhoneMessage(Base, ModelMixin):
|
||||||
__tablename__ = "phone_message"
|
__tablename__ = "phone_message"
|
||||||
@ -3626,6 +3703,11 @@ class ProviderComplaint(Base, ModelMixin):
|
|||||||
user = orm.relationship(User, foreign_keys=[user_id])
|
user = orm.relationship(User, foreign_keys=[user_id])
|
||||||
refused_email = orm.relationship(RefusedEmail, foreign_keys=[refused_email_id])
|
refused_email = orm.relationship(RefusedEmail, foreign_keys=[refused_email_id])
|
||||||
|
|
||||||
|
__table_args__ = (
|
||||||
|
sa.Index("ix_provider_complaint_user_id", "user_id"),
|
||||||
|
sa.Index("ix_provider_complaint_refused_email_id", "refused_email_id"),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class PartnerApiToken(Base, ModelMixin):
|
class PartnerApiToken(Base, ModelMixin):
|
||||||
__tablename__ = "partner_api_token"
|
__tablename__ = "partner_api_token"
|
||||||
@ -3696,7 +3778,8 @@ class PartnerSubscription(Base, ModelMixin):
|
|||||||
)
|
)
|
||||||
|
|
||||||
# when the partner subscription ends
|
# when the partner subscription ends
|
||||||
end_at = sa.Column(ArrowType, nullable=False, index=True)
|
end_at = sa.Column(ArrowType, nullable=True, index=True)
|
||||||
|
lifetime = sa.Column(sa.Boolean, default=False, nullable=False, server_default="0")
|
||||||
|
|
||||||
partner_user = orm.relationship(PartnerUser)
|
partner_user = orm.relationship(PartnerUser)
|
||||||
|
|
||||||
@ -3718,7 +3801,9 @@ class PartnerSubscription(Base, ModelMixin):
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
def is_active(self):
|
def is_active(self):
|
||||||
return self.end_at > arrow.now().shift(days=-_PARTNER_SUBSCRIPTION_GRACE_DAYS)
|
return self.lifetime or self.end_at > arrow.now().shift(
|
||||||
|
days=-_PARTNER_SUBSCRIPTION_GRACE_DAYS
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
# endregion
|
# endregion
|
||||||
@ -3749,6 +3834,8 @@ class NewsletterUser(Base, ModelMixin):
|
|||||||
user = orm.relationship(User)
|
user = orm.relationship(User)
|
||||||
newsletter = orm.relationship(Newsletter)
|
newsletter = orm.relationship(Newsletter)
|
||||||
|
|
||||||
|
__table_args__ = (sa.Index("ix_newsletter_user_user_id", "user_id"),)
|
||||||
|
|
||||||
|
|
||||||
class ApiToCookieToken(Base, ModelMixin):
|
class ApiToCookieToken(Base, ModelMixin):
|
||||||
__tablename__ = "api_cookie_token"
|
__tablename__ = "api_cookie_token"
|
||||||
@ -3759,6 +3846,11 @@ class ApiToCookieToken(Base, ModelMixin):
|
|||||||
user = orm.relationship(User)
|
user = orm.relationship(User)
|
||||||
api_key = orm.relationship(ApiKey)
|
api_key = orm.relationship(ApiKey)
|
||||||
|
|
||||||
|
__table_args__ = (
|
||||||
|
sa.Index("ix_api_to_cookie_token_api_key_id", "api_key_id"),
|
||||||
|
sa.Index("ix_api_to_cookie_token_user_id", "user_id"),
|
||||||
|
)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def create(cls, **kwargs):
|
def create(cls, **kwargs):
|
||||||
code = secrets.token_urlsafe(32)
|
code = secrets.token_urlsafe(32)
|
||||||
|
@ -33,12 +33,14 @@ def create_partner_user(
|
|||||||
|
|
||||||
def create_partner_subscription(
|
def create_partner_subscription(
|
||||||
partner_user: PartnerUser,
|
partner_user: PartnerUser,
|
||||||
expiration: Optional[Arrow],
|
expiration: Optional[Arrow] = None,
|
||||||
|
lifetime: bool = False,
|
||||||
msg: Optional[str] = None,
|
msg: Optional[str] = None,
|
||||||
) -> PartnerSubscription:
|
) -> PartnerSubscription:
|
||||||
instance = PartnerSubscription.create(
|
instance = PartnerSubscription.create(
|
||||||
partner_user_id=partner_user.id,
|
partner_user_id=partner_user.id,
|
||||||
end_at=expiration,
|
end_at=expiration,
|
||||||
|
lifetime=lifetime,
|
||||||
)
|
)
|
||||||
|
|
||||||
message = "User upgraded through partner subscription"
|
message = "User upgraded through partner subscription"
|
||||||
|
@ -16,6 +16,7 @@ PROTON_ERROR_CODE_HV_NEEDED = 9001
|
|||||||
|
|
||||||
PLAN_FREE = 1
|
PLAN_FREE = 1
|
||||||
PLAN_PREMIUM = 2
|
PLAN_PREMIUM = 2
|
||||||
|
PLAN_PREMIUM_LIFETIME = 3
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
@ -112,10 +113,13 @@ class HttpProtonClient(ProtonClient):
|
|||||||
if plan_value == PLAN_FREE:
|
if plan_value == PLAN_FREE:
|
||||||
plan = SLPlan(type=SLPlanType.Free, expiration=None)
|
plan = SLPlan(type=SLPlanType.Free, expiration=None)
|
||||||
elif plan_value == PLAN_PREMIUM:
|
elif plan_value == PLAN_PREMIUM:
|
||||||
|
expiration = info.get("PlanExpiration", "1")
|
||||||
plan = SLPlan(
|
plan = SLPlan(
|
||||||
type=SLPlanType.Premium,
|
type=SLPlanType.Premium,
|
||||||
expiration=Arrow.fromtimestamp(info["PlanExpiration"], tzinfo="utc"),
|
expiration=Arrow.fromtimestamp(expiration, tzinfo="utc"),
|
||||||
)
|
)
|
||||||
|
elif plan_value == PLAN_PREMIUM_LIFETIME:
|
||||||
|
plan = SLPlan(SLPlanType.PremiumLifetime, expiration=None)
|
||||||
else:
|
else:
|
||||||
raise Exception(f"Invalid value for plan: {plan_value}")
|
raise Exception(f"Invalid value for plan: {plan_value}")
|
||||||
|
|
||||||
|
@ -14,8 +14,9 @@ jobs:
|
|||||||
- name: SimpleLogin Custom Domain check
|
- name: SimpleLogin Custom Domain check
|
||||||
command: python /code/cron.py -j check_custom_domain
|
command: python /code/cron.py -j check_custom_domain
|
||||||
shell: /bin/bash
|
shell: /bin/bash
|
||||||
schedule: "15 2 * * *"
|
schedule: "15 */4 * * *"
|
||||||
captureStderr: true
|
captureStderr: true
|
||||||
|
concurrencyPolicy: Forbid
|
||||||
onFailure:
|
onFailure:
|
||||||
retry:
|
retry:
|
||||||
maximumRetries: 10
|
maximumRetries: 10
|
||||||
@ -26,7 +27,7 @@ jobs:
|
|||||||
- name: SimpleLogin HIBP check
|
- name: SimpleLogin HIBP check
|
||||||
command: python /code/cron.py -j check_hibp
|
command: python /code/cron.py -j check_hibp
|
||||||
shell: /bin/bash
|
shell: /bin/bash
|
||||||
schedule: "16 */4 * * *"
|
schedule: "13 */4 * * *"
|
||||||
captureStderr: true
|
captureStderr: true
|
||||||
concurrencyPolicy: Forbid
|
concurrencyPolicy: Forbid
|
||||||
onFailure:
|
onFailure:
|
||||||
|
@ -149,6 +149,7 @@ from app.handler.unsubscribe_generator import UnsubscribeGenerator
|
|||||||
from app.handler.unsubscribe_handler import UnsubscribeHandler
|
from app.handler.unsubscribe_handler import UnsubscribeHandler
|
||||||
from app.log import LOG, set_message_id
|
from app.log import LOG, set_message_id
|
||||||
from app.mail_sender import sl_sendmail
|
from app.mail_sender import sl_sendmail
|
||||||
|
from app.mailbox_utils import get_mailbox_for_reply_phase
|
||||||
from app.message_utils import message_to_bytes
|
from app.message_utils import message_to_bytes
|
||||||
from app.models import (
|
from app.models import (
|
||||||
Alias,
|
Alias,
|
||||||
@ -172,7 +173,7 @@ from app.pgp_utils import (
|
|||||||
sign_data,
|
sign_data,
|
||||||
load_public_key_and_check,
|
load_public_key_and_check,
|
||||||
)
|
)
|
||||||
from app.utils import sanitize_email, canonicalize_email
|
from app.utils import sanitize_email
|
||||||
from init_app import load_pgp_public_keys
|
from init_app import load_pgp_public_keys
|
||||||
from server import create_light_app
|
from server import create_light_app
|
||||||
|
|
||||||
@ -589,15 +590,36 @@ def handle_forward(envelope, msg: Message, rcpt_to: str) -> List[Tuple[bool, str
|
|||||||
contact.alias
|
contact.alias
|
||||||
) # In case the Session was closed in the get_or_create we re-fetch the alias
|
) # In case the Session was closed in the get_or_create we re-fetch the alias
|
||||||
|
|
||||||
reply_to_contact = None
|
reply_to_contact = []
|
||||||
if msg[headers.REPLY_TO]:
|
if msg[headers.REPLY_TO]:
|
||||||
reply_to = get_header_unicode(msg[headers.REPLY_TO])
|
reply_to_header_contents = get_header_unicode(msg[headers.REPLY_TO])
|
||||||
LOG.d("Create or get contact for reply_to_header:%s", reply_to)
|
if reply_to_header_contents:
|
||||||
# ignore when reply-to = alias
|
LOG.d(
|
||||||
if reply_to == alias.email:
|
"Create or get contact for reply_to_header:%s", reply_to_header_contents
|
||||||
LOG.i("Reply-to same as alias %s", alias)
|
)
|
||||||
else:
|
for reply_to in [
|
||||||
reply_to_contact = get_or_create_reply_to_contact(reply_to, alias, msg)
|
reply_to.strip()
|
||||||
|
for reply_to in reply_to_header_contents.split(",")
|
||||||
|
if reply_to.strip()
|
||||||
|
]:
|
||||||
|
reply_to_name, reply_to_email = parse_full_address(reply_to)
|
||||||
|
if reply_to_email == alias.email:
|
||||||
|
LOG.i("Reply-to same as alias %s", alias)
|
||||||
|
else:
|
||||||
|
reply_to_contact.append(
|
||||||
|
get_or_create_reply_to_contact(reply_to_email, alias, msg)
|
||||||
|
)
|
||||||
|
|
||||||
|
if alias.user.delete_on is not None:
|
||||||
|
LOG.d(f"user {user} is pending to be deleted. Do not forward")
|
||||||
|
EmailLog.create(
|
||||||
|
contact_id=contact.id,
|
||||||
|
user_id=contact.user_id,
|
||||||
|
blocked=True,
|
||||||
|
alias_id=contact.alias_id,
|
||||||
|
commit=True,
|
||||||
|
)
|
||||||
|
return [(True, status.E502)]
|
||||||
|
|
||||||
if not alias.enabled or contact.block_forward:
|
if not alias.enabled or contact.block_forward:
|
||||||
LOG.d("%s is disabled, do not forward", alias)
|
LOG.d("%s is disabled, do not forward", alias)
|
||||||
@ -689,7 +711,7 @@ def forward_email_to_mailbox(
|
|||||||
envelope,
|
envelope,
|
||||||
mailbox,
|
mailbox,
|
||||||
user,
|
user,
|
||||||
reply_to_contact: Optional[Contact],
|
reply_to_contacts: list[Contact],
|
||||||
) -> (bool, str):
|
) -> (bool, str):
|
||||||
LOG.d("Forward %s -> %s -> %s", contact, alias, mailbox)
|
LOG.d("Forward %s -> %s -> %s", contact, alias, mailbox)
|
||||||
|
|
||||||
@ -872,11 +894,13 @@ def forward_email_to_mailbox(
|
|||||||
add_or_replace_header(msg, "From", new_from_header)
|
add_or_replace_header(msg, "From", new_from_header)
|
||||||
LOG.d("From header, new:%s, old:%s", new_from_header, old_from_header)
|
LOG.d("From header, new:%s, old:%s", new_from_header, old_from_header)
|
||||||
|
|
||||||
if reply_to_contact:
|
if len(reply_to_contacts) > 0:
|
||||||
reply_to_header = msg[headers.REPLY_TO]
|
original_reply_to = get_header_unicode(msg[headers.REPLY_TO])
|
||||||
new_reply_to_header = reply_to_contact.new_addr()
|
new_reply_to_header = ", ".join(
|
||||||
|
[reply_to_contact.new_addr() for reply_to_contact in reply_to_contacts][:5]
|
||||||
|
)
|
||||||
add_or_replace_header(msg, "Reply-To", new_reply_to_header)
|
add_or_replace_header(msg, "Reply-To", new_reply_to_header)
|
||||||
LOG.d("Reply-To header, new:%s, old:%s", new_reply_to_header, reply_to_header)
|
LOG.d("Reply-To header, new:%s, old:%s", new_reply_to_header, original_reply_to)
|
||||||
|
|
||||||
# replace CC & To emails by reverse-alias for all emails that are not alias
|
# replace CC & To emails by reverse-alias for all emails that are not alias
|
||||||
try:
|
try:
|
||||||
@ -1008,7 +1032,6 @@ def handle_reply(envelope, msg: Message, rcpt_to: str) -> (bool, str):
|
|||||||
return False, status.E503
|
return False, status.E503
|
||||||
|
|
||||||
user = alias.user
|
user = alias.user
|
||||||
mail_from = envelope.mail_from
|
|
||||||
|
|
||||||
if not user.can_send_or_receive():
|
if not user.can_send_or_receive():
|
||||||
LOG.i(f"User {user} cannot send emails")
|
LOG.i(f"User {user} cannot send emails")
|
||||||
@ -1022,13 +1045,15 @@ def handle_reply(envelope, msg: Message, rcpt_to: str) -> (bool, str):
|
|||||||
return False, dmarc_delivery_status
|
return False, dmarc_delivery_status
|
||||||
|
|
||||||
# Anti-spoofing
|
# Anti-spoofing
|
||||||
mailbox = get_mailbox_from_mail_from(mail_from, alias)
|
mailbox = get_mailbox_for_reply_phase(
|
||||||
|
envelope.mail_from, get_header_unicode(msg[headers.FROM]), alias
|
||||||
|
)
|
||||||
if not mailbox:
|
if not mailbox:
|
||||||
if alias.disable_email_spoofing_check:
|
if alias.disable_email_spoofing_check:
|
||||||
# ignore this error, use default alias mailbox
|
# ignore this error, use default alias mailbox
|
||||||
LOG.w(
|
LOG.w(
|
||||||
"ignore unknown sender to reverse-alias %s: %s -> %s",
|
"ignore unknown sender to reverse-alias %s: %s -> %s",
|
||||||
mail_from,
|
envelope.mail_from,
|
||||||
alias,
|
alias,
|
||||||
contact,
|
contact,
|
||||||
)
|
)
|
||||||
@ -1367,32 +1392,6 @@ def replace_original_message_id(alias: Alias, email_log: EmailLog, msg: Message)
|
|||||||
msg[headers.REFERENCES] = " ".join(new_message_ids)
|
msg[headers.REFERENCES] = " ".join(new_message_ids)
|
||||||
|
|
||||||
|
|
||||||
def get_mailbox_from_mail_from(mail_from: str, alias) -> Optional[Mailbox]:
|
|
||||||
"""return the corresponding mailbox given the mail_from and alias
|
|
||||||
Usually the mail_from=mailbox.email but it can also be one of the authorized address
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __check(email_address: str, alias: Alias) -> Optional[Mailbox]:
|
|
||||||
for mailbox in alias.mailboxes:
|
|
||||||
if mailbox.email == email_address:
|
|
||||||
return mailbox
|
|
||||||
|
|
||||||
for authorized_address in mailbox.authorized_addresses:
|
|
||||||
if authorized_address.email == email_address:
|
|
||||||
LOG.d(
|
|
||||||
"Found an authorized address for %s %s %s",
|
|
||||||
alias,
|
|
||||||
mailbox,
|
|
||||||
authorized_address,
|
|
||||||
)
|
|
||||||
return mailbox
|
|
||||||
return None
|
|
||||||
|
|
||||||
# We need to first check for the uncanonicalized version because we still have users in the db with the
|
|
||||||
# email non canonicalized. So if it matches the already existing one use that, otherwise check the canonical one
|
|
||||||
return __check(mail_from, alias) or __check(canonicalize_email(mail_from), alias)
|
|
||||||
|
|
||||||
|
|
||||||
def handle_unknown_mailbox(
|
def handle_unknown_mailbox(
|
||||||
envelope, msg, reply_email: str, user: User, alias: Alias, contact: Contact
|
envelope, msg, reply_email: str, user: User, alias: Alias, contact: Contact
|
||||||
):
|
):
|
||||||
|
@ -164,6 +164,8 @@ def delete_mailbox_job(job: Job):
|
|||||||
Session.commit()
|
Session.commit()
|
||||||
LOG.d("Mailbox %s %s deleted", mailbox_id, mailbox_email)
|
LOG.d("Mailbox %s %s deleted", mailbox_id, mailbox_email)
|
||||||
|
|
||||||
|
if not job.payload.get("send_mail", True):
|
||||||
|
return
|
||||||
if alias_transferred_to:
|
if alias_transferred_to:
|
||||||
send_email(
|
send_email(
|
||||||
user.email,
|
user.email,
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
abacus
|
abacus
|
||||||
abdomen
|
|
||||||
abdominal
|
|
||||||
abide
|
abide
|
||||||
abiding
|
abiding
|
||||||
ability
|
ability
|
||||||
@ -1031,7 +1029,6 @@ chosen
|
|||||||
chowder
|
chowder
|
||||||
chowtime
|
chowtime
|
||||||
chrome
|
chrome
|
||||||
chubby
|
|
||||||
chuck
|
chuck
|
||||||
chug
|
chug
|
||||||
chummy
|
chummy
|
||||||
@ -2041,8 +2038,6 @@ dwindling
|
|||||||
dynamic
|
dynamic
|
||||||
dynamite
|
dynamite
|
||||||
dynasty
|
dynasty
|
||||||
dyslexia
|
|
||||||
dyslexic
|
|
||||||
each
|
each
|
||||||
eagle
|
eagle
|
||||||
earache
|
earache
|
||||||
@ -2081,7 +2076,6 @@ eatery
|
|||||||
eating
|
eating
|
||||||
eats
|
eats
|
||||||
ebay
|
ebay
|
||||||
ebony
|
|
||||||
ebook
|
ebook
|
||||||
ecard
|
ecard
|
||||||
eccentric
|
eccentric
|
||||||
@ -2375,8 +2369,6 @@ exclude
|
|||||||
excluding
|
excluding
|
||||||
exclusion
|
exclusion
|
||||||
exclusive
|
exclusive
|
||||||
excretion
|
|
||||||
excretory
|
|
||||||
excursion
|
excursion
|
||||||
excusable
|
excusable
|
||||||
excusably
|
excusably
|
||||||
@ -2396,8 +2388,6 @@ existing
|
|||||||
exit
|
exit
|
||||||
exodus
|
exodus
|
||||||
exonerate
|
exonerate
|
||||||
exorcism
|
|
||||||
exorcist
|
|
||||||
expand
|
expand
|
||||||
expanse
|
expanse
|
||||||
expansion
|
expansion
|
||||||
@ -2483,7 +2473,6 @@ fanning
|
|||||||
fantasize
|
fantasize
|
||||||
fantastic
|
fantastic
|
||||||
fantasy
|
fantasy
|
||||||
fascism
|
|
||||||
fastball
|
fastball
|
||||||
faster
|
faster
|
||||||
fasting
|
fasting
|
||||||
@ -3028,7 +3017,6 @@ guiding
|
|||||||
guileless
|
guileless
|
||||||
guise
|
guise
|
||||||
gulf
|
gulf
|
||||||
gullible
|
|
||||||
gully
|
gully
|
||||||
gulp
|
gulp
|
||||||
gumball
|
gumball
|
||||||
@ -3040,10 +3028,6 @@ gurgle
|
|||||||
gurgling
|
gurgling
|
||||||
guru
|
guru
|
||||||
gush
|
gush
|
||||||
gusto
|
|
||||||
gusty
|
|
||||||
gutless
|
|
||||||
guts
|
|
||||||
gutter
|
gutter
|
||||||
guy
|
guy
|
||||||
guzzler
|
guzzler
|
||||||
@ -3242,8 +3226,6 @@ humble
|
|||||||
humbling
|
humbling
|
||||||
humbly
|
humbly
|
||||||
humid
|
humid
|
||||||
humiliate
|
|
||||||
humility
|
|
||||||
humming
|
humming
|
||||||
hummus
|
hummus
|
||||||
humongous
|
humongous
|
||||||
@ -3271,7 +3253,6 @@ hurray
|
|||||||
hurricane
|
hurricane
|
||||||
hurried
|
hurried
|
||||||
hurry
|
hurry
|
||||||
hurt
|
|
||||||
husband
|
husband
|
||||||
hush
|
hush
|
||||||
husked
|
husked
|
||||||
@ -3292,8 +3273,6 @@ hypnotic
|
|||||||
hypnotism
|
hypnotism
|
||||||
hypnotist
|
hypnotist
|
||||||
hypnotize
|
hypnotize
|
||||||
hypocrisy
|
|
||||||
hypocrite
|
|
||||||
ibuprofen
|
ibuprofen
|
||||||
ice
|
ice
|
||||||
iciness
|
iciness
|
||||||
@ -3323,7 +3302,6 @@ image
|
|||||||
imaginary
|
imaginary
|
||||||
imagines
|
imagines
|
||||||
imaging
|
imaging
|
||||||
imbecile
|
|
||||||
imitate
|
imitate
|
||||||
imitation
|
imitation
|
||||||
immerse
|
immerse
|
||||||
@ -3746,7 +3724,6 @@ machine
|
|||||||
machinist
|
machinist
|
||||||
magazine
|
magazine
|
||||||
magenta
|
magenta
|
||||||
maggot
|
|
||||||
magical
|
magical
|
||||||
magician
|
magician
|
||||||
magma
|
magma
|
||||||
@ -3968,8 +3945,6 @@ multitude
|
|||||||
mumble
|
mumble
|
||||||
mumbling
|
mumbling
|
||||||
mumbo
|
mumbo
|
||||||
mummified
|
|
||||||
mummify
|
|
||||||
mumps
|
mumps
|
||||||
munchkin
|
munchkin
|
||||||
mundane
|
mundane
|
||||||
@ -4022,8 +3997,6 @@ napped
|
|||||||
napping
|
napping
|
||||||
nappy
|
nappy
|
||||||
narrow
|
narrow
|
||||||
nastily
|
|
||||||
nastiness
|
|
||||||
national
|
national
|
||||||
native
|
native
|
||||||
nativity
|
nativity
|
||||||
@ -4446,7 +4419,6 @@ pasta
|
|||||||
pasted
|
pasted
|
||||||
pastel
|
pastel
|
||||||
pastime
|
pastime
|
||||||
pastor
|
|
||||||
pastrami
|
pastrami
|
||||||
pasture
|
pasture
|
||||||
pasty
|
pasty
|
||||||
@ -4458,7 +4430,6 @@ path
|
|||||||
patience
|
patience
|
||||||
patient
|
patient
|
||||||
patio
|
patio
|
||||||
patriarch
|
|
||||||
patriot
|
patriot
|
||||||
patrol
|
patrol
|
||||||
patronage
|
patronage
|
||||||
@ -4549,7 +4520,6 @@ pettiness
|
|||||||
petty
|
petty
|
||||||
petunia
|
petunia
|
||||||
phantom
|
phantom
|
||||||
phobia
|
|
||||||
phoenix
|
phoenix
|
||||||
phonebook
|
phonebook
|
||||||
phoney
|
phoney
|
||||||
@ -4608,7 +4578,6 @@ plot
|
|||||||
plow
|
plow
|
||||||
ploy
|
ploy
|
||||||
pluck
|
pluck
|
||||||
plug
|
|
||||||
plunder
|
plunder
|
||||||
plunging
|
plunging
|
||||||
plural
|
plural
|
||||||
@ -4875,7 +4844,6 @@ pupil
|
|||||||
puppet
|
puppet
|
||||||
puppy
|
puppy
|
||||||
purchase
|
purchase
|
||||||
pureblood
|
|
||||||
purebred
|
purebred
|
||||||
purely
|
purely
|
||||||
pureness
|
pureness
|
||||||
@ -5047,7 +5015,6 @@ recharger
|
|||||||
recipient
|
recipient
|
||||||
recital
|
recital
|
||||||
recite
|
recite
|
||||||
reckless
|
|
||||||
reclaim
|
reclaim
|
||||||
recliner
|
recliner
|
||||||
reclining
|
reclining
|
||||||
@ -5440,7 +5407,6 @@ rubdown
|
|||||||
ruby
|
ruby
|
||||||
ruckus
|
ruckus
|
||||||
rudder
|
rudder
|
||||||
rug
|
|
||||||
ruined
|
ruined
|
||||||
rule
|
rule
|
||||||
rumble
|
rumble
|
||||||
@ -5448,7 +5414,6 @@ rumbling
|
|||||||
rummage
|
rummage
|
||||||
rumor
|
rumor
|
||||||
runaround
|
runaround
|
||||||
rundown
|
|
||||||
runner
|
runner
|
||||||
running
|
running
|
||||||
runny
|
runny
|
||||||
@ -5518,7 +5483,6 @@ sandpaper
|
|||||||
sandpit
|
sandpit
|
||||||
sandstone
|
sandstone
|
||||||
sandstorm
|
sandstorm
|
||||||
sandworm
|
|
||||||
sandy
|
sandy
|
||||||
sanitary
|
sanitary
|
||||||
sanitizer
|
sanitizer
|
||||||
@ -5541,7 +5505,6 @@ satisfy
|
|||||||
saturate
|
saturate
|
||||||
saturday
|
saturday
|
||||||
sauciness
|
sauciness
|
||||||
saucy
|
|
||||||
sauna
|
sauna
|
||||||
savage
|
savage
|
||||||
savanna
|
savanna
|
||||||
@ -5552,7 +5515,6 @@ savor
|
|||||||
saxophone
|
saxophone
|
||||||
say
|
say
|
||||||
scabbed
|
scabbed
|
||||||
scabby
|
|
||||||
scalded
|
scalded
|
||||||
scalding
|
scalding
|
||||||
scale
|
scale
|
||||||
@ -5587,7 +5549,6 @@ science
|
|||||||
scientist
|
scientist
|
||||||
scion
|
scion
|
||||||
scoff
|
scoff
|
||||||
scolding
|
|
||||||
scone
|
scone
|
||||||
scoop
|
scoop
|
||||||
scooter
|
scooter
|
||||||
@ -5651,8 +5612,6 @@ sedate
|
|||||||
sedation
|
sedation
|
||||||
sedative
|
sedative
|
||||||
sediment
|
sediment
|
||||||
seduce
|
|
||||||
seducing
|
|
||||||
segment
|
segment
|
||||||
seismic
|
seismic
|
||||||
seizing
|
seizing
|
||||||
@ -5899,7 +5858,6 @@ skimpily
|
|||||||
skincare
|
skincare
|
||||||
skinless
|
skinless
|
||||||
skinning
|
skinning
|
||||||
skinny
|
|
||||||
skintight
|
skintight
|
||||||
skipper
|
skipper
|
||||||
skipping
|
skipping
|
||||||
@ -6248,17 +6206,12 @@ stifle
|
|||||||
stifling
|
stifling
|
||||||
stillness
|
stillness
|
||||||
stilt
|
stilt
|
||||||
stimulant
|
|
||||||
stimulate
|
|
||||||
stimuli
|
|
||||||
stimulus
|
stimulus
|
||||||
stinger
|
stinger
|
||||||
stingily
|
stingily
|
||||||
stinging
|
stinging
|
||||||
stingray
|
stingray
|
||||||
stingy
|
stingy
|
||||||
stinking
|
|
||||||
stinky
|
|
||||||
stipend
|
stipend
|
||||||
stipulate
|
stipulate
|
||||||
stir
|
stir
|
||||||
@ -6866,7 +6819,6 @@ unbent
|
|||||||
unbiased
|
unbiased
|
||||||
unbitten
|
unbitten
|
||||||
unblended
|
unblended
|
||||||
unblessed
|
|
||||||
unblock
|
unblock
|
||||||
unbolted
|
unbolted
|
||||||
unbounded
|
unbounded
|
||||||
@ -6947,7 +6899,6 @@ undertone
|
|||||||
undertook
|
undertook
|
||||||
undertow
|
undertow
|
||||||
underuse
|
underuse
|
||||||
underwear
|
|
||||||
underwent
|
underwent
|
||||||
underwire
|
underwire
|
||||||
undesired
|
undesired
|
||||||
@ -7000,7 +6951,6 @@ unfunded
|
|||||||
unglazed
|
unglazed
|
||||||
ungloved
|
ungloved
|
||||||
unglue
|
unglue
|
||||||
ungodly
|
|
||||||
ungraded
|
ungraded
|
||||||
ungreased
|
ungreased
|
||||||
unguarded
|
unguarded
|
||||||
@ -7032,7 +6982,6 @@ uninsured
|
|||||||
uninvited
|
uninvited
|
||||||
union
|
union
|
||||||
uniquely
|
uniquely
|
||||||
unisexual
|
|
||||||
unison
|
unison
|
||||||
unissued
|
unissued
|
||||||
unit
|
unit
|
||||||
@ -7493,8 +7442,6 @@ wheat
|
|||||||
whenever
|
whenever
|
||||||
whiff
|
whiff
|
||||||
whimsical
|
whimsical
|
||||||
whinny
|
|
||||||
whiny
|
|
||||||
whisking
|
whisking
|
||||||
whoever
|
whoever
|
||||||
whole
|
whole
|
||||||
@ -7600,7 +7547,6 @@ wrongness
|
|||||||
wrought
|
wrought
|
||||||
xbox
|
xbox
|
||||||
xerox
|
xerox
|
||||||
yahoo
|
|
||||||
yam
|
yam
|
||||||
yanking
|
yanking
|
||||||
yapping
|
yapping
|
||||||
|
@ -0,0 +1,30 @@
|
|||||||
|
"""add missing indices on user and mailbox
|
||||||
|
|
||||||
|
Revision ID: 842ac670096e
|
||||||
|
Revises: bc9aa210efa3
|
||||||
|
Create Date: 2024-11-13 15:55:28.798506
|
||||||
|
|
||||||
|
"""
|
||||||
|
import sqlalchemy_utils
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '842ac670096e'
|
||||||
|
down_revision = 'bc9aa210efa3'
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
with op.get_context().autocommit_block():
|
||||||
|
op.create_index('ix_mailbox_pgp_finger_print', 'mailbox', ['pgp_finger_print'], unique=False)
|
||||||
|
op.create_index('ix_users_default_mailbox_id', 'users', ['default_mailbox_id'], unique=False)
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
with op.get_context().autocommit_block():
|
||||||
|
op.drop_index('ix_users_default_mailbox_id', table_name='users')
|
||||||
|
op.drop_index('ix_mailbox_pgp_finger_print', table_name='mailbox')
|
@ -0,0 +1,29 @@
|
|||||||
|
"""add missing indices on email log
|
||||||
|
|
||||||
|
Revision ID: 12274da2299f
|
||||||
|
Revises: 842ac670096e
|
||||||
|
Create Date: 2024-11-14 10:27:20.371191
|
||||||
|
|
||||||
|
"""
|
||||||
|
import sqlalchemy_utils
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '12274da2299f'
|
||||||
|
down_revision = '842ac670096e'
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
with op.get_context().autocommit_block():
|
||||||
|
op.create_index('ix_email_log_bounced_mailbox_id', 'email_log', ['bounced_mailbox_id'], unique=False)
|
||||||
|
op.create_index('ix_email_log_mailbox_id', 'email_log', ['mailbox_id'], unique=False)
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
with op.get_context().autocommit_block():
|
||||||
|
op.drop_index('ix_email_log_mailbox_id', table_name='email_log')
|
||||||
|
op.drop_index('ix_email_log_bounced_mailbox_id', table_name='email_log')
|
@ -0,0 +1,102 @@
|
|||||||
|
"""add missing indices for fk constraints
|
||||||
|
|
||||||
|
Revision ID: 0f3ee15b0014
|
||||||
|
Revises: 12274da2299f
|
||||||
|
Create Date: 2024-11-15 12:29:10.739938
|
||||||
|
|
||||||
|
"""
|
||||||
|
import sqlalchemy_utils
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '0f3ee15b0014'
|
||||||
|
down_revision = '12274da2299f'
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
with op.get_context().autocommit_block():
|
||||||
|
op.create_index('ix_activation_code_user_id', 'activation_code', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_alias_original_owner_id', 'alias', ['original_owner_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_alias_used_on_user_id', 'alias_used_on', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_api_to_cookie_token_api_key_id', 'api_cookie_token', ['api_key_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_api_to_cookie_token_user_id', 'api_cookie_token', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_api_key_code', 'api_key', ['code'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_api_key_user_id', 'api_key', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_authorization_code_client_id', 'authorization_code', ['client_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_authorization_code_user_id', 'authorization_code', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_authorized_address_user_id', 'authorized_address', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_auto_create_rule_custom_domain_id', 'auto_create_rule', ['custom_domain_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_batch_import_file_id', 'batch_import', ['file_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_batch_import_user_id', 'batch_import', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_client_icon_id', 'client', ['icon_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_client_referral_id', 'client', ['referral_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_client_user_id', 'client', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_coupon_used_by_user_id', 'coupon', ['used_by_user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_directory_user_id', 'directory', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_domain_deleted_alias_user_id', 'domain_deleted_alias', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_email_log_refused_email_id', 'email_log', ['refused_email_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_fido_user_id', 'fido', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_file_user_id', 'file', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_hibp_notified_alias_user_id', 'hibp_notified_alias', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_mfa_browser_user_id', 'mfa_browser', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_newsletter_user_user_id', 'newsletter_user', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_oauth_token_client_id', 'oauth_token', ['client_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_oauth_token_user_id', 'oauth_token', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_payout_user_id', 'payout', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_phone_reservation_user_id', 'phone_reservation', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_provider_complaint_refused_email_id', 'provider_complaint', ['refused_email_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_provider_complaint_user_id', 'provider_complaint', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_redirect_uri_client_id', 'redirect_uri', ['client_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_referral_user_id', 'referral', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_refused_email_user_id', 'refused_email', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_reset_password_code_user_id', 'reset_password_code', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_sent_alert_user_id', 'sent_alert', ['user_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_users_default_alias_custom_domain_id', 'users', ['default_alias_custom_domain_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
op.create_index('ix_users_profile_picture_id', 'users', ['profile_picture_id'], unique=False, postgresql_concurrently=True)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
with op.get_context().autocommit_block():
|
||||||
|
op.drop_index('ix_users_profile_picture_id', table_name='users')
|
||||||
|
op.drop_index('ix_users_default_alias_custom_domain_id', table_name='users')
|
||||||
|
op.drop_index('ix_sent_alert_user_id', table_name='sent_alert')
|
||||||
|
op.drop_index('ix_reset_password_code_user_id', table_name='reset_password_code')
|
||||||
|
op.drop_index('ix_refused_email_user_id', table_name='refused_email')
|
||||||
|
op.drop_index('ix_referral_user_id', table_name='referral')
|
||||||
|
op.drop_index('ix_redirect_uri_client_id', table_name='redirect_uri')
|
||||||
|
op.drop_index('ix_provider_complaint_user_id', table_name='provider_complaint')
|
||||||
|
op.drop_index('ix_provider_complaint_refused_email_id', table_name='provider_complaint')
|
||||||
|
op.drop_index('ix_phone_reservation_user_id', table_name='phone_reservation')
|
||||||
|
op.drop_index('ix_payout_user_id', table_name='payout')
|
||||||
|
op.drop_index('ix_oauth_token_user_id', table_name='oauth_token')
|
||||||
|
op.drop_index('ix_oauth_token_client_id', table_name='oauth_token')
|
||||||
|
op.drop_index('ix_newsletter_user_user_id', table_name='newsletter_user')
|
||||||
|
op.drop_index('ix_mfa_browser_user_id', table_name='mfa_browser')
|
||||||
|
op.drop_index('ix_hibp_notified_alias_user_id', table_name='hibp_notified_alias')
|
||||||
|
op.drop_index('ix_file_user_id', table_name='file')
|
||||||
|
op.drop_index('ix_fido_user_id', table_name='fido')
|
||||||
|
op.drop_index('ix_email_log_refused_email_id', table_name='email_log')
|
||||||
|
op.drop_index('ix_domain_deleted_alias_user_id', table_name='domain_deleted_alias')
|
||||||
|
op.drop_index('ix_directory_user_id', table_name='directory')
|
||||||
|
op.drop_index('ix_coupon_used_by_user_id', table_name='coupon')
|
||||||
|
op.drop_index('ix_client_user_id', table_name='client')
|
||||||
|
op.drop_index('ix_client_referral_id', table_name='client')
|
||||||
|
op.drop_index('ix_client_icon_id', table_name='client')
|
||||||
|
op.drop_index('ix_batch_import_user_id', table_name='batch_import')
|
||||||
|
op.drop_index('ix_batch_import_file_id', table_name='batch_import')
|
||||||
|
op.drop_index('ix_auto_create_rule_custom_domain_id', table_name='auto_create_rule')
|
||||||
|
op.drop_index('ix_authorized_address_user_id', table_name='authorized_address')
|
||||||
|
op.drop_index('ix_authorization_code_user_id', table_name='authorization_code')
|
||||||
|
op.drop_index('ix_authorization_code_client_id', table_name='authorization_code')
|
||||||
|
op.drop_index('ix_api_key_user_id', table_name='api_key')
|
||||||
|
op.drop_index('ix_api_key_code', table_name='api_key')
|
||||||
|
op.drop_index('ix_api_to_cookie_token_user_id', table_name='api_cookie_token')
|
||||||
|
op.drop_index('ix_api_to_cookie_token_api_key_id', table_name='api_cookie_token')
|
||||||
|
op.drop_index('ix_alias_used_on_user_id', table_name='alias_used_on')
|
||||||
|
op.drop_index('ix_alias_original_owner_id', table_name='alias')
|
||||||
|
op.drop_index('ix_activation_code_user_id', table_name='activation_code')
|
35
app/migrations/versions/2024_112619_085f77996ce3_.py
Normal file
35
app/migrations/versions/2024_112619_085f77996ce3_.py
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
"""empty message
|
||||||
|
|
||||||
|
Revision ID: 085f77996ce3
|
||||||
|
Revises: 0f3ee15b0014
|
||||||
|
Create Date: 2024-11-26 19:20:32.227899
|
||||||
|
|
||||||
|
"""
|
||||||
|
import sqlalchemy_utils
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
from sqlalchemy.dialects import postgresql
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '085f77996ce3'
|
||||||
|
down_revision = '0f3ee15b0014'
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.add_column('partner_subscription', sa.Column('lifetime', sa.Boolean(), server_default='0', nullable=False))
|
||||||
|
op.alter_column('partner_subscription', 'end_at',
|
||||||
|
existing_type=postgresql.TIMESTAMP(),
|
||||||
|
nullable=True)
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
op.alter_column('partner_subscription', 'end_at',
|
||||||
|
existing_type=postgresql.TIMESTAMP(),
|
||||||
|
nullable=False)
|
||||||
|
op.drop_column('partner_subscription', 'lifetime')
|
||||||
|
# ### end Alembic commands ###
|
@ -2,7 +2,6 @@
|
|||||||
import argparse
|
import argparse
|
||||||
import time
|
import time
|
||||||
|
|
||||||
import arrow
|
|
||||||
from sqlalchemy import func
|
from sqlalchemy import func
|
||||||
|
|
||||||
from app.account_linking import send_user_plan_changed_event
|
from app.account_linking import send_user_plan_changed_event
|
||||||
@ -38,9 +37,9 @@ for batch_start in range(pu_id_start, max_pu_id, step):
|
|||||||
)
|
)
|
||||||
).all()
|
).all()
|
||||||
for partner_user in partner_users:
|
for partner_user in partner_users:
|
||||||
subscription_end = send_user_plan_changed_event(partner_user)
|
event = send_user_plan_changed_event(partner_user)
|
||||||
if subscription_end is not None:
|
if event is not None:
|
||||||
if subscription_end > arrow.get("2038-01-01").timestamp:
|
if event.lifetime:
|
||||||
with_lifetime += 1
|
with_lifetime += 1
|
||||||
else:
|
else:
|
||||||
with_premium += 1
|
with_premium += 1
|
||||||
|
@ -4,6 +4,7 @@ package simplelogin_events;
|
|||||||
|
|
||||||
message UserPlanChanged {
|
message UserPlanChanged {
|
||||||
uint32 plan_end_time = 1;
|
uint32 plan_end_time = 1;
|
||||||
|
bool lifetime = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserDeleted {
|
message UserDeleted {
|
||||||
|
@ -1,20 +1,101 @@
|
|||||||
|
[project]
|
||||||
|
name = "SimpleLogin"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "SimpleLogin partner API"
|
||||||
|
authors = [ {name="SimpleLogin", email="dev@simplelogin.io"}]
|
||||||
|
license = "MIT"
|
||||||
|
repository = "https://github.com/simple-login/app"
|
||||||
|
keywords = ["email", "alias", "privacy", "oauth2", "openid"]
|
||||||
|
packages = [
|
||||||
|
{ include = "app/" },
|
||||||
|
{ include = "migrations/" },
|
||||||
|
]
|
||||||
|
include = ["templates/*", "templates/**/*", "local_data/*.txt"]
|
||||||
|
|
||||||
|
requires-python = "~=3.10"
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
"flask ~= 1.1.2",
|
||||||
|
"flask_login ~= 0.5.0",
|
||||||
|
"wtforms ~= 2.3.3",
|
||||||
|
"unidecode ~= 1.1.1",
|
||||||
|
"gunicorn ~= 20.0.4",
|
||||||
|
"bcrypt ~= 3.2.0",
|
||||||
|
"python-dotenv ~= 0.14.0",
|
||||||
|
"ipython ~= 7.31.1",
|
||||||
|
"sqlalchemy_utils ~= 0.36.8",
|
||||||
|
"psycopg2-binary ~= 2.9.3",
|
||||||
|
"sentry_sdk ~= 2.20.0",
|
||||||
|
"blinker ~= 1.4",
|
||||||
|
"arrow ~= 0.16.0",
|
||||||
|
"Flask-WTF ~= 0.14.3",
|
||||||
|
"boto3 ~= 1.35.37",
|
||||||
|
"Flask-Migrate ~= 2.5.3",
|
||||||
|
"flask_admin ~= 1.5.6",
|
||||||
|
"flask-cors ~= 3.0.9",
|
||||||
|
"watchtower ~= 0.8.0",
|
||||||
|
"sqlalchemy-utils == 0.36.8",
|
||||||
|
"jwcrypto ~= 0.8",
|
||||||
|
"yacron~=0.11.2",
|
||||||
|
"flask-debugtoolbar ~= 0.11.0",
|
||||||
|
"requests_oauthlib ~= 1.3.0",
|
||||||
|
"pyopenssl ~= 19.1.0",
|
||||||
|
"aiosmtpd ~= 1.2",
|
||||||
|
"dnspython==2.0.0",
|
||||||
|
"coloredlogs ~= 14.0",
|
||||||
|
"pycryptodome ~= 3.9.8",
|
||||||
|
"phpserialize ~= 1.3",
|
||||||
|
"dkimpy ~= 1.0.5",
|
||||||
|
"pyotp ~= 2.4.0",
|
||||||
|
"flask_profiler ~= 1.8.1",
|
||||||
|
"facebook-sdk ~= 3.1.0",
|
||||||
|
"google-api-python-client ~= 1.12.3",
|
||||||
|
"google-auth-httplib2 ~= 0.0.4",
|
||||||
|
"python-gnupg ~= 0.4.6",
|
||||||
|
"webauthn ~= 0.4.7",
|
||||||
|
"pyspf ~= 2.0.14",
|
||||||
|
"Flask-Limiter == 1.4",
|
||||||
|
"memory_profiler ~= 0.57.0",
|
||||||
|
"gevent ~= 24.11.1",
|
||||||
|
"email-validator ~= 1.1.3",
|
||||||
|
"PGPy == 0.5.4",
|
||||||
|
"coinbase-commerce ~= 1.0.1",
|
||||||
|
"requests ~= 2.25.1",
|
||||||
|
"newrelic ~= 8.8.0",
|
||||||
|
"flanker ~= 0.9.11",
|
||||||
|
"pyre2 ~= 0.3.6",
|
||||||
|
"tldextract ~= 3.1.2",
|
||||||
|
"flask-debugtoolbar-sqlalchemy ~= 0.2.0",
|
||||||
|
"twilio ~= 7.3.2",
|
||||||
|
"Deprecated ~= 1.2.13",
|
||||||
|
"MarkupSafe~=1.1.1",
|
||||||
|
"cryptography ~= 37.0.1",
|
||||||
|
"SQLAlchemy ~= 1.3.24",
|
||||||
|
"redis==4.6.0",
|
||||||
|
"newrelic-telemetry-sdk ~= 0.5.0",
|
||||||
|
"aiospamc == 0.10",
|
||||||
|
"itsdangerous ~= 1.1.0",
|
||||||
|
"werkzeug ~= 1.0.1",
|
||||||
|
"alembic ~= 1.4.3",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
target-version = ['py310']
|
target-version = ['py310']
|
||||||
exclude = '''
|
exclude = '''
|
||||||
(
|
(
|
||||||
/(
|
/(
|
||||||
\.eggs # exclude a few common directories in the
|
\.eggs # exclude a few common directories in the
|
||||||
| \.git # root of the project
|
| \.git # root of the project
|
||||||
| \.hg
|
| \.hg
|
||||||
| \.mypy_cache
|
| \.mypy_cache
|
||||||
| \.tox
|
| \.tox
|
||||||
| \.venv
|
| \.venv
|
||||||
| _build
|
| _build
|
||||||
| buck-out
|
| buck-out
|
||||||
| build
|
| build
|
||||||
| dist
|
| dist
|
||||||
| migrations # migrations/ is generated by alembic
|
| migrations # migrations/ is generated by alembic
|
||||||
| app/events/generated
|
| app/events/generated
|
||||||
)/
|
)/
|
||||||
)
|
)
|
||||||
'''
|
'''
|
||||||
@ -27,7 +108,6 @@ exclude = [".venv", "migrations", "app/events/generated"]
|
|||||||
indent = 2
|
indent = 2
|
||||||
profile = "jinja"
|
profile = "jinja"
|
||||||
blank_line_after_tag = "if,for,include,load,extends,block,endcall"
|
blank_line_after_tag = "if,for,include,load,extends,block,endcall"
|
||||||
|
|
||||||
# H006: Images should have a height attribute
|
# H006: Images should have a height attribute
|
||||||
# H013: Images should have an alt attribute
|
# H013: Images should have an alt attribute
|
||||||
# H016: Missing title tag in html. | False positive on template
|
# H016: Missing title tag in html. | False positive on template
|
||||||
@ -43,92 +123,26 @@ blank_line_after_tag = "if,for,include,load,extends,block,endcall"
|
|||||||
# T001: Variables should be wrapped in a single whitespace. | Messes up with comments
|
# T001: Variables should be wrapped in a single whitespace. | Messes up with comments
|
||||||
ignore = "H006,H013,H016,H017,H019,H021,H025,H030,H031,T003,J004,J018,T001"
|
ignore = "H006,H013,H016,H017,H019,H021,H025,H030,H031,T003,J004,J018,T001"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.uv]
|
||||||
name = "SimpleLogin"
|
dev-dependencies = [
|
||||||
version = "0.1.0"
|
"pytest ~= 7.0.0",
|
||||||
description = "open-source email alias solution"
|
"pytest-cov ~= 3.0.0",
|
||||||
authors = ["SimpleLogin <dev@simplelogin.io>"]
|
"pre-commit ~= 2.17.0",
|
||||||
license = "MIT"
|
"black ~= 22.1.0",
|
||||||
repository = "https://github.com/simple-login/app"
|
"djlint==1.34.1",
|
||||||
keywords = ["email", "alias", "privacy", "oauth2", "openid"]
|
"pylint ~= 2.14.4",
|
||||||
packages = [
|
"ruff ~= 0.1.5",
|
||||||
{ include = "app/" },
|
|
||||||
{ include = "migrations/" },
|
|
||||||
]
|
]
|
||||||
include = ["templates/*", "templates/**/*", "local_data/*.txt"]
|
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
|
||||||
python = "^3.10"
|
|
||||||
flask = "^1.1.2"
|
|
||||||
flask_login = "^0.5.0"
|
|
||||||
wtforms = "^2.3.3"
|
|
||||||
unidecode = "^1.1.1"
|
|
||||||
gunicorn = "^20.0.4"
|
|
||||||
bcrypt = "^3.2.0"
|
|
||||||
python-dotenv = "^0.14.0"
|
|
||||||
ipython = "^7.31.1"
|
|
||||||
sqlalchemy_utils = "^0.36.8"
|
|
||||||
psycopg2-binary = "^2.9.3"
|
|
||||||
sentry_sdk = "^2.16.0"
|
|
||||||
blinker = "^1.4"
|
|
||||||
arrow = "^0.16.0"
|
|
||||||
Flask-WTF = "^0.14.3"
|
|
||||||
boto3 = "^1.15.9"
|
|
||||||
Flask-Migrate = "^2.5.3"
|
|
||||||
flask_admin = "^1.5.6"
|
|
||||||
flask-cors = "^3.0.9"
|
|
||||||
watchtower = "^0.8.0"
|
|
||||||
sqlalchemy-utils = "^0.36.8"
|
|
||||||
jwcrypto = "^0.8"
|
|
||||||
yacron = "^0.11.1"
|
|
||||||
flask-debugtoolbar = "^0.11.0"
|
|
||||||
requests_oauthlib = "^1.3.0"
|
|
||||||
pyopenssl = "^19.1.0"
|
|
||||||
aiosmtpd = "^1.2"
|
|
||||||
dnspython = "^2.0.0"
|
|
||||||
coloredlogs = "^14.0"
|
|
||||||
pycryptodome = "^3.9.8"
|
|
||||||
phpserialize = "^1.3"
|
|
||||||
dkimpy = "^1.0.5"
|
|
||||||
pyotp = "^2.4.0"
|
|
||||||
flask_profiler = "^1.8.1"
|
|
||||||
facebook-sdk = "^3.1.0"
|
|
||||||
google-api-python-client = "^1.12.3"
|
|
||||||
google-auth-httplib2 = "^0.0.4"
|
|
||||||
python-gnupg = "^0.4.6"
|
|
||||||
webauthn = "^0.4.7"
|
|
||||||
pyspf = "^2.0.14"
|
|
||||||
Flask-Limiter = "^1.4"
|
|
||||||
memory_profiler = "^0.57.0"
|
|
||||||
gevent = "22.10.2"
|
|
||||||
email_validator = "^1.1.1"
|
|
||||||
PGPy = "0.5.4"
|
|
||||||
coinbase-commerce = "^1.0.1"
|
|
||||||
requests = "^2.25.1"
|
|
||||||
newrelic = "8.8.0"
|
|
||||||
flanker = "^0.9.11"
|
|
||||||
pyre2 = "^0.3.6"
|
|
||||||
tldextract = "^3.1.2"
|
|
||||||
flask-debugtoolbar-sqlalchemy = "^0.2.0"
|
|
||||||
twilio = "^7.3.2"
|
|
||||||
Deprecated = "^1.2.13"
|
|
||||||
cryptography = "37.0.1"
|
|
||||||
SQLAlchemy = "1.3.24"
|
|
||||||
redis = "^4.5.3"
|
|
||||||
newrelic-telemetry-sdk = "^0.5.0"
|
|
||||||
aiospamc = "0.10"
|
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
|
||||||
pytest = "^7.0.0"
|
|
||||||
pytest-cov = "^3.0.0"
|
|
||||||
black = "^22.1.0"
|
|
||||||
djlint = "^1.3.0"
|
|
||||||
pylint = "^2.14.4"
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
|
||||||
ruff = "^0.1.5"
|
|
||||||
pre-commit = "^3.8.0"
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry>=0.12"]
|
requires = ["hatchling"]
|
||||||
build-backend = "poetry.masonry.api"
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
|
[tool.hatch.metadata]
|
||||||
|
allow-direct-references = true
|
||||||
|
|
||||||
|
[tool.hatch.build.targets.sdist]
|
||||||
|
include = ["app", "local_data", "migrations", "templates"]
|
||||||
|
|
||||||
|
[tool.hatch.build.targets.wheel]
|
||||||
|
packages = ["app", "local_data", "migrations", "templates"]
|
||||||
|
469
app/requirements-dev.lock
Normal file
469
app/requirements-dev.lock
Normal file
@ -0,0 +1,469 @@
|
|||||||
|
# generated by rye
|
||||||
|
# use `rye lock` or `rye sync` to update this lockfile
|
||||||
|
#
|
||||||
|
# last locked with the following flags:
|
||||||
|
# pre: false
|
||||||
|
# features: []
|
||||||
|
# all-features: false
|
||||||
|
# with-sources: false
|
||||||
|
# generate-hashes: false
|
||||||
|
# universal: false
|
||||||
|
|
||||||
|
-e file:.
|
||||||
|
aiohappyeyeballs==2.4.4
|
||||||
|
# via aiohttp
|
||||||
|
aiohttp==3.11.11
|
||||||
|
# via yacron
|
||||||
|
aiosignal==1.3.2
|
||||||
|
# via aiohttp
|
||||||
|
aiosmtpd==1.4.6
|
||||||
|
# via simplelogin
|
||||||
|
aiosmtplib==3.0.2
|
||||||
|
# via yacron
|
||||||
|
aiospamc==0.10.0
|
||||||
|
# via simplelogin
|
||||||
|
alembic==1.14.0
|
||||||
|
# via flask-migrate
|
||||||
|
appnope==0.1.4
|
||||||
|
# via ipython
|
||||||
|
arrow==0.16.0
|
||||||
|
# via simplelogin
|
||||||
|
astroid==2.11.7
|
||||||
|
# via pylint
|
||||||
|
async-timeout==5.0.1
|
||||||
|
# via aiohttp
|
||||||
|
# via redis
|
||||||
|
atpublic==5.0
|
||||||
|
# via aiosmtpd
|
||||||
|
attrs==24.3.0
|
||||||
|
# via aiohttp
|
||||||
|
# via aiosmtpd
|
||||||
|
# via flanker
|
||||||
|
# via pytest
|
||||||
|
backcall==0.2.0
|
||||||
|
# via ipython
|
||||||
|
bcrypt==3.2.2
|
||||||
|
# via simplelogin
|
||||||
|
black==22.1.0
|
||||||
|
blinker==1.9.0
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via simplelogin
|
||||||
|
boto3==1.35.99
|
||||||
|
# via simplelogin
|
||||||
|
# via watchtower
|
||||||
|
botocore==1.35.99
|
||||||
|
# via boto3
|
||||||
|
# via s3transfer
|
||||||
|
cachetools==5.5.0
|
||||||
|
# via google-auth
|
||||||
|
cbor2==5.6.5
|
||||||
|
# via webauthn
|
||||||
|
certifi==2024.12.14
|
||||||
|
# via aiospamc
|
||||||
|
# via requests
|
||||||
|
# via sentry-sdk
|
||||||
|
cffi==1.17.1
|
||||||
|
# via bcrypt
|
||||||
|
# via cryptography
|
||||||
|
cfgv==3.4.0
|
||||||
|
# via pre-commit
|
||||||
|
chardet==4.0.0
|
||||||
|
# via flanker
|
||||||
|
# via requests
|
||||||
|
click==8.1.8
|
||||||
|
# via black
|
||||||
|
# via djlint
|
||||||
|
# via flask
|
||||||
|
# via typer
|
||||||
|
coinbase-commerce==1.0.1
|
||||||
|
# via simplelogin
|
||||||
|
colorama==0.4.6
|
||||||
|
# via djlint
|
||||||
|
coloredlogs==14.3
|
||||||
|
# via simplelogin
|
||||||
|
coverage==7.6.10
|
||||||
|
# via pytest-cov
|
||||||
|
crontab==0.22.8
|
||||||
|
# via yacron
|
||||||
|
cryptography==37.0.4
|
||||||
|
# via flanker
|
||||||
|
# via jwcrypto
|
||||||
|
# via pgpy
|
||||||
|
# via pyopenssl
|
||||||
|
# via simplelogin
|
||||||
|
# via webauthn
|
||||||
|
decorator==5.1.1
|
||||||
|
# via ipython
|
||||||
|
deprecated==1.2.15
|
||||||
|
# via jwcrypto
|
||||||
|
# via limits
|
||||||
|
# via simplelogin
|
||||||
|
dill==0.3.9
|
||||||
|
# via pylint
|
||||||
|
distlib==0.3.9
|
||||||
|
# via virtualenv
|
||||||
|
djlint==1.3.0
|
||||||
|
dkimpy==1.0.6
|
||||||
|
# via simplelogin
|
||||||
|
dnspython==2.6.1
|
||||||
|
# via dkimpy
|
||||||
|
# via email-validator
|
||||||
|
# via simplelogin
|
||||||
|
email-validator==1.1.3
|
||||||
|
# via simplelogin
|
||||||
|
facebook-sdk==3.1.0
|
||||||
|
# via simplelogin
|
||||||
|
filelock==3.16.1
|
||||||
|
# via tldextract
|
||||||
|
# via virtualenv
|
||||||
|
flanker==0.9.11
|
||||||
|
# via simplelogin
|
||||||
|
flask==1.1.2
|
||||||
|
# via flask-admin
|
||||||
|
# via flask-cors
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via flask-httpauth
|
||||||
|
# via flask-limiter
|
||||||
|
# via flask-login
|
||||||
|
# via flask-migrate
|
||||||
|
# via flask-profiler
|
||||||
|
# via flask-sqlalchemy
|
||||||
|
# via flask-wtf
|
||||||
|
# via simplelogin
|
||||||
|
flask-admin==1.5.8
|
||||||
|
# via simplelogin
|
||||||
|
flask-cors==3.0.10
|
||||||
|
# via simplelogin
|
||||||
|
flask-debugtoolbar==0.11.0
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
# via simplelogin
|
||||||
|
flask-debugtoolbar-sqlalchemy==0.2.0
|
||||||
|
# via simplelogin
|
||||||
|
flask-httpauth==4.8.0
|
||||||
|
# via flask-profiler
|
||||||
|
flask-limiter==1.4
|
||||||
|
# via simplelogin
|
||||||
|
flask-login==0.5.0
|
||||||
|
# via simplelogin
|
||||||
|
flask-migrate==2.5.3
|
||||||
|
# via simplelogin
|
||||||
|
flask-profiler==1.8.1
|
||||||
|
# via simplelogin
|
||||||
|
flask-sqlalchemy==2.5.1
|
||||||
|
# via flask-migrate
|
||||||
|
flask-wtf==0.14.3
|
||||||
|
# via simplelogin
|
||||||
|
frozenlist==1.5.0
|
||||||
|
# via aiohttp
|
||||||
|
# via aiosignal
|
||||||
|
future==1.0.0
|
||||||
|
# via webauthn
|
||||||
|
gevent==24.11.1
|
||||||
|
# via simplelogin
|
||||||
|
google-api-core==2.24.0
|
||||||
|
# via google-api-python-client
|
||||||
|
google-api-python-client==1.12.11
|
||||||
|
# via simplelogin
|
||||||
|
google-auth==2.37.0
|
||||||
|
# via google-api-core
|
||||||
|
# via google-api-python-client
|
||||||
|
# via google-auth-httplib2
|
||||||
|
google-auth-httplib2==0.0.4
|
||||||
|
# via google-api-python-client
|
||||||
|
# via simplelogin
|
||||||
|
googleapis-common-protos==1.66.0
|
||||||
|
# via google-api-core
|
||||||
|
greenlet==3.1.1
|
||||||
|
# via gevent
|
||||||
|
gunicorn==20.0.4
|
||||||
|
# via simplelogin
|
||||||
|
html-tag-names==0.1.2
|
||||||
|
# via djlint
|
||||||
|
html-void-elements==0.1.0
|
||||||
|
# via djlint
|
||||||
|
httplib2==0.22.0
|
||||||
|
# via google-api-python-client
|
||||||
|
# via google-auth-httplib2
|
||||||
|
humanfriendly==10.0
|
||||||
|
# via coloredlogs
|
||||||
|
identify==2.6.5
|
||||||
|
# via pre-commit
|
||||||
|
idna==2.10
|
||||||
|
# via email-validator
|
||||||
|
# via flanker
|
||||||
|
# via requests
|
||||||
|
# via tldextract
|
||||||
|
# via yarl
|
||||||
|
importlib-metadata==4.13.0
|
||||||
|
# via djlint
|
||||||
|
iniconfig==2.0.0
|
||||||
|
# via pytest
|
||||||
|
ipython==7.31.1
|
||||||
|
# via simplelogin
|
||||||
|
isort==5.13.2
|
||||||
|
# via pylint
|
||||||
|
itsdangerous==1.1.0
|
||||||
|
# via flask
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via flask-wtf
|
||||||
|
# via simplelogin
|
||||||
|
jedi==0.19.2
|
||||||
|
# via ipython
|
||||||
|
jinja2==2.11.3
|
||||||
|
# via flask
|
||||||
|
# via yacron
|
||||||
|
jmespath==1.0.1
|
||||||
|
# via boto3
|
||||||
|
# via botocore
|
||||||
|
jwcrypto==0.9.1
|
||||||
|
# via simplelogin
|
||||||
|
lazy-object-proxy==1.10.0
|
||||||
|
# via astroid
|
||||||
|
limits==4.0.0
|
||||||
|
# via flask-limiter
|
||||||
|
loguru==0.7.3
|
||||||
|
# via aiospamc
|
||||||
|
mako==1.3.8
|
||||||
|
# via alembic
|
||||||
|
markupsafe==1.1.1
|
||||||
|
# via jinja2
|
||||||
|
# via mako
|
||||||
|
# via simplelogin
|
||||||
|
# via wtforms
|
||||||
|
matplotlib-inline==0.1.7
|
||||||
|
# via ipython
|
||||||
|
mccabe==0.7.0
|
||||||
|
# via pylint
|
||||||
|
memory-profiler==0.57.0
|
||||||
|
# via simplelogin
|
||||||
|
multidict==6.1.0
|
||||||
|
# via aiohttp
|
||||||
|
# via yarl
|
||||||
|
mypy-extensions==1.0.0
|
||||||
|
# via black
|
||||||
|
newrelic==8.8.1
|
||||||
|
# via simplelogin
|
||||||
|
newrelic-telemetry-sdk==0.5.1
|
||||||
|
# via simplelogin
|
||||||
|
nodeenv==1.9.1
|
||||||
|
# via pre-commit
|
||||||
|
oauthlib==3.2.2
|
||||||
|
# via requests-oauthlib
|
||||||
|
packaging==24.2
|
||||||
|
# via limits
|
||||||
|
# via pytest
|
||||||
|
parso==0.8.4
|
||||||
|
# via jedi
|
||||||
|
pathspec==0.9.0
|
||||||
|
# via black
|
||||||
|
# via djlint
|
||||||
|
pexpect==4.9.0
|
||||||
|
# via ipython
|
||||||
|
pgpy==0.5.4
|
||||||
|
# via simplelogin
|
||||||
|
phpserialize==1.3
|
||||||
|
# via simplelogin
|
||||||
|
pickleshare==0.7.5
|
||||||
|
# via ipython
|
||||||
|
platformdirs==4.3.6
|
||||||
|
# via black
|
||||||
|
# via pylint
|
||||||
|
# via virtualenv
|
||||||
|
pluggy==1.5.0
|
||||||
|
# via pytest
|
||||||
|
ply==3.11
|
||||||
|
# via flanker
|
||||||
|
pre-commit==2.17.0
|
||||||
|
prompt-toolkit==3.0.48
|
||||||
|
# via ipython
|
||||||
|
propcache==0.2.1
|
||||||
|
# via aiohttp
|
||||||
|
# via yarl
|
||||||
|
proto-plus==1.25.0
|
||||||
|
# via google-api-core
|
||||||
|
protobuf==5.29.3
|
||||||
|
# via google-api-core
|
||||||
|
# via googleapis-common-protos
|
||||||
|
# via proto-plus
|
||||||
|
psutil==6.1.1
|
||||||
|
# via memory-profiler
|
||||||
|
psycopg2-binary==2.9.10
|
||||||
|
# via simplelogin
|
||||||
|
ptyprocess==0.7.0
|
||||||
|
# via pexpect
|
||||||
|
py==1.11.0
|
||||||
|
# via pytest
|
||||||
|
pyasn1==0.6.1
|
||||||
|
# via pgpy
|
||||||
|
# via pyasn1-modules
|
||||||
|
# via rsa
|
||||||
|
pyasn1-modules==0.4.1
|
||||||
|
# via google-auth
|
||||||
|
pycparser==2.22
|
||||||
|
# via cffi
|
||||||
|
pycryptodome==3.9.9
|
||||||
|
# via simplelogin
|
||||||
|
pygments==2.19.1
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
# via ipython
|
||||||
|
pyjwt==2.10.1
|
||||||
|
# via twilio
|
||||||
|
pylint==2.14.5
|
||||||
|
pyopenssl==19.1.0
|
||||||
|
# via simplelogin
|
||||||
|
# via webauthn
|
||||||
|
pyotp==2.4.1
|
||||||
|
# via simplelogin
|
||||||
|
pyparsing==3.2.1
|
||||||
|
# via httplib2
|
||||||
|
pyre2==0.3.6
|
||||||
|
# via simplelogin
|
||||||
|
pyspf==2.0.14
|
||||||
|
# via simplelogin
|
||||||
|
pytest==7.0.1
|
||||||
|
# via pytest-cov
|
||||||
|
pytest-cov==3.0.0
|
||||||
|
python-dateutil==2.9.0.post0
|
||||||
|
# via arrow
|
||||||
|
# via botocore
|
||||||
|
# via strictyaml
|
||||||
|
python-dotenv==0.14.0
|
||||||
|
# via simplelogin
|
||||||
|
python-gnupg==0.4.9
|
||||||
|
# via simplelogin
|
||||||
|
pytz==2024.2
|
||||||
|
# via twilio
|
||||||
|
# via yacron
|
||||||
|
pyyaml==6.0.2
|
||||||
|
# via djlint
|
||||||
|
# via pre-commit
|
||||||
|
redis==4.5.5
|
||||||
|
# via simplelogin
|
||||||
|
regex==2022.10.31
|
||||||
|
# via djlint
|
||||||
|
# via flanker
|
||||||
|
requests==2.25.1
|
||||||
|
# via coinbase-commerce
|
||||||
|
# via facebook-sdk
|
||||||
|
# via google-api-core
|
||||||
|
# via requests-file
|
||||||
|
# via requests-oauthlib
|
||||||
|
# via simplelogin
|
||||||
|
# via tldextract
|
||||||
|
# via twilio
|
||||||
|
requests-file==2.1.0
|
||||||
|
# via tldextract
|
||||||
|
requests-oauthlib==1.3.1
|
||||||
|
# via simplelogin
|
||||||
|
rsa==4.9
|
||||||
|
# via google-auth
|
||||||
|
ruamel-yaml==0.17.4
|
||||||
|
# via yacron
|
||||||
|
ruff==0.1.15
|
||||||
|
s3transfer==0.10.4
|
||||||
|
# via boto3
|
||||||
|
sentry-sdk==2.20.0
|
||||||
|
# via simplelogin
|
||||||
|
# via yacron
|
||||||
|
setuptools==75.8.0
|
||||||
|
# via astroid
|
||||||
|
# via gunicorn
|
||||||
|
# via ipython
|
||||||
|
# via zope-event
|
||||||
|
# via zope-interface
|
||||||
|
simplejson==3.19.3
|
||||||
|
# via flask-profiler
|
||||||
|
six==1.17.0
|
||||||
|
# via coinbase-commerce
|
||||||
|
# via flanker
|
||||||
|
# via flask-cors
|
||||||
|
# via flask-limiter
|
||||||
|
# via google-api-python-client
|
||||||
|
# via google-auth-httplib2
|
||||||
|
# via jwcrypto
|
||||||
|
# via pgpy
|
||||||
|
# via pyopenssl
|
||||||
|
# via python-dateutil
|
||||||
|
# via sqlalchemy-utils
|
||||||
|
# via webauthn
|
||||||
|
sqlalchemy==1.3.24
|
||||||
|
# via alembic
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
# via flask-sqlalchemy
|
||||||
|
# via simplelogin
|
||||||
|
# via sqlalchemy-utils
|
||||||
|
sqlalchemy-utils==0.36.8
|
||||||
|
# via simplelogin
|
||||||
|
sqlparse==0.5.3
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
strictyaml==1.7.3
|
||||||
|
# via yacron
|
||||||
|
tld==0.13
|
||||||
|
# via flanker
|
||||||
|
tldextract==3.1.2
|
||||||
|
# via simplelogin
|
||||||
|
toml==0.10.2
|
||||||
|
# via pre-commit
|
||||||
|
tomli==2.2.1
|
||||||
|
# via black
|
||||||
|
# via coverage
|
||||||
|
# via djlint
|
||||||
|
# via pylint
|
||||||
|
# via pytest
|
||||||
|
tomlkit==0.13.2
|
||||||
|
# via pylint
|
||||||
|
tqdm==4.67.1
|
||||||
|
# via djlint
|
||||||
|
traitlets==5.14.3
|
||||||
|
# via ipython
|
||||||
|
# via matplotlib-inline
|
||||||
|
twilio==7.3.2
|
||||||
|
# via simplelogin
|
||||||
|
typer==0.9.4
|
||||||
|
# via aiospamc
|
||||||
|
typing-extensions==4.12.2
|
||||||
|
# via aiospamc
|
||||||
|
# via alembic
|
||||||
|
# via limits
|
||||||
|
# via multidict
|
||||||
|
# via typer
|
||||||
|
unidecode==1.1.2
|
||||||
|
# via simplelogin
|
||||||
|
uritemplate==3.0.1
|
||||||
|
# via google-api-python-client
|
||||||
|
urllib3==1.26.20
|
||||||
|
# via botocore
|
||||||
|
# via newrelic-telemetry-sdk
|
||||||
|
# via requests
|
||||||
|
# via sentry-sdk
|
||||||
|
virtualenv==20.29.0
|
||||||
|
# via pre-commit
|
||||||
|
watchtower==0.8.0
|
||||||
|
# via simplelogin
|
||||||
|
wcwidth==0.2.13
|
||||||
|
# via prompt-toolkit
|
||||||
|
webauthn==0.4.7
|
||||||
|
# via simplelogin
|
||||||
|
webob==1.8.9
|
||||||
|
# via flanker
|
||||||
|
werkzeug==1.0.1
|
||||||
|
# via flask
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via simplelogin
|
||||||
|
wrapt==1.17.2
|
||||||
|
# via astroid
|
||||||
|
# via deprecated
|
||||||
|
wtforms==2.3.3
|
||||||
|
# via flask-admin
|
||||||
|
# via flask-wtf
|
||||||
|
# via simplelogin
|
||||||
|
yacron==0.19.0
|
||||||
|
# via simplelogin
|
||||||
|
yarl==1.18.3
|
||||||
|
# via aiohttp
|
||||||
|
zipp==3.21.0
|
||||||
|
# via importlib-metadata
|
||||||
|
zope-event==5.0
|
||||||
|
# via gevent
|
||||||
|
zope-interface==7.2
|
||||||
|
# via gevent
|
392
app/requirements.lock
Normal file
392
app/requirements.lock
Normal file
@ -0,0 +1,392 @@
|
|||||||
|
# generated by rye
|
||||||
|
# use `rye lock` or `rye sync` to update this lockfile
|
||||||
|
#
|
||||||
|
# last locked with the following flags:
|
||||||
|
# pre: false
|
||||||
|
# features: []
|
||||||
|
# all-features: false
|
||||||
|
# with-sources: false
|
||||||
|
# generate-hashes: false
|
||||||
|
# universal: false
|
||||||
|
|
||||||
|
-e file:.
|
||||||
|
aiohttp==3.8.4
|
||||||
|
# via google-auth
|
||||||
|
# via yacron
|
||||||
|
aiosignal==1.2.0
|
||||||
|
# via aiohttp
|
||||||
|
aiosmtpd==1.4.2
|
||||||
|
# via simplelogin
|
||||||
|
aiosmtplib==1.1.4
|
||||||
|
# via yacron
|
||||||
|
aiospamc==0.10.0
|
||||||
|
# via simplelogin
|
||||||
|
alembic==1.4.3
|
||||||
|
# via flask-migrate
|
||||||
|
appnope==0.1.0
|
||||||
|
# via ipython
|
||||||
|
arrow==0.16.0
|
||||||
|
# via simplelogin
|
||||||
|
async-timeout==4.0.2
|
||||||
|
# via aiohttp
|
||||||
|
# via redis
|
||||||
|
atpublic==2.0
|
||||||
|
# via aiosmtpd
|
||||||
|
attrs==20.2.0
|
||||||
|
# via aiohttp
|
||||||
|
# via aiosmtpd
|
||||||
|
# via flanker
|
||||||
|
backcall==0.2.0
|
||||||
|
# via ipython
|
||||||
|
bcrypt==3.2.0
|
||||||
|
# via simplelogin
|
||||||
|
blinker==1.4
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via simplelogin
|
||||||
|
boto3==1.35.99
|
||||||
|
# via simplelogin
|
||||||
|
# via watchtower
|
||||||
|
botocore==1.35.99
|
||||||
|
# via boto3
|
||||||
|
# via s3transfer
|
||||||
|
cachetools==4.1.1
|
||||||
|
# via google-auth
|
||||||
|
cbor2==5.2.0
|
||||||
|
# via webauthn
|
||||||
|
certifi==2019.11.28
|
||||||
|
# via aiospamc
|
||||||
|
# via requests
|
||||||
|
# via sentry-sdk
|
||||||
|
cffi==1.14.4
|
||||||
|
# via bcrypt
|
||||||
|
# via cryptography
|
||||||
|
chardet==3.0.4
|
||||||
|
# via flanker
|
||||||
|
# via requests
|
||||||
|
charset-normalizer==3.4.1
|
||||||
|
# via aiohttp
|
||||||
|
click==8.0.3
|
||||||
|
# via flask
|
||||||
|
# via typer
|
||||||
|
coinbase-commerce==1.0.1
|
||||||
|
# via simplelogin
|
||||||
|
coloredlogs==14.0
|
||||||
|
# via simplelogin
|
||||||
|
crontab==0.22.8
|
||||||
|
# via yacron
|
||||||
|
cryptography==37.0.1
|
||||||
|
# via flanker
|
||||||
|
# via jwcrypto
|
||||||
|
# via pgpy
|
||||||
|
# via pyopenssl
|
||||||
|
# via simplelogin
|
||||||
|
# via webauthn
|
||||||
|
decorator==4.4.2
|
||||||
|
# via ipython
|
||||||
|
deprecated==1.2.13
|
||||||
|
# via simplelogin
|
||||||
|
dkimpy==1.0.5
|
||||||
|
# via simplelogin
|
||||||
|
dnspython==2.6.1
|
||||||
|
# via dkimpy
|
||||||
|
# via email-validator
|
||||||
|
# via simplelogin
|
||||||
|
email-validator==1.1.3
|
||||||
|
# via simplelogin
|
||||||
|
facebook-sdk==3.1.0
|
||||||
|
# via simplelogin
|
||||||
|
filelock==3.15.4
|
||||||
|
# via tldextract
|
||||||
|
flanker==0.9.11
|
||||||
|
# via simplelogin
|
||||||
|
flask==1.1.2
|
||||||
|
# via flask-admin
|
||||||
|
# via flask-cors
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via flask-httpauth
|
||||||
|
# via flask-limiter
|
||||||
|
# via flask-login
|
||||||
|
# via flask-migrate
|
||||||
|
# via flask-profiler
|
||||||
|
# via flask-sqlalchemy
|
||||||
|
# via flask-wtf
|
||||||
|
# via simplelogin
|
||||||
|
flask-admin==1.5.7
|
||||||
|
# via simplelogin
|
||||||
|
flask-cors==3.0.9
|
||||||
|
# via simplelogin
|
||||||
|
flask-debugtoolbar==0.11.0
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
# via simplelogin
|
||||||
|
flask-debugtoolbar-sqlalchemy==0.2.0
|
||||||
|
# via simplelogin
|
||||||
|
flask-httpauth==4.1.0
|
||||||
|
# via flask-profiler
|
||||||
|
flask-limiter==1.4
|
||||||
|
# via simplelogin
|
||||||
|
flask-login==0.5.0
|
||||||
|
# via simplelogin
|
||||||
|
flask-migrate==2.5.3
|
||||||
|
# via simplelogin
|
||||||
|
flask-profiler==1.8.1
|
||||||
|
# via simplelogin
|
||||||
|
flask-sqlalchemy==2.5.1
|
||||||
|
# via flask-migrate
|
||||||
|
flask-wtf==0.14.3
|
||||||
|
# via simplelogin
|
||||||
|
frozenlist==1.3.3
|
||||||
|
# via aiohttp
|
||||||
|
# via aiosignal
|
||||||
|
future==0.18.3
|
||||||
|
# via webauthn
|
||||||
|
gevent==24.11.1
|
||||||
|
# via simplelogin
|
||||||
|
google-api-core==1.22.2
|
||||||
|
# via google-api-python-client
|
||||||
|
google-api-python-client==1.12.3
|
||||||
|
# via simplelogin
|
||||||
|
google-auth==1.22.0
|
||||||
|
# via google-api-core
|
||||||
|
# via google-api-python-client
|
||||||
|
# via google-auth-httplib2
|
||||||
|
google-auth-httplib2==0.0.4
|
||||||
|
# via google-api-python-client
|
||||||
|
# via simplelogin
|
||||||
|
googleapis-common-protos==1.52.0
|
||||||
|
# via google-api-core
|
||||||
|
greenlet==3.1.1
|
||||||
|
# via gevent
|
||||||
|
gunicorn==20.0.4
|
||||||
|
# via simplelogin
|
||||||
|
httplib2==0.22.0
|
||||||
|
# via google-api-python-client
|
||||||
|
# via google-auth-httplib2
|
||||||
|
humanfriendly==8.2
|
||||||
|
# via coloredlogs
|
||||||
|
idna==2.10
|
||||||
|
# via email-validator
|
||||||
|
# via flanker
|
||||||
|
# via requests
|
||||||
|
# via tldextract
|
||||||
|
# via yarl
|
||||||
|
ipython==7.31.1
|
||||||
|
# via simplelogin
|
||||||
|
ipython-genutils==0.2.0
|
||||||
|
# via traitlets
|
||||||
|
itsdangerous==1.1.0
|
||||||
|
# via flask
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via flask-wtf
|
||||||
|
# via simplelogin
|
||||||
|
jedi==0.17.2
|
||||||
|
# via ipython
|
||||||
|
jinja2==2.11.3
|
||||||
|
# via flask
|
||||||
|
# via yacron
|
||||||
|
jmespath==0.10.0
|
||||||
|
# via boto3
|
||||||
|
# via botocore
|
||||||
|
jwcrypto==0.8
|
||||||
|
# via simplelogin
|
||||||
|
limits==1.5.1
|
||||||
|
# via flask-limiter
|
||||||
|
loguru==0.7.2
|
||||||
|
# via aiospamc
|
||||||
|
mako==1.2.4
|
||||||
|
# via alembic
|
||||||
|
markupsafe==1.1.1
|
||||||
|
# via jinja2
|
||||||
|
# via mako
|
||||||
|
# via simplelogin
|
||||||
|
# via wtforms
|
||||||
|
matplotlib-inline==0.1.3
|
||||||
|
# via ipython
|
||||||
|
memory-profiler==0.57.0
|
||||||
|
# via simplelogin
|
||||||
|
multidict==4.7.6
|
||||||
|
# via aiohttp
|
||||||
|
# via yarl
|
||||||
|
newrelic==8.8.0
|
||||||
|
# via simplelogin
|
||||||
|
newrelic-telemetry-sdk==0.5.0
|
||||||
|
# via simplelogin
|
||||||
|
oauthlib==3.1.0
|
||||||
|
# via requests-oauthlib
|
||||||
|
parso==0.7.1
|
||||||
|
# via jedi
|
||||||
|
pexpect==4.8.0
|
||||||
|
# via ipython
|
||||||
|
pgpy==0.5.4
|
||||||
|
# via simplelogin
|
||||||
|
phpserialize==1.3
|
||||||
|
# via simplelogin
|
||||||
|
pickleshare==0.7.5
|
||||||
|
# via ipython
|
||||||
|
ply==3.11
|
||||||
|
# via flanker
|
||||||
|
prompt-toolkit==3.0.7
|
||||||
|
# via ipython
|
||||||
|
protobuf==5.27.1
|
||||||
|
# via google-api-core
|
||||||
|
# via googleapis-common-protos
|
||||||
|
psutil==5.7.2
|
||||||
|
# via memory-profiler
|
||||||
|
psycopg2-binary==2.9.3
|
||||||
|
# via simplelogin
|
||||||
|
ptyprocess==0.6.0
|
||||||
|
# via pexpect
|
||||||
|
pyasn1==0.4.8
|
||||||
|
# via pgpy
|
||||||
|
# via pyasn1-modules
|
||||||
|
# via rsa
|
||||||
|
pyasn1-modules==0.2.8
|
||||||
|
# via google-auth
|
||||||
|
pycparser==2.20
|
||||||
|
# via cffi
|
||||||
|
pycryptodome==3.9.8
|
||||||
|
# via simplelogin
|
||||||
|
pygments==2.7.4
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
# via ipython
|
||||||
|
pyjwt==2.4.0
|
||||||
|
# via twilio
|
||||||
|
pyopenssl==19.1.0
|
||||||
|
# via simplelogin
|
||||||
|
# via webauthn
|
||||||
|
pyotp==2.4.0
|
||||||
|
# via simplelogin
|
||||||
|
pyparsing==2.4.7
|
||||||
|
# via httplib2
|
||||||
|
pyre2==0.3.6
|
||||||
|
# via simplelogin
|
||||||
|
pyspf==2.0.14
|
||||||
|
# via simplelogin
|
||||||
|
python-dateutil==2.8.1
|
||||||
|
# via alembic
|
||||||
|
# via arrow
|
||||||
|
# via botocore
|
||||||
|
# via strictyaml
|
||||||
|
python-dotenv==0.14.0
|
||||||
|
# via simplelogin
|
||||||
|
python-editor==1.0.4
|
||||||
|
# via alembic
|
||||||
|
python-gnupg==0.4.6
|
||||||
|
# via simplelogin
|
||||||
|
pytz==2020.1
|
||||||
|
# via google-api-core
|
||||||
|
# via twilio
|
||||||
|
# via yacron
|
||||||
|
redis==4.5.5
|
||||||
|
# via simplelogin
|
||||||
|
regex==2023.12.25
|
||||||
|
# via flanker
|
||||||
|
requests==2.25.1
|
||||||
|
# via coinbase-commerce
|
||||||
|
# via facebook-sdk
|
||||||
|
# via google-api-core
|
||||||
|
# via requests-file
|
||||||
|
# via requests-oauthlib
|
||||||
|
# via simplelogin
|
||||||
|
# via tldextract
|
||||||
|
# via twilio
|
||||||
|
requests-file==1.5.1
|
||||||
|
# via tldextract
|
||||||
|
requests-oauthlib==1.3.0
|
||||||
|
# via simplelogin
|
||||||
|
rsa==4.6
|
||||||
|
# via google-auth
|
||||||
|
ruamel-yaml==0.17.4
|
||||||
|
# via strictyaml
|
||||||
|
# via yacron
|
||||||
|
s3transfer==0.10.4
|
||||||
|
# via boto3
|
||||||
|
sentry-sdk==2.20.0
|
||||||
|
# via simplelogin
|
||||||
|
# via yacron
|
||||||
|
setuptools==67.6.0
|
||||||
|
# via google-api-core
|
||||||
|
# via google-auth
|
||||||
|
# via gunicorn
|
||||||
|
# via ipython
|
||||||
|
# via zope-event
|
||||||
|
# via zope-interface
|
||||||
|
simplejson==3.17.2
|
||||||
|
# via flask-profiler
|
||||||
|
six==1.15.0
|
||||||
|
# via bcrypt
|
||||||
|
# via coinbase-commerce
|
||||||
|
# via flanker
|
||||||
|
# via flask-cors
|
||||||
|
# via flask-limiter
|
||||||
|
# via google-api-core
|
||||||
|
# via google-api-python-client
|
||||||
|
# via google-auth
|
||||||
|
# via google-auth-httplib2
|
||||||
|
# via limits
|
||||||
|
# via pgpy
|
||||||
|
# via pyopenssl
|
||||||
|
# via python-dateutil
|
||||||
|
# via requests-file
|
||||||
|
# via sqlalchemy-utils
|
||||||
|
# via webauthn
|
||||||
|
sqlalchemy==1.3.24
|
||||||
|
# via alembic
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
# via flask-sqlalchemy
|
||||||
|
# via simplelogin
|
||||||
|
# via sqlalchemy-utils
|
||||||
|
sqlalchemy-utils==0.36.8
|
||||||
|
# via simplelogin
|
||||||
|
sqlparse==0.4.4
|
||||||
|
# via flask-debugtoolbar-sqlalchemy
|
||||||
|
strictyaml==1.1.0
|
||||||
|
# via yacron
|
||||||
|
tld==0.12.6
|
||||||
|
# via flanker
|
||||||
|
tldextract==3.1.2
|
||||||
|
# via simplelogin
|
||||||
|
traitlets==5.0.4
|
||||||
|
# via ipython
|
||||||
|
# via matplotlib-inline
|
||||||
|
twilio==7.3.2
|
||||||
|
# via simplelogin
|
||||||
|
typer==0.9.0
|
||||||
|
# via aiospamc
|
||||||
|
typing-extensions==4.8.0
|
||||||
|
# via aiospamc
|
||||||
|
# via typer
|
||||||
|
unidecode==1.1.1
|
||||||
|
# via simplelogin
|
||||||
|
uritemplate==3.0.1
|
||||||
|
# via google-api-python-client
|
||||||
|
urllib3==1.26.20
|
||||||
|
# via botocore
|
||||||
|
# via newrelic-telemetry-sdk
|
||||||
|
# via requests
|
||||||
|
# via sentry-sdk
|
||||||
|
watchtower==0.8.0
|
||||||
|
# via simplelogin
|
||||||
|
wcwidth==0.2.5
|
||||||
|
# via prompt-toolkit
|
||||||
|
webauthn==0.4.7
|
||||||
|
# via simplelogin
|
||||||
|
webob==1.8.7
|
||||||
|
# via flanker
|
||||||
|
werkzeug==1.0.1
|
||||||
|
# via flask
|
||||||
|
# via flask-debugtoolbar
|
||||||
|
# via simplelogin
|
||||||
|
wrapt==1.15.0
|
||||||
|
# via deprecated
|
||||||
|
wtforms==2.3.3
|
||||||
|
# via flask-admin
|
||||||
|
# via flask-wtf
|
||||||
|
# via simplelogin
|
||||||
|
yacron==0.19.0
|
||||||
|
# via simplelogin
|
||||||
|
yarl==1.9.2
|
||||||
|
# via aiohttp
|
||||||
|
zope-event==5.0
|
||||||
|
# via gevent
|
||||||
|
zope-interface==7.2
|
||||||
|
# via gevent
|
@ -12,10 +12,10 @@ docker run -p 25432:5432 --name ${container_name} -e POSTGRES_PASSWORD=postgres
|
|||||||
sleep 3
|
sleep 3
|
||||||
|
|
||||||
# upgrade the DB to the latest stage and
|
# upgrade the DB to the latest stage and
|
||||||
env DB_URI=postgresql://postgres:postgres@127.0.0.1:25432/sl poetry run alembic upgrade head
|
env DB_URI=postgresql://postgres:postgres@127.0.0.1:25432/sl uv run alembic upgrade head
|
||||||
|
|
||||||
# generate the migration script.
|
# generate the migration script.
|
||||||
env DB_URI=postgresql://postgres:postgres@127.0.0.1:25432/sl poetry run alembic revision --autogenerate $@
|
env DB_URI=postgresql://postgres:postgres@127.0.0.1:25432/sl uv run alembic revision --autogenerate $@
|
||||||
|
|
||||||
# remove the db
|
# remove the db
|
||||||
docker rm -f ${container_name}
|
docker rm -f ${container_name}
|
||||||
|
@ -3,5 +3,5 @@
|
|||||||
export DB_URI=postgresql://myuser:mypassword@localhost:15432/simplelogin
|
export DB_URI=postgresql://myuser:mypassword@localhost:15432/simplelogin
|
||||||
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
|
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
|
||||||
|
|
||||||
poetry run alembic upgrade head
|
uv run alembic upgrade head
|
||||||
poetry run flask dummy-data
|
uv run flask dummy-data
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
export DB_URI=postgresql://myuser:mypassword@localhost:15432/test
|
export DB_URI=postgresql://myuser:mypassword@localhost:15432/test
|
||||||
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
|
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
|
||||||
|
|
||||||
poetry run alembic upgrade head
|
uv run alembic upgrade head
|
||||||
|
@ -10,10 +10,10 @@ docker run -d --name sl-test-db -e POSTGRES_PASSWORD=test -e POSTGRES_USER=test
|
|||||||
sleep 3
|
sleep 3
|
||||||
|
|
||||||
# migrate the DB to the latest version
|
# migrate the DB to the latest version
|
||||||
CONFIG=tests/test.env poetry run alembic upgrade head
|
CONFIG=tests/test.env uv run alembic upgrade head
|
||||||
|
|
||||||
# run test
|
# run test
|
||||||
poetry run pytest -c pytest.ci.ini
|
uv run pytest -c pytest.ci.ini
|
||||||
|
|
||||||
# Delete the test DB
|
# Delete the test DB
|
||||||
docker rm -f sl-test-db
|
docker rm -f sl-test-db
|
||||||
|
@ -44,6 +44,7 @@ from app.admin_model import (
|
|||||||
MetricAdmin,
|
MetricAdmin,
|
||||||
InvalidMailboxDomainAdmin,
|
InvalidMailboxDomainAdmin,
|
||||||
EmailSearchAdmin,
|
EmailSearchAdmin,
|
||||||
|
CustomDomainSearchAdmin,
|
||||||
)
|
)
|
||||||
from app.api.base import api_bp
|
from app.api.base import api_bp
|
||||||
from app.auth.base import auth_bp
|
from app.auth.base import auth_bp
|
||||||
@ -443,6 +444,11 @@ def init_admin(app):
|
|||||||
|
|
||||||
admin.init_app(app, index_view=SLAdminIndexView())
|
admin.init_app(app, index_view=SLAdminIndexView())
|
||||||
admin.add_view(EmailSearchAdmin(name="Email Search", endpoint="email_search"))
|
admin.add_view(EmailSearchAdmin(name="Email Search", endpoint="email_search"))
|
||||||
|
admin.add_view(
|
||||||
|
CustomDomainSearchAdmin(
|
||||||
|
name="Custom domain search", endpoint="custom_domain_search"
|
||||||
|
)
|
||||||
|
)
|
||||||
admin.add_view(UserAdmin(User, Session))
|
admin.add_view(UserAdmin(User, Session))
|
||||||
admin.add_view(AliasAdmin(Alias, Session))
|
admin.add_view(AliasAdmin(Alias, Session))
|
||||||
admin.add_view(MailboxAdmin(Mailbox, Session))
|
admin.add_view(MailboxAdmin(Mailbox, Session))
|
||||||
|
118
app/templates/admin/custom_domain_search.html
Normal file
118
app/templates/admin/custom_domain_search.html
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
{% extends 'admin/master.html' %}
|
||||||
|
|
||||||
|
{% macro show_user(user) -%}
|
||||||
|
<h4>User <a href="/admin/email_search?email={{ user.email }}">{{ user.email }}</a> with ID {{ user.id }}.</h4>
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">User ID</th>
|
||||||
|
<th scope="col">Email</th>
|
||||||
|
<th scope="col">Verified</th>
|
||||||
|
<th scope="col">Status</th>
|
||||||
|
<th scope="col">Paid</th>
|
||||||
|
<th scope="col">Premium</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>{{ user.id }}</td>
|
||||||
|
<td>
|
||||||
|
<a href="/admin/email_search?email={{ user.email }}">{{ user.email }}</a>
|
||||||
|
</td>
|
||||||
|
{% if user.activated %}
|
||||||
|
|
||||||
|
<td class="text-success">Activated</td>
|
||||||
|
{% else %}
|
||||||
|
<td class="text-warning">Pending</td>
|
||||||
|
{% endif %}
|
||||||
|
{% if user.disabled %}
|
||||||
|
|
||||||
|
<td class="text-danger">Disabled</td>
|
||||||
|
{% else %}
|
||||||
|
<td class="text-success">Enabled</td>
|
||||||
|
{% endif %}
|
||||||
|
<td>{{ "yes" if user.is_paid() else "No" }}</td>
|
||||||
|
<td>{{ "yes" if user.is_premium() else "No" }}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{%- endmacro %}
|
||||||
|
|
||||||
|
|
||||||
|
{% macro show_verification(title, expected, errors) -%}
|
||||||
|
{% if not expected %}
|
||||||
|
<h4 class="mb-3">{{ title }} <span class="text-success">Verified</span></h4>
|
||||||
|
{% else %}
|
||||||
|
<h4 class="mb-3">{{ title }}</h4>
|
||||||
|
<p>Expected</p>
|
||||||
|
<p>{{expected}}</p>
|
||||||
|
<p>Current response</p>
|
||||||
|
<ul class="list-group">
|
||||||
|
{% for error in errors %}
|
||||||
|
<li class="list-group-item">{{ error }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
{%- endmacro %}
|
||||||
|
|
||||||
|
|
||||||
|
{% macro show_domain(domain_with_data) -%}
|
||||||
|
<h3>Domain {{ domain_with_data.domain.domain }}</h3>
|
||||||
|
{% set domain = domain_with_data.domain %}
|
||||||
|
<ul class="list-group">
|
||||||
|
<li class="list-group-item">
|
||||||
|
{{ show_verification("Ownership", domain_with_data.ownership_expected, domain_with_data.ownership_validation.errors) }}
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item">
|
||||||
|
{{ show_verification("MX", domain_with_data.mx_expected, domain_with_data.mx_validation.errors) }}
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item">
|
||||||
|
{{ show_verification("SPF", domain_with_data.spf_expected, domain_with_data.spf_validation.errors) }}
|
||||||
|
</li>
|
||||||
|
{% for dkim_domain in domain_with_data.dkim_expected %}
|
||||||
|
<li class="list-group-item">
|
||||||
|
{{ show_verification("DKIM {}.{}".format(dkim_domain, domain.domain), domain_with_data.dkim_expected[dkim_domain], [domain_with_data.dkim_validation.get(dkim_domain+"."+domain.domain,'')]) }}
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{%- endmacro %}
|
||||||
|
|
||||||
|
|
||||||
|
{% block body %}
|
||||||
|
|
||||||
|
<div class="border border-dark border-2 mt-1 mb-2 p-3">
|
||||||
|
<form method="get">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="email">User or domain to search:</label>
|
||||||
|
<input type="text"
|
||||||
|
class="form-control"
|
||||||
|
name="user"
|
||||||
|
value="{{ query or '' }}" />
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
{% if data.no_match and query %}
|
||||||
|
<div class="border border-dark border-2 mt-1 mb-2 p-3 alert alert-warning"
|
||||||
|
role="alert">No user, alias or mailbox found for {{ query }}</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if data.user %}
|
||||||
|
<div class="border border-dark border-2 mt-1 mb-2 p-3">
|
||||||
|
<h3 class="mb-3">Found User {{ data.user.email }}</h3>
|
||||||
|
{{ show_user(data.user) }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<div class="d-flex">
|
||||||
|
|
||||||
|
{% for domain_with_data in data.domains %}
|
||||||
|
<div class="card m-2 border-dark" style="width: 30rem;">
|
||||||
|
<div class="card-body">
|
||||||
|
{{ show_domain(domain_with_data) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{% endblock %}
|
@ -57,31 +57,21 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block default_content %}
|
{% block default_content %}
|
||||||
|
|
||||||
{% if NOW.timestamp < 1701475201 %}
|
{% if NOW.timestamp < 1733184000 %}
|
||||||
|
|
||||||
<div class="alert alert-info">
|
<div class="alert alert-primary">
|
||||||
Black Friday Deal: 33% off on the yearly plan for the <b>first</b> year ($20 instead of $30).
|
Lifetime deal for SimpleLogin Premium and Proton Pass Plus for $199
|
||||||
|
<a class="btn btn-primary"
|
||||||
|
href="https://proton.me/pass/black-friday"
|
||||||
|
target="_blank">Buy now</a>
|
||||||
<br>
|
<br>
|
||||||
Please use this coupon code
|
Available until December 3, 2024.
|
||||||
<em data-toggle="tooltip"
|
|
||||||
title="Click to copy"
|
|
||||||
class="clipboard"
|
|
||||||
data-clipboard-text="BF2023">BF2023</em> during the checkout.
|
|
||||||
<br>
|
|
||||||
<img src="/static/images/coupon.png" class="m-2" style="max-width: 300px">
|
|
||||||
<br>
|
|
||||||
Available until December 1, 2023.
|
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="pb-8">
|
<div class="pb-8">
|
||||||
<div class="text-center mx-md-auto mb-8 mt-6">
|
<div class="text-center mx-md-auto mb-4 mt-4">
|
||||||
<h1>Upgrade to unlock premium features</h1>
|
<h1>Upgrade to unlock premium features</h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="alert alert-info">
|
|
||||||
<span class="badge badge-success">new</span> SimpleLogin Premium now includes Proton Pass premium features.
|
|
||||||
<a href="https://simplelogin.io/blog/sl-premium-including-pass-plus/"
|
|
||||||
target="_blank">Learn more ↗</a>
|
|
||||||
</div>
|
|
||||||
{% if manual_sub %}
|
{% if manual_sub %}
|
||||||
|
|
||||||
<div class="alert alert-info mt-0 mb-6">
|
<div class="alert alert-info mt-0 mb-6">
|
||||||
@ -131,6 +121,11 @@
|
|||||||
aria-selected="true">Yearly<span class="badge badge-success position-absolute tab-yearly__badge"
|
aria-selected="true">Yearly<span class="badge badge-success position-absolute tab-yearly__badge"
|
||||||
style="font-size: 12px">Save $18</span></a>
|
style="font-size: 12px">Save $18</span></a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="alert alert-info">
|
||||||
|
<span class="badge badge-success">new</span> SimpleLogin Premium now includes Proton Pass premium features.
|
||||||
|
<a href="https://simplelogin.io/blog/sl-premium-including-pass-plus/"
|
||||||
|
target="_blank">Learn more ↗</a>
|
||||||
|
</div>
|
||||||
<div class="tab-content mb-8">
|
<div class="tab-content mb-8">
|
||||||
<!-- monthly tab content -->
|
<!-- monthly tab content -->
|
||||||
<div class="tab-pane"
|
<div class="tab-pane"
|
||||||
@ -223,12 +218,12 @@
|
|||||||
<div class="card card-md flex-grow-1">
|
<div class="card card-md flex-grow-1">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<div class="h3">Proton plan</div>
|
<div class="h3">Proton Unlimited</div>
|
||||||
<div class="h3 my-3">Starts at $12.99 / month</div>
|
<div class="h3 my-3">Starts at $12.99 / month</div>
|
||||||
<div class="text-center mt-4 mb-6">
|
<div class="text-center mt-4 mb-6">
|
||||||
<a class="btn btn-lg btn-outline-primary w-100"
|
<a class="btn btn-lg btn-outline-primary w-100"
|
||||||
role="button"
|
role="button"
|
||||||
href="https://account.proton.me/u/0/mail/upgrade"
|
href="https://account.proton.me/u/0/pass/upgrade"
|
||||||
target="_blank">Upgrade your Proton account</a>
|
target="_blank">Upgrade your Proton account</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -362,12 +357,12 @@
|
|||||||
<div class="card card-md flex-grow-1">
|
<div class="card card-md flex-grow-1">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<div class="h3">Proton plan</div>
|
<div class="h3">Proton Unlimited</div>
|
||||||
<div class="h3 my-3">Starts at $119.88 / year</div>
|
<div class="h3 my-3">Starts at $119.88 / year</div>
|
||||||
<div class="text-center mt-4 mb-6">
|
<div class="text-center mt-4 mb-6">
|
||||||
<a class="btn btn-lg btn-outline-primary w-100"
|
<a class="btn btn-lg btn-outline-primary w-100"
|
||||||
role="button"
|
role="button"
|
||||||
href="https://account.proton.me/u/0/mail/upgrade"
|
href="https://account.proton.me/u/0/pass/upgrade"
|
||||||
target="_blank">Upgrade your Proton account</a>
|
target="_blank">Upgrade your Proton account</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -79,7 +79,14 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if partner_sub %}<div>Premium subscription managed by {{ partner_name }}.</div>{% endif %}
|
{% if partner_sub %}
|
||||||
|
{% if partner_sub.lifetime %}
|
||||||
|
|
||||||
|
<div>Premium lifetime subscription managed by {{ partner_name }}.</div>
|
||||||
|
{% else %}
|
||||||
|
<div>Premium subscription managed by {{ partner_name }}.</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% elif current_user.in_trial() %}
|
{% elif current_user.in_trial() %}
|
||||||
Your Premium trial expires {{ current_user.trial_end | dt }}.
|
Your Premium trial expires {{ current_user.trial_end | dt }}.
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -549,7 +549,7 @@ def test_create_contact_route_free_users(flask_client):
|
|||||||
assert r.status_code == 201
|
assert r.status_code == 201
|
||||||
|
|
||||||
# End trial and disallow for new free users. Config should allow it
|
# End trial and disallow for new free users. Config should allow it
|
||||||
user.flags = User.FLAG_DISABLE_CREATE_CONTACTS
|
user.flags = User.FLAG_FREE_DISABLE_CREATE_CONTACTS
|
||||||
Session.commit()
|
Session.commit()
|
||||||
r = flask_client.post(
|
r = flask_client.post(
|
||||||
url_for("api.create_contact_route", alias_id=alias.id),
|
url_for("api.create_contact_route", alias_id=alias.id),
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
from flask import url_for
|
from flask import url_for
|
||||||
from app.models import Coupon
|
|
||||||
|
from app.models import Coupon, LifetimeCoupon
|
||||||
from app.utils import random_string
|
from app.utils import random_string
|
||||||
from tests.utils import login
|
from tests.utils import login
|
||||||
|
|
||||||
|
|
||||||
def test_use_coupon(flask_client):
|
def test_redeem_coupon_without_subscription(flask_client):
|
||||||
user = login(flask_client)
|
user = login(flask_client)
|
||||||
code = random_string(10)
|
code = random_string(10)
|
||||||
Coupon.create(code=code, nb_year=1, commit=True)
|
Coupon.create(code=code, nb_year=1, commit=True)
|
||||||
@ -14,7 +15,22 @@ def test_use_coupon(flask_client):
|
|||||||
data={"code": code},
|
data={"code": code},
|
||||||
)
|
)
|
||||||
|
|
||||||
assert r.status_code == 302
|
assert r.status_code == 200
|
||||||
coupon = Coupon.get_by(code=code)
|
coupon = Coupon.get_by(code=code)
|
||||||
assert coupon.used
|
assert coupon.used
|
||||||
assert coupon.used_by_user_id == user.id
|
assert coupon.used_by_user_id == user.id
|
||||||
|
|
||||||
|
|
||||||
|
def test_redeem_lifetime_coupon(flask_client):
|
||||||
|
login(flask_client)
|
||||||
|
code = random_string(10)
|
||||||
|
LifetimeCoupon.create(code=code, nb_used=1, commit=True)
|
||||||
|
|
||||||
|
r = flask_client.post(
|
||||||
|
url_for("dashboard.lifetime_licence"),
|
||||||
|
data={"code": code},
|
||||||
|
)
|
||||||
|
|
||||||
|
assert r.status_code == 302
|
||||||
|
coupon = LifetimeCoupon.get_by(code=code)
|
||||||
|
assert coupon.nb_used == 0
|
||||||
|
21
app/tests/example_emls/multi_reply_to.eml
Normal file
21
app/tests/example_emls/multi_reply_to.eml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
X-SimpleLogin-Client-IP: 54.39.200.130
|
||||||
|
Received-SPF: Softfail (mailfrom) identity=mailfrom; client-ip=34.59.200.130;
|
||||||
|
helo=relay.somewhere.net; envelope-from=everwaste@gmail.com;
|
||||||
|
receiver=<UNKNOWN>
|
||||||
|
Received: from relay.somewhere.net (relay.somewhere.net [34.59.200.130])
|
||||||
|
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
|
||||||
|
(No client certificate requested)
|
||||||
|
by mx1.sldev.ovh (Postfix) with ESMTPS id 6D8C13F069
|
||||||
|
for <wehrman_mannequin@sldev.ovh>; Thu, 17 Mar 2022 16:50:20 +0000 (UTC)
|
||||||
|
Date: Thu, 17 Mar 2022 16:50:18 +0000
|
||||||
|
To: {{ alias_email }}
|
||||||
|
From: somewhere@rainbow.com
|
||||||
|
Reply-To: 666-Mail Test <a1@mailcstest.com>, 777-Mail Test <a2@mailcstest.com>,
|
||||||
|
888-Mail Test <a3@mailcstest.com>, - 5 at mailcstest.com" <a4@simplelogin.co>
|
||||||
|
Subject: test Thu, 17 Mar 2022 16:50:18 +0000
|
||||||
|
Message-Id: <20220317165018.000191@somewhere-5488dd4b6b-7crp6>
|
||||||
|
X-Mailer: swaks v20201014.0 jetmore.org/john/code/swaks/
|
||||||
|
X-Rspamd-Queue-Id: 6D8C13F069
|
||||||
|
X-Rspamd-Server: staging1
|
||||||
|
|
||||||
|
This is a test mailing
|
33
app/tests/handler/test_reply_to.py
Normal file
33
app/tests/handler/test_reply_to.py
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
from aiosmtpd.smtp import Envelope
|
||||||
|
|
||||||
|
import email_handler
|
||||||
|
from app.email import status, headers
|
||||||
|
from app.email_utils import get_header_unicode, parse_full_address
|
||||||
|
|
||||||
|
from app.mail_sender import mail_sender
|
||||||
|
from app.models import Alias, Contact
|
||||||
|
from tests.utils import create_new_user, load_eml_file
|
||||||
|
|
||||||
|
|
||||||
|
@mail_sender.store_emails_test_decorator
|
||||||
|
def test_multi_reply_to():
|
||||||
|
user = create_new_user()
|
||||||
|
alias = Alias.create_new_random(user)
|
||||||
|
envelope = Envelope()
|
||||||
|
envelope.mail_from = "env.somewhere"
|
||||||
|
envelope.rcpt_tos = [alias.email]
|
||||||
|
msg = load_eml_file("multi_reply_to.eml", {"alias_email": alias.email})
|
||||||
|
alias_id = alias.id
|
||||||
|
result = email_handler.MailHandler()._handle(envelope, msg)
|
||||||
|
assert result == status.E200
|
||||||
|
sent_emails = mail_sender.get_stored_emails()
|
||||||
|
assert 1 == len(sent_emails)
|
||||||
|
msg = sent_emails[0].msg
|
||||||
|
reply_to = get_header_unicode(msg[headers.REPLY_TO])
|
||||||
|
entries = reply_to.split(",")
|
||||||
|
assert 4 == len(entries)
|
||||||
|
for entry in entries:
|
||||||
|
dummy, email = parse_full_address(entry)
|
||||||
|
contact = Contact.get_by(reply_email=email)
|
||||||
|
assert contact is not None
|
||||||
|
assert contact.alias_id == alias_id
|
@ -36,6 +36,24 @@ def test_delete_mailbox_transfer_mailbox_primary(flask_client):
|
|||||||
assert str(mails_sent[0].msg).find("alias have been transferred") > -1
|
assert str(mails_sent[0].msg).find("alias have been transferred") > -1
|
||||||
|
|
||||||
|
|
||||||
|
@mail_sender.store_emails_test_decorator
|
||||||
|
def test_delete_mailbox_no_email(flask_client):
|
||||||
|
user = create_new_user()
|
||||||
|
m1 = Mailbox.create(
|
||||||
|
user_id=user.id, email=random_email(), verified=True, flush=True
|
||||||
|
)
|
||||||
|
job = Job.create(
|
||||||
|
name=JOB_DELETE_MAILBOX,
|
||||||
|
payload={"mailbox_id": m1.id, "transfer_mailbox_id": None, "send_mail": False},
|
||||||
|
run_at=arrow.now(),
|
||||||
|
commit=True,
|
||||||
|
)
|
||||||
|
Session.commit()
|
||||||
|
delete_mailbox_job(job)
|
||||||
|
mails_sent = mail_sender.get_stored_emails()
|
||||||
|
assert len(mails_sent) == 0
|
||||||
|
|
||||||
|
|
||||||
@mail_sender.store_emails_test_decorator
|
@mail_sender.store_emails_test_decorator
|
||||||
def test_delete_mailbox_transfer_mailbox_in_list(flask_client):
|
def test_delete_mailbox_transfer_mailbox_in_list(flask_client):
|
||||||
user = create_new_user()
|
user = create_new_user()
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from app.db import Session
|
from app.db import Session
|
||||||
from app.models import Alias, Mailbox, AliasMailbox, User
|
from app.models import Alias, Mailbox, AliasMailbox, User, CustomDomain
|
||||||
from tests.utils import create_new_user, random_email
|
from tests.utils import create_new_user, random_email
|
||||||
|
|
||||||
|
|
||||||
@ -29,3 +29,23 @@ def test_alias_create_from_partner_flags_also_the_user():
|
|||||||
flush=True,
|
flush=True,
|
||||||
)
|
)
|
||||||
assert alias.user.flags & User.FLAG_CREATED_ALIAS_FROM_PARTNER > 0
|
assert alias.user.flags & User.FLAG_CREATED_ALIAS_FROM_PARTNER > 0
|
||||||
|
|
||||||
|
|
||||||
|
def test_alias_create_from_partner_domain_flags_the_alias():
|
||||||
|
user = create_new_user()
|
||||||
|
domain = CustomDomain.create(
|
||||||
|
domain=random_email(),
|
||||||
|
verified=True,
|
||||||
|
user_id=user.id,
|
||||||
|
partner_id=1,
|
||||||
|
)
|
||||||
|
Session.flush()
|
||||||
|
email = random_email()
|
||||||
|
alias = Alias.create(
|
||||||
|
user_id=user.id,
|
||||||
|
email=email,
|
||||||
|
mailbox_id=user.default_mailbox_id,
|
||||||
|
custom_domain_id=domain.id,
|
||||||
|
flush=True,
|
||||||
|
)
|
||||||
|
assert alias.flags & Alias.FLAG_PARTNER_CREATED > 0
|
||||||
|
100
app/tests/proton/test_account_linking.py
Normal file
100
app/tests/proton/test_account_linking.py
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
import arrow
|
||||||
|
|
||||||
|
from app.account_linking import (
|
||||||
|
SLPlan,
|
||||||
|
SLPlanType,
|
||||||
|
set_plan_for_partner_user,
|
||||||
|
)
|
||||||
|
from app.db import Session
|
||||||
|
from app.models import User, PartnerUser, PartnerSubscription
|
||||||
|
from app.proton.utils import get_proton_partner
|
||||||
|
from app.utils import random_string
|
||||||
|
from tests.utils import random_email
|
||||||
|
|
||||||
|
partner_user_id: int = 0
|
||||||
|
|
||||||
|
|
||||||
|
def setup_module():
|
||||||
|
global partner_user_id
|
||||||
|
email = random_email()
|
||||||
|
external_id = random_string()
|
||||||
|
sl_user = User.create(email, commit=True)
|
||||||
|
partner_user_id = PartnerUser.create(
|
||||||
|
user_id=sl_user.id,
|
||||||
|
partner_id=get_proton_partner().id,
|
||||||
|
external_user_id=external_id,
|
||||||
|
partner_email=email,
|
||||||
|
commit=True,
|
||||||
|
).id
|
||||||
|
|
||||||
|
|
||||||
|
def setup_function(func):
|
||||||
|
Session.query(PartnerSubscription).delete()
|
||||||
|
|
||||||
|
|
||||||
|
def test_free_plan_removes_sub():
|
||||||
|
pu = PartnerUser.get(partner_user_id)
|
||||||
|
sub_id = PartnerSubscription.create(
|
||||||
|
partner_user_id=partner_user_id,
|
||||||
|
end_at=arrow.utcnow(),
|
||||||
|
lifetime=False,
|
||||||
|
commit=True,
|
||||||
|
).id
|
||||||
|
set_plan_for_partner_user(pu, plan=SLPlan(type=SLPlanType.Free, expiration=None))
|
||||||
|
assert PartnerSubscription.get(sub_id) is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_premium_plan_updates_expiration():
|
||||||
|
pu = PartnerUser.get(partner_user_id)
|
||||||
|
sub_id = PartnerSubscription.create(
|
||||||
|
partner_user_id=partner_user_id,
|
||||||
|
end_at=arrow.utcnow(),
|
||||||
|
lifetime=False,
|
||||||
|
commit=True,
|
||||||
|
).id
|
||||||
|
new_expiration = arrow.utcnow().shift(days=+10)
|
||||||
|
set_plan_for_partner_user(
|
||||||
|
pu, plan=SLPlan(type=SLPlanType.Premium, expiration=new_expiration)
|
||||||
|
)
|
||||||
|
assert PartnerSubscription.get(sub_id).end_at == new_expiration
|
||||||
|
|
||||||
|
|
||||||
|
def test_premium_plan_creates_sub():
|
||||||
|
pu = PartnerUser.get(partner_user_id)
|
||||||
|
new_expiration = arrow.utcnow().shift(days=+10)
|
||||||
|
set_plan_for_partner_user(
|
||||||
|
pu, plan=SLPlan(type=SLPlanType.Premium, expiration=new_expiration)
|
||||||
|
)
|
||||||
|
assert (
|
||||||
|
PartnerSubscription.get_by(partner_user_id=partner_user_id).end_at
|
||||||
|
== new_expiration
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_lifetime_creates_sub():
|
||||||
|
pu = PartnerUser.get(partner_user_id)
|
||||||
|
new_expiration = arrow.utcnow().shift(days=+10)
|
||||||
|
set_plan_for_partner_user(
|
||||||
|
pu, plan=SLPlan(type=SLPlanType.PremiumLifetime, expiration=new_expiration)
|
||||||
|
)
|
||||||
|
sub = PartnerSubscription.get_by(partner_user_id=partner_user_id)
|
||||||
|
assert sub is not None
|
||||||
|
assert sub.end_at is None
|
||||||
|
assert sub.lifetime
|
||||||
|
|
||||||
|
|
||||||
|
def test_lifetime_updates_sub():
|
||||||
|
pu = PartnerUser.get(partner_user_id)
|
||||||
|
sub_id = PartnerSubscription.create(
|
||||||
|
partner_user_id=partner_user_id,
|
||||||
|
end_at=arrow.utcnow(),
|
||||||
|
lifetime=False,
|
||||||
|
commit=True,
|
||||||
|
).id
|
||||||
|
set_plan_for_partner_user(
|
||||||
|
pu, plan=SLPlan(type=SLPlanType.PremiumLifetime, expiration=arrow.utcnow())
|
||||||
|
)
|
||||||
|
sub = PartnerSubscription.get(sub_id)
|
||||||
|
assert sub is not None
|
||||||
|
assert sub.end_at is None
|
||||||
|
assert sub.lifetime
|
@ -144,6 +144,21 @@ def test_login_case_from_web():
|
|||||||
assert audit_logs[0].action == UserAuditLogAction.LinkAccount.value
|
assert audit_logs[0].action == UserAuditLogAction.LinkAccount.value
|
||||||
|
|
||||||
|
|
||||||
|
def test_new_user_strategy_create_missing_link():
|
||||||
|
email = random_email()
|
||||||
|
user = User.create(email, commit=True)
|
||||||
|
nus = NewUserStrategy(
|
||||||
|
link_request=random_link_request(
|
||||||
|
email=user.email, external_user_id=random_string(), from_partner=False
|
||||||
|
),
|
||||||
|
user=None,
|
||||||
|
partner=get_proton_partner(),
|
||||||
|
)
|
||||||
|
result = nus.create_missing_link(user.email)
|
||||||
|
assert result.user.id == user.id
|
||||||
|
assert result.strategy == ExistingUnlinkedUserStrategy.__name__
|
||||||
|
|
||||||
|
|
||||||
def test_get_strategy_existing_sl_user():
|
def test_get_strategy_existing_sl_user():
|
||||||
email = random_email()
|
email = random_email()
|
||||||
user = User.create(email, commit=True)
|
user = User.create(email, commit=True)
|
||||||
|
@ -135,7 +135,7 @@ def test_create_contact_free_user():
|
|||||||
assert result.contact is not None
|
assert result.contact is not None
|
||||||
assert not result.contact.automatic_created
|
assert not result.contact.automatic_created
|
||||||
# Free users with the flag should be able to still create automatic emails
|
# Free users with the flag should be able to still create automatic emails
|
||||||
user.flags = User.FLAG_DISABLE_CREATE_CONTACTS
|
user.flags = User.FLAG_FREE_DISABLE_CREATE_CONTACTS
|
||||||
Session.flush()
|
Session.flush()
|
||||||
result = create_contact(random_email(), alias, automatic_created=True)
|
result = create_contact(random_email(), alias, automatic_created=True)
|
||||||
assert result.error is None
|
assert result.error is None
|
||||||
|
159
app/tests/test_coupon_utils.py
Normal file
159
app/tests/test_coupon_utils.py
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
import arrow
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from app.coupon_utils import (
|
||||||
|
redeem_coupon,
|
||||||
|
CouponUserCannotRedeemError,
|
||||||
|
redeem_lifetime_coupon,
|
||||||
|
)
|
||||||
|
from app.models import (
|
||||||
|
Coupon,
|
||||||
|
Subscription,
|
||||||
|
ManualSubscription,
|
||||||
|
AppleSubscription,
|
||||||
|
CoinbaseSubscription,
|
||||||
|
LifetimeCoupon,
|
||||||
|
User,
|
||||||
|
)
|
||||||
|
from tests.utils import create_new_user, random_string
|
||||||
|
|
||||||
|
|
||||||
|
def test_use_coupon():
|
||||||
|
user = create_new_user()
|
||||||
|
code = random_string(10)
|
||||||
|
Coupon.create(code=code, nb_year=1, commit=True)
|
||||||
|
|
||||||
|
coupon = redeem_coupon(code, user)
|
||||||
|
assert coupon
|
||||||
|
|
||||||
|
coupon = Coupon.get_by(code=code)
|
||||||
|
assert coupon
|
||||||
|
assert coupon.used
|
||||||
|
assert coupon.used_by_user_id == user.id
|
||||||
|
|
||||||
|
sub = user.get_active_subscription()
|
||||||
|
assert isinstance(sub, ManualSubscription)
|
||||||
|
left = sub.end_at - arrow.utcnow()
|
||||||
|
assert left.days > 364
|
||||||
|
|
||||||
|
|
||||||
|
def test_use_coupon_extend_manual_sub():
|
||||||
|
user = create_new_user()
|
||||||
|
initial_end = arrow.now().shift(days=15)
|
||||||
|
ManualSubscription.create(
|
||||||
|
user_id=user.id,
|
||||||
|
end_at=initial_end,
|
||||||
|
flush=True,
|
||||||
|
)
|
||||||
|
code = random_string(10)
|
||||||
|
Coupon.create(code=code, nb_year=1, commit=True)
|
||||||
|
|
||||||
|
coupon = redeem_coupon(code, user)
|
||||||
|
assert coupon
|
||||||
|
|
||||||
|
coupon = Coupon.get_by(code=code)
|
||||||
|
assert coupon
|
||||||
|
assert coupon.used
|
||||||
|
assert coupon.used_by_user_id == user.id
|
||||||
|
|
||||||
|
sub = user.get_active_subscription()
|
||||||
|
assert isinstance(sub, ManualSubscription)
|
||||||
|
left = sub.end_at - initial_end
|
||||||
|
assert left.days > 364
|
||||||
|
|
||||||
|
|
||||||
|
def test_coupon_with_subscription():
|
||||||
|
user = create_new_user()
|
||||||
|
end_at = arrow.utcnow().shift(days=1).replace(hour=0, minute=0, second=0)
|
||||||
|
Subscription.create(
|
||||||
|
user_id=user.id,
|
||||||
|
cancel_url="",
|
||||||
|
update_url="",
|
||||||
|
subscription_id=random_string(10),
|
||||||
|
event_time=arrow.now(),
|
||||||
|
next_bill_date=end_at.date(),
|
||||||
|
plan="yearly",
|
||||||
|
flush=True,
|
||||||
|
)
|
||||||
|
with pytest.raises(CouponUserCannotRedeemError):
|
||||||
|
redeem_coupon("", user)
|
||||||
|
|
||||||
|
|
||||||
|
def test_webhook_with_apple_subscription():
|
||||||
|
user = create_new_user()
|
||||||
|
end_at = arrow.utcnow().shift(days=2).replace(hour=0, minute=0, second=0)
|
||||||
|
AppleSubscription.create(
|
||||||
|
user_id=user.id,
|
||||||
|
receipt_data=arrow.now().date().strftime("%Y-%m-%d"),
|
||||||
|
expires_date=end_at.date().strftime("%Y-%m-%d"),
|
||||||
|
original_transaction_id=random_string(10),
|
||||||
|
plan="yearly",
|
||||||
|
product_id="",
|
||||||
|
flush=True,
|
||||||
|
)
|
||||||
|
with pytest.raises(CouponUserCannotRedeemError):
|
||||||
|
redeem_coupon("", user)
|
||||||
|
|
||||||
|
|
||||||
|
def test_webhook_with_coinbase_subscription():
|
||||||
|
user = create_new_user()
|
||||||
|
end_at = arrow.utcnow().shift(days=3).replace(hour=0, minute=0, second=0)
|
||||||
|
CoinbaseSubscription.create(
|
||||||
|
user_id=user.id, end_at=end_at.date().strftime("%Y-%m-%d"), flush=True
|
||||||
|
)
|
||||||
|
|
||||||
|
with pytest.raises(CouponUserCannotRedeemError):
|
||||||
|
redeem_coupon("", user)
|
||||||
|
|
||||||
|
|
||||||
|
def test_expired_coupon():
|
||||||
|
user = create_new_user()
|
||||||
|
code = random_string(10)
|
||||||
|
Coupon.create(
|
||||||
|
code=code, nb_year=1, commit=True, expires_date=arrow.utcnow().shift(days=-1)
|
||||||
|
)
|
||||||
|
|
||||||
|
coupon = redeem_coupon(code, user)
|
||||||
|
assert coupon is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_used_coupon():
|
||||||
|
user = create_new_user()
|
||||||
|
code = random_string(10)
|
||||||
|
Coupon.create(code=code, nb_year=1, commit=True, used=True)
|
||||||
|
coupon = redeem_coupon(code, user)
|
||||||
|
assert coupon is None
|
||||||
|
|
||||||
|
|
||||||
|
# Lifetime
|
||||||
|
def test_lifetime_coupon():
|
||||||
|
user = create_new_user()
|
||||||
|
code = random_string(10)
|
||||||
|
LifetimeCoupon.create(code=code, nb_used=1)
|
||||||
|
coupon = redeem_lifetime_coupon(code, user)
|
||||||
|
assert coupon
|
||||||
|
user = User.get(user.id)
|
||||||
|
assert user.lifetime
|
||||||
|
assert not user.paid_lifetime
|
||||||
|
|
||||||
|
|
||||||
|
def test_lifetime_paid_coupon():
|
||||||
|
user = create_new_user()
|
||||||
|
code = random_string(10)
|
||||||
|
LifetimeCoupon.create(code=code, nb_used=1, paid=True)
|
||||||
|
coupon = redeem_lifetime_coupon(code, user)
|
||||||
|
assert coupon
|
||||||
|
user = User.get(user.id)
|
||||||
|
assert user.lifetime
|
||||||
|
assert user.paid_lifetime
|
||||||
|
|
||||||
|
|
||||||
|
def test_used_lifetime_coupon():
|
||||||
|
user = create_new_user()
|
||||||
|
code = random_string(10)
|
||||||
|
LifetimeCoupon.create(code=code, nb_used=0, paid=True)
|
||||||
|
coupon = redeem_lifetime_coupon(code, user)
|
||||||
|
assert coupon is None
|
||||||
|
user = User.get(user.id)
|
||||||
|
assert not user.lifetime
|
||||||
|
assert not user.paid_lifetime
|
@ -2,6 +2,7 @@ import random
|
|||||||
from email.message import EmailMessage
|
from email.message import EmailMessage
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
|
import arrow
|
||||||
import pytest
|
import pytest
|
||||||
from aiosmtpd.smtp import Envelope
|
from aiosmtpd.smtp import Envelope
|
||||||
|
|
||||||
@ -14,7 +15,6 @@ from app.email_utils import generate_verp_email
|
|||||||
from app.mail_sender import mail_sender
|
from app.mail_sender import mail_sender
|
||||||
from app.models import (
|
from app.models import (
|
||||||
Alias,
|
Alias,
|
||||||
AuthorizedAddress,
|
|
||||||
IgnoredEmail,
|
IgnoredEmail,
|
||||||
EmailLog,
|
EmailLog,
|
||||||
Notification,
|
Notification,
|
||||||
@ -24,35 +24,12 @@ from app.models import (
|
|||||||
)
|
)
|
||||||
from app.utils import random_string, canonicalize_email
|
from app.utils import random_string, canonicalize_email
|
||||||
from email_handler import (
|
from email_handler import (
|
||||||
get_mailbox_from_mail_from,
|
|
||||||
should_ignore,
|
should_ignore,
|
||||||
is_automatic_out_of_office,
|
is_automatic_out_of_office,
|
||||||
)
|
)
|
||||||
from tests.utils import load_eml_file, create_new_user, random_email
|
from tests.utils import load_eml_file, create_new_user, random_email
|
||||||
|
|
||||||
|
|
||||||
def test_get_mailbox_from_mail_from(flask_client):
|
|
||||||
user = create_new_user()
|
|
||||||
alias = Alias.create_new_random(user)
|
|
||||||
Session.commit()
|
|
||||||
|
|
||||||
mb = get_mailbox_from_mail_from(user.email, alias)
|
|
||||||
assert mb.email == user.email
|
|
||||||
|
|
||||||
mb = get_mailbox_from_mail_from("unauthorized@gmail.com", alias)
|
|
||||||
assert mb is None
|
|
||||||
|
|
||||||
# authorized address
|
|
||||||
AuthorizedAddress.create(
|
|
||||||
user_id=user.id,
|
|
||||||
mailbox_id=user.default_mailbox_id,
|
|
||||||
email="unauthorized@gmail.com",
|
|
||||||
commit=True,
|
|
||||||
)
|
|
||||||
mb = get_mailbox_from_mail_from("unauthorized@gmail.com", alias)
|
|
||||||
assert mb.email == user.email
|
|
||||||
|
|
||||||
|
|
||||||
def test_should_ignore(flask_client):
|
def test_should_ignore(flask_client):
|
||||||
assert should_ignore("mail_from", []) is False
|
assert should_ignore("mail_from", []) is False
|
||||||
|
|
||||||
@ -411,3 +388,15 @@ def test_preserve_headers(flask_client):
|
|||||||
msg = sent_mails[0].msg
|
msg = sent_mails[0].msg
|
||||||
for header in headers_to_keep:
|
for header in headers_to_keep:
|
||||||
assert msg[header] == header + "keep"
|
assert msg[header] == header + "keep"
|
||||||
|
|
||||||
|
|
||||||
|
def test_not_send_to_pending_to_delete_users(flask_client):
|
||||||
|
user = create_new_user()
|
||||||
|
alias = Alias.create_new_random(user)
|
||||||
|
user.delete_on = arrow.utcnow()
|
||||||
|
envelope = Envelope()
|
||||||
|
envelope.mail_from = "somewhere@lo.cal"
|
||||||
|
envelope.rcpt_tos = [alias.email]
|
||||||
|
msg = EmailMessage()
|
||||||
|
result = email_handler.handle(envelope, msg)
|
||||||
|
assert result == status.E504
|
||||||
|
@ -791,12 +791,21 @@ def test_parse_id_from_bounce():
|
|||||||
assert parse_id_from_bounce("anything+1234+@local") == 1234
|
assert parse_id_from_bounce("anything+1234+@local") == 1234
|
||||||
|
|
||||||
|
|
||||||
def test_get_queue_id():
|
def test_get_queue_id_esmtps():
|
||||||
|
for id_type in ["SMTP", "ESMTP", "ESMTPA", "ESMTPS"]:
|
||||||
|
msg = email.message_from_string(
|
||||||
|
f"Received: from mail-wr1-x434.google.com (mail-wr1-x434.google.com [IPv6:2a00:1450:4864:20::434])\r\n\t(using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits))\r\n\t(No client certificate requested)\r\n\tby mx1.simplelogin.co (Postfix) with {id_type} id 4FxQmw1DXdz2vK2\r\n\tfor <jglfdjgld@alias.com>; Fri, 4 Jun 2021 14:55:43 +0000 (UTC)"
|
||||||
|
)
|
||||||
|
|
||||||
|
assert get_queue_id(msg) == "4FxQmw1DXdz2vK2", f"Failed for {id_type}"
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_queue_id_postfix():
|
||||||
msg = email.message_from_string(
|
msg = email.message_from_string(
|
||||||
"Received: from mail-wr1-x434.google.com (mail-wr1-x434.google.com [IPv6:2a00:1450:4864:20::434])\r\n\t(using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits))\r\n\t(No client certificate requested)\r\n\tby mx1.simplelogin.co (Postfix) with ESMTPS id 4FxQmw1DXdz2vK2\r\n\tfor <jglfdjgld@alias.com>; Fri, 4 Jun 2021 14:55:43 +0000 (UTC)"
|
"Received: by mailin001.somewhere.net (Postfix)\r\n\tid 4Xz5pb2nMszGrqpL; Wed, 27 Nov 2024 17:21:59 +0000 (UTC)'] by mailin001.somewhere.net (Postfix)"
|
||||||
)
|
)
|
||||||
|
|
||||||
assert get_queue_id(msg) == "4FxQmw1DXdz2vK2"
|
assert get_queue_id(msg) == "4Xz5pb2nMszGrqpL"
|
||||||
|
|
||||||
|
|
||||||
def test_get_queue_id_from_double_header():
|
def test_get_queue_id_from_double_header():
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import re
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
import arrow
|
import arrow
|
||||||
@ -6,9 +7,22 @@ import pytest
|
|||||||
from app import mailbox_utils, config
|
from app import mailbox_utils, config
|
||||||
from app.db import Session
|
from app.db import Session
|
||||||
from app.mail_sender import mail_sender
|
from app.mail_sender import mail_sender
|
||||||
from app.mailbox_utils import MailboxEmailChangeError
|
from app.mailbox_utils import (
|
||||||
from app.models import Mailbox, MailboxActivation, User, Job, UserAuditLog
|
MailboxEmailChangeError,
|
||||||
|
get_mailbox_for_reply_phase,
|
||||||
|
request_mailbox_email_change,
|
||||||
|
)
|
||||||
|
from app.models import (
|
||||||
|
Mailbox,
|
||||||
|
MailboxActivation,
|
||||||
|
User,
|
||||||
|
Job,
|
||||||
|
UserAuditLog,
|
||||||
|
Alias,
|
||||||
|
AuthorizedAddress,
|
||||||
|
)
|
||||||
from app.user_audit_log_utils import UserAuditLogAction
|
from app.user_audit_log_utils import UserAuditLogAction
|
||||||
|
from app.utils import random_string, canonicalize_email
|
||||||
from tests.utils import create_new_user, random_email
|
from tests.utils import create_new_user, random_email
|
||||||
|
|
||||||
|
|
||||||
@ -50,6 +64,14 @@ def test_already_used():
|
|||||||
mailbox_utils.create_mailbox(user, user.email)
|
mailbox_utils.create_mailbox(user, user.email)
|
||||||
|
|
||||||
|
|
||||||
|
def test_already_used_with_different_case():
|
||||||
|
user.lifetime = True
|
||||||
|
email = random_email()
|
||||||
|
mailbox_utils.create_mailbox(user, email)
|
||||||
|
with pytest.raises(mailbox_utils.MailboxError):
|
||||||
|
mailbox_utils.create_mailbox(user, email.upper())
|
||||||
|
|
||||||
|
|
||||||
@mail_sender.store_emails_test_decorator
|
@mail_sender.store_emails_test_decorator
|
||||||
def test_create_mailbox():
|
def test_create_mailbox():
|
||||||
email = random_email()
|
email = random_email()
|
||||||
@ -344,6 +366,24 @@ def test_verify_ok():
|
|||||||
assert mailbox.verified
|
assert mailbox.verified
|
||||||
|
|
||||||
|
|
||||||
|
@mail_sender.store_emails_test_decorator
|
||||||
|
def test_verify_ok_for_mailbox_email_change():
|
||||||
|
out_create = mailbox_utils.create_mailbox(user, random_email(), verified=True)
|
||||||
|
mailbox_id = out_create.mailbox.id
|
||||||
|
new_email = f"new{out_create.mailbox.email}"
|
||||||
|
out_change = mailbox_utils.request_mailbox_email_change(
|
||||||
|
user, out_create.mailbox, new_email
|
||||||
|
)
|
||||||
|
assert out_change.activation.code is not None
|
||||||
|
mailbox_utils.verify_mailbox_code(user, mailbox_id, out_change.activation.code)
|
||||||
|
activation = MailboxActivation.get_by(mailbox_id=out_create.mailbox.id)
|
||||||
|
assert activation is None
|
||||||
|
mailbox = Mailbox.get(id=out_create.mailbox.id)
|
||||||
|
assert mailbox.verified
|
||||||
|
assert mailbox.email == new_email
|
||||||
|
assert mailbox.new_email is None
|
||||||
|
|
||||||
|
|
||||||
# perform_mailbox_email_change
|
# perform_mailbox_email_change
|
||||||
def test_perform_mailbox_email_change_invalid_id():
|
def test_perform_mailbox_email_change_invalid_id():
|
||||||
res = mailbox_utils.perform_mailbox_email_change(99999)
|
res = mailbox_utils.perform_mailbox_email_change(99999)
|
||||||
@ -418,3 +458,143 @@ def test_perform_mailbox_email_change_success():
|
|||||||
user_id=user.id, action=UserAuditLogAction.UpdateMailbox.value
|
user_id=user.id, action=UserAuditLogAction.UpdateMailbox.value
|
||||||
).count()
|
).count()
|
||||||
assert audit_log_entries == 1
|
assert audit_log_entries == 1
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_mailbox_from_mail_from(flask_client):
|
||||||
|
user = create_new_user()
|
||||||
|
alias = Alias.create_new_random(user)
|
||||||
|
Session.commit()
|
||||||
|
|
||||||
|
mb = get_mailbox_for_reply_phase(user.email, "", alias)
|
||||||
|
assert mb.email == user.email
|
||||||
|
|
||||||
|
mb = get_mailbox_for_reply_phase("unauthorized@gmail.com", "", alias)
|
||||||
|
assert mb is None
|
||||||
|
|
||||||
|
# authorized address
|
||||||
|
AuthorizedAddress.create(
|
||||||
|
user_id=user.id,
|
||||||
|
mailbox_id=user.default_mailbox_id,
|
||||||
|
email="unauthorized@gmail.com",
|
||||||
|
commit=True,
|
||||||
|
)
|
||||||
|
mb = get_mailbox_for_reply_phase("unauthorized@gmail.com", "", alias)
|
||||||
|
assert mb.email == user.email
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_mailbox_from_mail_from_for_canonical_email(flask_client):
|
||||||
|
prefix = random_string(10)
|
||||||
|
email = f"{prefix}+subaddresxs@gmail.com"
|
||||||
|
canonical_email = canonicalize_email(email)
|
||||||
|
assert canonical_email != email
|
||||||
|
|
||||||
|
user = create_new_user()
|
||||||
|
mbox = Mailbox.create(
|
||||||
|
email=canonical_email, user_id=user.id, verified=True, flush=True
|
||||||
|
)
|
||||||
|
alias = Alias.create(user_id=user.id, email=random_email(), mailbox_id=mbox.id)
|
||||||
|
Session.flush()
|
||||||
|
|
||||||
|
mb = get_mailbox_for_reply_phase(email, "", alias)
|
||||||
|
assert mb.email == canonical_email
|
||||||
|
|
||||||
|
mb = get_mailbox_for_reply_phase(canonical_email, "", alias)
|
||||||
|
assert mb.email == canonical_email
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_mailbox_from_mail_from_coming_from_header_if_domain_is_aligned(
|
||||||
|
flask_client,
|
||||||
|
):
|
||||||
|
domain = f"{random_string(10)}.com"
|
||||||
|
envelope_from = f"envelope_verp@{domain}"
|
||||||
|
mail_from = f"mail_from@{domain}"
|
||||||
|
user = create_new_user()
|
||||||
|
mbox = Mailbox.create(email=mail_from, user_id=user.id, verified=True, flush=True)
|
||||||
|
alias = Alias.create(user_id=user.id, email=random_email(), mailbox_id=mbox.id)
|
||||||
|
Session.flush()
|
||||||
|
|
||||||
|
mb = get_mailbox_for_reply_phase(envelope_from, mail_from, alias)
|
||||||
|
assert mb.email == mail_from
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_mailbox_from_mail_from_coming_from_header_if_domain_is_not_aligned(
|
||||||
|
flask_client,
|
||||||
|
):
|
||||||
|
domain = f"{random_string(10)}.com"
|
||||||
|
envelope_from = f"envelope_verp@{domain}"
|
||||||
|
mail_from = f"mail_from@other_{domain}"
|
||||||
|
user = create_new_user()
|
||||||
|
mbox = Mailbox.create(email=mail_from, user_id=user.id, verified=True, flush=True)
|
||||||
|
alias = Alias.create(user_id=user.id, email=random_email(), mailbox_id=mbox.id)
|
||||||
|
Session.flush()
|
||||||
|
|
||||||
|
mb = get_mailbox_for_reply_phase(envelope_from, mail_from, alias)
|
||||||
|
assert mb is None
|
||||||
|
|
||||||
|
|
||||||
|
@mail_sender.store_emails_test_decorator
|
||||||
|
def test_change_mailbox_address(flask_client):
|
||||||
|
user = create_new_user()
|
||||||
|
domain = f"{random_string(10)}.com"
|
||||||
|
mail1 = f"mail_1@{domain}"
|
||||||
|
mbox = Mailbox.create(email=mail1, user_id=user.id, verified=True, flush=True)
|
||||||
|
mail2 = f"mail_2@{domain}"
|
||||||
|
out = request_mailbox_email_change(user, mbox, mail2)
|
||||||
|
changed_mailbox = Mailbox.get(mbox.id)
|
||||||
|
assert changed_mailbox.new_email == mail2
|
||||||
|
assert out.activation.mailbox_id == changed_mailbox.id
|
||||||
|
assert re.match("^[0-9]+$", out.activation.code) is None
|
||||||
|
assert 1 == len(mail_sender.get_stored_emails())
|
||||||
|
mail_sent = mail_sender.get_stored_emails()[0]
|
||||||
|
mail_contents = str(mail_sent.msg)
|
||||||
|
assert mail_contents.find(config.URL) > 0
|
||||||
|
assert mail_contents.find(out.activation.code) > 0
|
||||||
|
assert mail_sent.envelope_to == mail2
|
||||||
|
|
||||||
|
|
||||||
|
@mail_sender.store_emails_test_decorator
|
||||||
|
def test_change_mailbox_address_without_verification_email(flask_client):
|
||||||
|
user = create_new_user()
|
||||||
|
domain = f"{random_string(10)}.com"
|
||||||
|
mail1 = f"mail_1@{domain}"
|
||||||
|
mbox = Mailbox.create(email=mail1, user_id=user.id, verified=True, flush=True)
|
||||||
|
mail2 = f"mail_2@{domain}"
|
||||||
|
out = request_mailbox_email_change(user, mbox, mail2, send_email=False)
|
||||||
|
changed_mailbox = Mailbox.get(mbox.id)
|
||||||
|
assert changed_mailbox.new_email == mail2
|
||||||
|
assert out.activation.mailbox_id == changed_mailbox.id
|
||||||
|
assert re.match("^[0-9]+$", out.activation.code) is None
|
||||||
|
assert 0 == len(mail_sender.get_stored_emails())
|
||||||
|
|
||||||
|
|
||||||
|
@mail_sender.store_emails_test_decorator
|
||||||
|
def test_change_mailbox_address_with_code(flask_client):
|
||||||
|
user = create_new_user()
|
||||||
|
domain = f"{random_string(10)}.com"
|
||||||
|
mail1 = f"mail_1@{domain}"
|
||||||
|
mbox = Mailbox.create(email=mail1, user_id=user.id, verified=True, flush=True)
|
||||||
|
mail2 = f"mail_2@{domain}"
|
||||||
|
out = request_mailbox_email_change(user, mbox, mail2, use_digit_codes=True)
|
||||||
|
changed_mailbox = Mailbox.get(mbox.id)
|
||||||
|
assert changed_mailbox.new_email == mail2
|
||||||
|
assert out.activation.mailbox_id == changed_mailbox.id
|
||||||
|
assert re.match("^[0-9]+$", out.activation.code) is not None
|
||||||
|
assert 1 == len(mail_sender.get_stored_emails())
|
||||||
|
mail_sent = mail_sender.get_stored_emails()[0]
|
||||||
|
mail_contents = str(mail_sent.msg)
|
||||||
|
assert mail_contents.find(config.URL) > 0
|
||||||
|
assert mail_contents.find(out.activation.code) > 0
|
||||||
|
assert mail_sent.envelope_to == mail2
|
||||||
|
|
||||||
|
|
||||||
|
def test_change_mailbox_verified_address(flask_client):
|
||||||
|
user = create_new_user()
|
||||||
|
domain = f"{random_string(10)}.com"
|
||||||
|
mail1 = f"mail_1@{domain}"
|
||||||
|
mbox = Mailbox.create(email=mail1, user_id=user.id, verified=True, flush=True)
|
||||||
|
mail2 = f"mail_2@{domain}"
|
||||||
|
out = request_mailbox_email_change(user, mbox, mail2, email_ownership_verified=True)
|
||||||
|
changed_mailbox = Mailbox.get(mbox.id)
|
||||||
|
assert changed_mailbox.email == mail2
|
||||||
|
assert out.activation is None
|
||||||
|
assert 0 == len(mail_sender.get_stored_emails())
|
||||||
|
2481
app/uv.lock
generated
Normal file
2481
app/uv.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user