app-MAIL-temp/static/assets/images/payments/paybox-dark.svg
Son NK c18d9f5280 create BaseForm to enable CSRF
register page

redirect user to dashboard if they are logged in

enable csrf for login page

Set models more strict

bootstrap developer page

add helper method to ModelMixin, remove CRUDMixin

display list of clients on developer index, add copy client-secret to clipboard using clipboardjs

add toastr and use jquery non slim

display a toast when user copies the client-secret

create new client, generate client-id using unidecode

client detail page: can edit client

add delete client

implement /oauth/authorize and /oauth/allow-deny

implement /oauth/token

add /oauth/user_info endpoint

handle scopes: wip

take into account scope: display scope, return user data according to scope

create virtual-domain, gen email, client_user model WIP

create authorize_nonlogin_user page

user can choose to generate a new email

no need to interfere with root logger

log for before and after request

if user has already allowed a client: generate a auth-code and redirect user to client

get_user_info takes into account gen email

display list of clients that have user has authorised

use yk-client domain instead of localhost as cookie depends on the domain name

use wtforms instead of flask_wtf

Dockerfile

delete virtual domain

EMAIL_DOMAIN can come from env var

bind to host 0.0.0.0

fix signup error: use session as default csrf_context

rename yourkey to simplelogin

add python-dotenv, ipython, sqlalchemy_utils

create DB_URI, FLASK_SECRET. Load config from CONFIG file if exist

add shortcuts to logging

create shell

add psycopg2

do not add local data in Dockerfile

add drop_db into shell

add shell.prepare_db()

fix prepare_db

setup sentry

copy assets from tabler/dist

add icon downloaded from https://commons.wikimedia.org/wiki/File:Simpleicons_Interface_key-tool-1.svg

integrate tabler - login and register page

add favicon

template: default, header. Use gravatar for user avatar url

use default template for dashboard, developer page

use another icon

add clipboard and notie

prettify dashboard

add notie css

add fake gen email and client-user

prettify list client page, use notie for toast

add email, name scope to new client

display client scope in client list

prettify new-client, client-detail

add sentry-sdk and blinker

add arrow, add dt jinja filter, prettify logout, dashboard

comment "last used" in dashboard for now

prettify date display

add copy email to clipboard to dashboard

use "users" as table name for User as "user" is reserved key in postgres

call prepare_db() when creating new db

error page 400, 401, 403, 404

prettify authorize_login_user

create already_authorize.html for user who has already authorized a client

user can generate new email

display all other generated emails

add ENV variable, only reset DB when ENV=local

fix: not return other users gen emails

display nb users for each client

refactor shell: remove prepare_db()

add sendgrid

add /favicon.ico route

add new config: URL, SUPPORT_EMAIL, SENDGRID_API_KEY

user needs to activate their account before login

create copy button on dashboard

client can have multiple redirect uris, in client detail can add/remove redirect-uri,

use redirect_uri passed in /authorize

refactor: move get_user_info into ClientUser model

dashboard: display all apps, all generated emails

add "id" into user_info

add trigger email button

invalidate the session at each new version by changing the secret

centralize Client creation into Client.create_new

user can enable/disable email forwarding

setup auto dismiss alert: just add .alert-auto-dismiss

move name down in register form

add shell.add_real_data

move blueprint template to its own package

prettify authorize page for non-authenticated user

update readme, return error if not redirect_uri

add flask-wtf, use psycopg2-binary

use flask-wtf FlaskForm instead of Form

rename email -> email_utils

add AWS_REGION, BUCKET, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY to config

add s3 module

add File model, add Client.icon_id

handle client icon update

can create client with icon

display client icon in client list page

add Client.home_url

take into account Client.home_url

add boto3

register: ask name first

only show "trigger test email" if email forwarding is enabled

display gen email in alphabetical order, client in client.name alphabetical order

better error page

the modal does not get close when user clicks outside of modal

add Client.published column

discover page that displays all published Client

add missing bootstrap.bundle.min.js.map

developer can publish/unpublish their app in discover

use notie for display flash message

create hotmail account

fix missing jquery

add footer, add global jinja2 variable

strengthen model: use nullable=False whenever possible,

rename client_id to oauth_client_id, client_secret to oauth_client_secret

add flask-migrate

init migrate

