app-MAIL-temp/static/assets/images/payments/westernunion.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
7.1 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>WesternUnion-light</title><desc>Created with Sketch.</desc><g id="Light-Payment-badges" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-610.000000, -489.000000)"><g id="WesternUnion-light" transform="translate(610.000000, 489.000000)"><rect id="Rectangle" fill="#FFF" x="0" y="0" width="100" height="60" rx="4"/><path d="M35.4618318,21.0046905 C33.1246537,21.0046905 31.7908761,21.9503998 31.7908715,23.6122377 C31.7908715,24.6424374 32.2220683,25.3882833 33.451544,25.7536312 L35.6949086,26.4091599 C35.9944124,26.4977291 36.2339035,26.6637963 36.2338988,26.9627174 C36.2338988,27.3175769 35.9274028,27.618246 35.4618318,27.618246 C35.1629107,27.618246 34.9723611,27.5110306 34.8500051,27.3560345 C34.7282224,27.1899673 34.6751974,26.9656308 34.6751974,26.7442078 L31.6451984,26.7442078 C31.6451984,28.8267494 33.4177385,29.4245915 35.3452933,29.4245915 C37.6049734,29.4245915 39.1910706,28.6029957 39.1910613,26.6422367 C39.1910613,25.6784639 38.756373,24.9652488 37.7488983,24.5445451 C36.9401217,24.2013394 35.8236882,23.978751 35.2141876,23.8016126 C34.8814704,23.7019723 34.6897647,23.5796069 34.6897647,23.291757 C34.6897647,23.047609 34.9082882,22.8256034 35.4181299,22.8256034 C35.8277624,22.8256034 36.1063032,22.9969148 36.1173604,23.4956993 L38.9579845,23.4956993 C38.9579845,21.6345807 37.4558042,21.0046905 35.4618318,21.0046905 L35.4618318,21.0046905 Z M79.1346057,21.0629597 L79.1346057,38.8205019 L80.1397496,38.8205019 L80.1397496,21.0629597 L79.1346057,21.0629597 L79.1346057,21.0629597 Z M89.2588811,21.1212289 C88.6680313,21.1212289 88.1808961,21.5996191 88.1809007,22.184642 C88.1809007,22.7754918 88.668036,23.2480551 89.2588811,23.2480551 C89.8468175,23.2480551 90.3222849,22.7754918 90.3222942,22.184642 C90.3222942,21.5996191 89.8468221,21.1212289 89.2588811,21.1212289 L89.2588811,21.1212289 Z M9.67770576,21.2232 L11.4112148,29.2206493 L14.8490983,29.2206493 L15.5920307,24.0346895 L15.606598,24.0346895 L16.3495305,29.2206493 L19.7874139,29.2206493 L21.520923,21.2232 L18.6802989,21.2232 L18.010203,26.2489195 L17.9810684,26.2489195 L17.2381359,21.2232 L13.9604928,21.2232 L13.2175603,26.2489195 L13.202993,26.2489195 L12.5183298,21.2232 L9.67770576,21.2232 L9.67770576,21.2232 Z M23.4583742,21.2232 L23.4583742,29.2206493 L29.6349106,29.2206493 L29.6349106,27.137525 L26.4883732,27.137525 L26.4883732,26.2343522 L29.2998627,26.2343522 L29.2998627,24.1512279 L26.4883732,24.1512279 L26.4883732,23.3063243 L29.5329395,23.3063243 L29.5329395,21.2232 L23.4583742,21.2232 L23.4583742,21.2232 Z M40.9974068,21.2232 L40.9974068,23.3645936 L42.97856,23.3645936 L42.97856,29.2206493 L46.1396647,29.2206493 L46.1396647,23.3645936 L48.1208179,23.3645936 L48.1208179,21.2232 L40.9974068,21.2232 L40.9974068,21.2232 Z M50.2622115,21.2232 L50.2622115,29.2206493 L56.4533152,29.2206493 L56.4533152,27.137525 L53.3067777,27.137525 L53.3067777,26.2343522 L56.1182672,26.2343522 L56.1182672,24.1512279 L53.3067777,24.1512279 L53.3067777,23.3063243 L56.351344,23.3063243 L56.351344,21.2232 L50.2622115,21.2232 L50.2622115,21.2232 Z M58.7986509,21.2232 L58.7986509,29.2206493 L61.9014864,29.2206493 L61.9014864,26.3654579 L62.265669,26.3654579 C62.7749419,26.3654579 62.9713091,26.520454 63.037736,26.9190155 C63.1484475,27.6060095 63.242853,28.6222245 63.4310532,29.2206493 L66.5338887,29.2206493 C66.1685408,28.0127285 66.2011622,26.8770616 66.0240331,26.1906503 C65.869037,25.5811544 65.4442405,25.237366 64.669274,25.1709391 L64.669274,25.1563718 C65.8655409,24.8679392 66.2571146,24.1675433 66.25711,23.2480551 C66.25711,21.7412133 65.2502227,21.2232 63.5330243,21.2232 L58.7986509,21.2232 L58.7986509,21.2232 Z M68.7481187,21.2232 L68.7481187,29.2206493 L71.311964,29.2206493 L71.311964,24.3406028 L71.3410987,24.3406028 L73.0309058,29.2206493 L76.8329718,29.2206493 L76.8329718,21.2232 L74.2545592,21.2232 L74.2545592,26.0595446 L74.2400152,26.0595446 L72.5502081,21.2232 L68.7481421,21.2232 L68.7481187,21.2232 Z M86.3017187,21.2232 L86.3017187,38.7913673 L87.3068626,38.7913673 L87.3068626,21.2232 L86.3017187,21.2232 L86.3017187,21.2232 Z M89.2588811,21.2523346 C89.7763117,21.2523346 90.1475006,21.6672114 90.1474866,22.184642 C90.1474866,22.7078995 89.7763164,23.1023821 89.2588811,23.1023821 C88.7385371,23.1023821 88.3556944,22.7078995 88.3557084,22.184642 C88.3557084,21.6672114 88.7385417,21.2523346 89.2588811,21.2523346 L89.2588811,21.2523346 Z M88.865564,21.5873826 L88.865564,22.7819014 L89.011237,22.7819014 L89.011237,22.2283439 L89.2734484,22.2283439 L89.6084964,22.7819014 L89.783304,22.7819014 L89.4336888,22.2283439 C89.6446233,22.222517 89.7978807,22.1415228 89.7978713,21.9078633 C89.7978713,21.711496 89.6906513,21.5873826 89.3754196,21.5873826 L88.865564,21.5873826 L88.865564,21.5873826 Z M89.011237,21.6893537 L89.346285,21.6893537 C89.4925407,21.6893537 89.6376263,21.7079999 89.637631,21.893296 C89.637631,22.1356959 89.3981446,22.1118055 89.2297465,22.1118055 L89.011237,22.1118055 L89.011237,21.6893537 L89.011237,21.6893537 Z M61.9014864,23.0441129 L62.1928325,23.0441129 C62.8133996,23.0441129 63.212539,23.1565725 63.2125437,23.7433434 C63.2125437,24.3417682 62.7731938,24.5591124 62.1636979,24.5591124 L61.9014864,24.5591124 L61.9014864,23.0441129 L61.9014864,23.0441129 Z M62.2219671,30.5754085 C59.4635026,30.5754085 58.0848531,32.2931848 58.0848531,34.785359 C58.0848531,37.2781158 59.4634933,38.9953095 62.2219671,38.9953095 C64.9804315,38.9953095 66.3445231,37.2781158 66.3445138,34.785359 C66.3445138,32.2931848 64.9804222,30.5754085 62.2219671,30.5754085 L62.2219671,30.5754085 Z M31.52866,30.7793507 L31.52866,36.0964162 C31.52866,38.0239617 32.9154812,38.9953095 35.330726,38.9953095 C37.7454022,38.9953095 39.1327921,38.0239617 39.1327921,36.0964162 L39.1327921,30.7793507 L35.9571201,30.7793507 L35.9571201,35.9653105 C35.9571201,36.5963661 35.6628745,36.8393487 35.330726,36.8393487 C34.9985915,36.8393487 34.7043367,36.5963661 34.704332,35.9653105 L34.704332,30.7793507 L31.52866,30.7793507 L31.52866,30.7793507 Z M41.7549066,30.7793507 L41.7549066,38.7768 L44.3333192,38.7768 L44.3333192,33.9113208 L44.3478865,33.9113208 L46.0376936,38.7768 L49.8397597,38.7768 L49.8397597,30.7793507 L47.2759144,30.7793507 L47.2759144,35.6302625 L47.2467798,35.6302625 L45.5569726,30.7793507 L41.7549066,30.7793507 L41.7549066,30.7793507 Z M52.5201434,30.7793507 L52.5201434,38.7768 L55.6958154,38.7768 L55.6958154,30.7793507 L52.5201434,30.7793507 L52.5201434,30.7793507 Z M68.7481187,30.7793507 L68.7481187,38.7768 L71.311964,38.7768 L71.311964,33.9113208 L71.3410987,33.9113208 L73.0309058,38.7768 L76.8329718,38.7768 L76.8329718,30.7793507 L74.2545592,30.7793507 L74.2545592,35.6302625 L74.2400152,35.6302625 L72.5502081,30.7793507 L68.7481421,30.7793507 L68.7481187,30.7793507 Z M62.2219671,32.6585328 C62.7318227,32.6585328 63.06688,32.9801788 63.0668706,34.785359 C63.0668706,36.6354064 62.7090884,36.9121805 62.2219671,36.9121852 C61.7348365,36.9121852 61.3624962,36.6354064 61.3624962,34.785359 C61.3624962,32.9801788 61.7126848,32.6585328 62.2219671,32.6585328 L62.2219671,32.6585328 Z" id="path6" fill="#000"/></g></g></svg>