1st migrate version

fix rename client_id -> oauth_client_id

prettify UI

use flask_migrate.upgrade() instead of db.create_all()

make sure requirejs.config is called for all page

enable sentry for js, use uppercase for global jinja2 variables

add flask-admin

add User.is_admin column

setup flask admin, only accessible to admin user

fix migration: add server_default

replace session[redirect_after_login] by "next" request args

add pyproject.toml: ignore migrations/ in black

add register waiting_activation_email page

better email wording

add pytest

add get_host_name_and_scheme and tests

example fail test

fix test

fix client-id display

add flask-cors

/user_info supports cors, add /me as /user_info synonym

return client in /me

support implicit flow

no need to use with "app.app_context()"

add watchtower to requirement

add param ENABLE_CLOUDWATCH, CLOUDWATCH_LOG_GROUP, CLOUDWATCH_LOG_STREAM

add cloudwatch logger if cloudwatch is enabled

add 500 error page

add help text for list of used client

display list of app/website that an email has been used

click on client name brings to client detail page

create style.css to add additional style, append its url with the current sha1 to avoid cache

POC on how to send email using postfix

add sqlalchemy-utils

use arrow instead of datetime

add new params STRIPE_API, STRIPE_YEARLY_SKU, STRIPE_MONTHLY_PLAN

show full error in local

add plan, plan_expiration to User, need to create enum directly in migration script, cf https://github.com/sqlalchemy/alembic/issues/67

reformat all html files: use space instead of tab

new user will have trial plan for 15 days

add new param MAX_NB_EMAIL_FREE_PLAN

only user with enough quota can create new email

if user cannot create new gen email, pick randomly one from existing gen emails. Use flush instead of commit

rename STRIPE_YEARLY_SKU -> STRIPE_YEARLY_PLAN

open client page in discover in a new tab

add stripe

not logging /static call: disable flask logging, replace by after_request

add param STRIPE_SECRET_KEY

add 3 columns stripe_customer_id, stripe_card_token, stripe_subscription_id

user can upgrade their pricing

add setting page as coming-soon

add GenEmail, ClientUser to admin

ignore /admin/static logging

add more fake data

add ondelete="cascade" whenever possible

rename plan_expiration -> trial_expiration

reset migration: delete old migrations, create new one

rename test_send_email -> poc_send_email to avoid the file being called by pytest

add new param LYRA_ANALYTICS_ID, add lyra analytics

add how to create new migration into readme

add drift to base.html

notify admin when new user signs up or pays subscription

log exception in case of 500

use sendgrid to notify admin

add alias /userinfo to user_info endpoint

add change_password to shell

add info on how payment is handled

invite user to retry if card not working

remove drift and add "contact us" link

move poc_send_email into poc/

support getting client-id, client-secret from form-data in addition to basic auth

client-id, client-secret is passed in form-data by passport-oauth2 for ex

add jwtRS256 private and public key

add jwk-jws-jwt poc

add new param OPENID_PRIVATE_KEY_PATH, OPENID_PRIVATE_KEY_PATH

add scope, redirect_url to AuthorizationCode and OauthToken

take into scope when creating oauth-token, authorization-code

add jwcrypto

add jose_utils: make_id_token and verify_id_token

add &scope to redirect uri

add "email_verified": True into user_info

fix user not activated

add /oauth2 as alias for /oauth

handle case where scope and state are empty

remove threaded=False

Use Email Alias as wording

remove help text

user can re-send activation email

add "expired" into ActivationCode

Handle the case activation code is expired

reformat: use form.validate_on_submit instead of request.method == post && form.validate

use error text instead of flash()

display client oauth-id and oauth-secret on client detail page

not display oauth-secret on client listing

fix expiration check

improve page title, footer

add /jwks and /.well-known/openid-configuration

init properly tests, fix blueprint conflict bug in flask-admin

create oauth_models module

rename Scope -> ScopeE to distinguish with Scope DB model

set app.url_map.strict_slashes = False

use ScopeE instead of SCOPE_NAME, ...

support access_token passed as args in /userinfo

merge /allow-deny into /authorize

improve wording

take into account the case response_type=code and openid is in scope

take into account response_type=id_token, id_token token, id_token code

make sure to use in-memory db in test

fix scope can be null

allow cross_origin for /.well-known/openid-configuration and /jwks

fix footer link

center authorize form

rename trial_expiration to plan_expiration

move stripe init to create_app()

use real email to be able to receive email notification

add user.profile_picture_id column

use user profile picture and fallback to gravatar

use nguyenkims+local@gm to distinguish with staging

handle plan cancel, reactivation, user profile update

fix can_create_new_email

create cron.py that set plan to free when expired

add crontab.yml

add yacron

use notify_admin instead of LOG.error

add ResetPasswordCode model

user can change password in setting

increase display time for notie

add forgot_password page

If login error: redirect to this page upon success login.

hide discover tab

add column user.is_developer

only show developer menu to developer

comment out the publish button

set local user to developer

make sure only developer can access /developer blueprint

User is invited to upgrade if they are in free plan or their trial ends soon

not sending email when in local mode

create Partner model

create become partner page

use normal error handling on local

fix migration

add "import sqlalchemy_utils" into migration template

small refactoring on setting page

handle promo code. TODO: add migration file

add migration for user.promo_codes

move email alias on top of apps in dashboard

add introjs

move encode_url to utils

create GenEmail.create_new_gen_email

create a first alias mail to show user how to use when they login

show intro when user visits the website the first time

fix register
2019-07-02 10:20:12 +03:00

1 line
5.2 KiB
XML
Executable File

<svg width="100" height="60" viewBox="0 0 100 60" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Paybox-dark</title><desc>Created with Sketch.</desc><g id="Dark-Payment-badges" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-770.000000, -1289.000000)"><g id="Paybox-dark" transform="translate(770.000000, 1289.000000)"><rect id="Rectangle" fill="#005992" x="0" y="0" width="100" height="60" rx="4"/><path d="M17.1343797,19.5598579 L15.7399638,19.5598579 L15.7399638,26.7240804 L17.1343797,26.7240804 C19.622986,26.7240804 21.4534569,25.7730492 21.4534569,23.02598 C21.4534569,20.3673974 19.4500907,19.5598579 17.1343797,19.5598579 M17.2788657,28.6341145 L15.7399638,28.6341145 L15.7399638,36.2343924 L13.6257935,36.2343924 L13.6257935,17.6498238 L17.0246774,17.6498238 C20.6515438,17.6498238 23.5333944,18.9213198 23.5333944,23.02598 C23.5333944,26.8699636 20.8506449,28.6341145 17.2788657,28.6341145" id="Fill-7" fill="#FFF"/><path d="M31.4659596,31.2265315 C30.8655085,30.360001 29.4387485,29.7812511 28.5809612,29.7812511 C26.9606088,29.7812511 25.6755018,30.5011012 25.6755018,32.3242431 C25.6755018,33.8564158 26.9267695,34.6958423 28.3582513,34.6958423 C29.4387485,34.6958423 31.4659596,33.7105326 31.4659596,32.4693292 L31.4659596,31.2265315 L31.4659596,31.2265315 Z M32.1529764,36.0510419 C31.9223969,36.0510419 31.8932794,35.7632613 31.8932794,35.7632613 L31.6099735,34.9533302 C30.6687683,35.9099417 29.5536448,36.4281062 28.2142374,36.4281062 C25.8179417,36.4281062 23.5333944,35.0410196 23.5333944,32.382437 C23.5333944,29.55007 25.6180536,28.0760912 28.3000162,28.0760912 C29.4678661,28.0760912 30.5507242,28.450764 31.4659596,29.1753972 L31.4659596,27.6990269 C31.4659596,25.8232713 30.1493741,25.0420386 28.4369474,25.0420386 C26.4120971,25.0420386 25.1907339,25.8527668 25.1907339,25.8527668 L24.8177145,24.7534608 C25.9005726,23.8869303 27.2958541,23.3344872 28.6698878,23.3344872 C31.3502764,23.3344872 33.5451102,24.6362759 33.5451102,27.5850307 L33.5451102,36.0510419 L32.1529764,36.0510419 L32.1529764,36.0510419 Z" id="Fill-8" fill="#FFF"/><path d="M36.521396,23.6334283 L39.2844155,31.2592158 C39.5999868,32.1105999 39.9163451,33.124608 40.1264636,33.8970718 L40.17919,33.8970718 C40.4168522,33.124608 40.6789101,32.1377039 40.9960554,31.2050078 L43.5221996,23.6334283 L45.9696478,23.6334283 L42.4952158,32.8312472 C40.8370893,37.2571694 39.7054396,39.5235414 38.1267961,40.9361376 C36.9683898,41.9230417 35.8627098,42.322427 35.2835066,42.4284514 L34.7050904,40.4570347 C35.2835066,40.2960051 36.0468587,39.9237238 36.7315146,39.3098981 C37.3634441,38.8028941 38.1267961,37.8965047 38.6792427,36.6959574 C38.7846954,36.4568045 38.8633915,36.2957749 38.8633915,36.1371369 C38.8633915,36.0032113 38.8098782,35.8166721 38.6792427,35.5504152 L33.9944648,23.6334283 L36.521396,23.6334283" id="Fill-9" fill="#FFF"/><path d="M49.2984922,30.9523029 C49.2984922,31.3142209 49.3283967,31.6251196 49.4165363,31.9368155 C49.885565,33.6204516 51.1061412,34.6575779 52.8374551,34.6575779 C55.5965398,34.6575779 57.0351042,32.5578158 57.0351042,29.9925028 C57.0351042,27.247028 55.4501651,25.1743699 52.77922,25.1743699 C50.8425094,25.1743699 49.7974254,26.3669454 49.4165363,27.7907021 C49.3283967,28.1016008 49.2984922,28.464316 49.2984922,28.7760119 L49.2984922,30.9523029 L49.2984922,30.9523029 Z M49.2984922,17.8164336 L49.2984922,25.2780028 L49.3575143,25.2780028 C49.9744915,24.2934902 51.0770237,23.3863037 53.2773662,23.3863037 C56.7132372,23.3863037 59.3109949,25.9253098 59.2826643,30.1224425 C59.2826643,33.9313504 56.9760821,36.4958662 53.542572,36.4958662 C51.2241854,36.4958662 49.885565,35.4340275 49.0930954,34.0349833 L49.0348603,34.0349833 L48.9176031,36.2112743 L47.031258,36.2112743 C47.1201846,35.3559042 47.1493021,34.0987574 47.1493021,32.9858994 L47.1493021,17.8164336 L49.2984922,17.8164336 L49.2984922,17.8164336 Z" id="Fill-10" fill="#FFF"/><path d="M66.6919006,35.1884972 C69.2747061,35.1884972 70.7353054,32.7794308 70.7353054,29.8769122 C70.7353054,27.3363117 69.4242286,24.6809178 66.7100007,24.6809178 C63.9949858,24.6809178 62.6477089,27.2414477 62.6477089,30.0100407 C62.6477089,32.7029018 64.1075212,35.1884972 66.6722266,35.1884972 L66.6919006,35.1884972 L66.6919006,35.1884972 Z M66.6171393,36.5341306 C63.2646862,36.5341306 60.5780019,33.916204 60.5780019,30.0483051 C60.5780019,25.9898811 63.4142087,23.3344872 66.784762,23.3344872 C70.2481766,23.3344872 72.8412126,26.0082162 72.8412126,29.8011805 C72.8412126,34.1824609 69.8365961,36.5341306 66.6352394,36.5341306 L66.6171393,36.5341306 L66.6171393,36.5341306 Z" id="Fill-11" fill="#FFF"/><path d="M75.9662341,23.6334283 L77.7337481,26.3318697 C78.1949072,27.0317904 78.5789441,27.6806918 78.9889507,28.3814097 L79.0652859,28.3814097 C79.4760794,27.6288754 79.8852991,26.9807711 80.2945187,26.3055629 L82.03685,23.6334283 L84.4701329,23.6334283 L80.2433662,29.7047222 L84.5984075,36.1913449 L82.03685,36.1913449 L80.2181835,33.3637609 C79.7318417,32.6367362 79.3218351,31.9368155 78.8858588,31.183484 L78.8354933,31.183484 C78.4254867,31.9368155 77.9902974,32.6112266 77.5283513,33.3637609 L75.7356546,36.1913449 L73.2512192,36.1913449 L77.6574129,29.7828454 L73.455829,23.6334283 L75.9662341,23.6334283" id="Fill-12" fill="#FFF"/></g></g></svg>