app-MAIL-temp/static/assets/images/payments/shopify.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
8.3 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>Shopify-light</title><desc>Created with Sketch.</desc><g id="Light-Payment-badges" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-130.000000, -589.000000)"><g id="Shopify-light" transform="translate(130.000000, 589.000000)"><rect id="Rectangle" fill="#FFF" x="0" y="0" width="100" height="60" rx="4"/><path d="M20.6979286,19.78375 C20.8154911,19.78375 20.9339018,19.8241406 21.0472232,19.9032031 C20.1744107,20.3193125 19.2388304,21.3674062 18.8437321,23.4603281 C18.2662679,23.6414844 17.7018661,23.8185156 17.1800446,23.9823125 C17.6428304,22.3859375 18.7417768,19.78375 20.6979286,19.78375 L20.6979286,19.78375 Z M21.507125,20.5597656 C21.6745625,20.9849844 21.7834732,21.5951406 21.7834732,22.4185937 C21.7834732,22.4607031 21.7831339,22.4992031 21.7827946,22.5382187 C21.1198304,22.7461875 20.3998661,22.9720312 19.6780357,23.1985625 C20.0833125,21.613875 20.8429732,20.8485156 21.507125,20.5597656 L21.507125,20.5597656 Z M23.5162054,21.99475 C23.2137321,22.089625 22.8698661,22.1973906 22.4971607,22.3142656 C22.4975,22.2415625 22.4976696,22.1698906 22.4976696,22.0916875 C22.4976696,21.4093437 22.4043661,20.8600312 22.2542321,20.4245 C22.8568036,20.5011562 23.2580089,21.1955312 23.5162054,21.99475 L23.5162054,21.99475 Z M28.4073482,23.2093906 C28.3927589,23.1017969 28.2997946,23.0423281 28.2229464,23.0357969 C28.1462679,23.0292656 26.523125,22.9074062 26.523125,22.9074062 C26.523125,22.9074062 25.3958482,21.7735469 25.2721786,21.6480781 C25.1483393,21.5227812 24.9065982,21.5607656 24.8127857,21.5887812 C24.798875,21.5929062 24.5664643,21.6656094 24.1818839,21.7860937 C23.8052768,20.6883281 23.1407857,19.6794219 21.9716071,19.6794219 C21.939375,19.6794219 21.906125,19.6807969 21.872875,19.6826875 C21.540375,19.2371875 21.1284821,19.0436562 20.7727411,19.0436562 C18.0492946,19.0436562 16.7481339,22.4930156 16.3401429,24.2459687 C15.2819107,24.5782031 14.5300536,24.8143594 14.4340357,24.8449531 C13.8431696,25.0326406 13.8246786,25.0515469 13.7471518,25.6154687 C13.688625,26.0424062 12.1430089,38.1527187 12.1430089,38.1527187 L24.1868036,40.439 L30.712625,39.0086562 C30.712625,39.0086562 28.4217679,23.3169844 28.4073482,23.2093906 L28.4073482,23.2093906 Z" id="Fill-3" fill="#8CB849"/><path d="M28.2229464,23.0357969 C28.1462679,23.0292656 26.523125,22.9074063 26.523125,22.9074063 C26.523125,22.9074063 25.3958482,21.7735469 25.2721786,21.64825 C25.2258661,21.6013281 25.1634375,21.5774375 25.098125,21.567125 L24.1874821,40.4388281 L30.712625,39.0086563 C30.712625,39.0086563 28.4217679,23.3171563 28.4073482,23.2093906 C28.3927589,23.1017969 28.2997946,23.0423281 28.2229464,23.0357969" id="Fill-4" fill="#5A873E"/><path d="M21.9716071,26.689 L21.1669911,29.1139844 C21.1669911,29.1139844 20.4619554,28.7327656 19.5977946,28.7327656 C18.3309018,28.7327656 18.2671161,29.5383437 18.2671161,29.7413281 C18.2671161,30.8488906 21.1166071,31.27325 21.1166071,33.8675312 C21.1166071,35.9085469 19.8390268,37.222875 18.1161339,37.222875 C16.0485268,37.222875 14.9914821,35.9192031 14.9914821,35.9192031 L15.5450268,34.0662187 C15.5450268,34.0662187 16.6317589,35.0115312 17.5488482,35.0115312 C18.1478571,35.0115312 18.3918036,34.5335469 18.3918036,34.1842969 C18.3918036,32.7395156 16.0539554,32.6750625 16.0539554,30.301125 C16.0539554,28.3030781 17.4692857,26.3694844 20.32675,26.3694844 C21.4277321,26.3694844 21.9716071,26.689 21.9716071,26.689" id="Fill-5" fill="#FFFFFE"/><path d="M38.3199196,31.2350938 C37.6691696,30.87725 37.3344643,30.5757813 37.3344643,30.1612188 C37.3344643,29.6337344 37.7992857,29.294625 38.5245089,29.294625 C39.3691607,29.294625 40.1235625,29.6526406 40.1235625,29.6526406 L40.7186696,27.8063594 C40.7186696,27.8063594 40.1715714,27.3730625 38.5616607,27.3730625 C36.3210179,27.3730625 34.7682768,28.6729531 34.7682768,30.5005 C34.7682768,31.5365625 35.4935,32.327875 36.4604643,32.893 C37.2415,33.3450313 37.5203929,33.6654063 37.5203929,34.1365156 C37.5203929,34.6263594 37.129875,35.0218438 36.4046518,35.0218438 C35.3243661,35.0218438 34.3034554,34.4567188 34.3034554,34.4567188 L33.6711964,36.303 C33.6711964,36.303 34.6139018,36.9434063 36.2000625,36.9434063 C38.5060179,36.9434063 40.1608839,35.79425 40.1608839,33.7219531 C40.1608839,32.6104375 39.3240357,31.819125 38.3199196,31.2350938" id="Fill-6" fill="#000"/><path d="M47.5057411,27.3541562 C46.3715089,27.3541562 45.4790179,27.9005469 44.7909464,28.7295 L44.7537946,28.7105937 L45.73925,23.492125 L43.1732321,23.492125 L40.6815179,36.7739375 L43.2475357,36.7739375 L44.1030446,32.2336875 C44.43775,30.5192344 45.3115804,29.4642656 46.1297679,29.4642656 C46.7062143,29.4642656 46.9294643,29.85975 46.9294643,30.4250469 C46.9294643,30.7828906 46.8921429,31.2161875 46.8178393,31.5742031 L45.850875,36.7739375 L48.4170625,36.7739375 L49.4210089,31.4047344 C49.5326339,30.8394375 49.6071071,30.1612187 49.6071071,29.7091875 C49.6071071,28.2396562 48.8445625,27.3541562 47.5057411,27.3541562" id="Fill-7" fill="#000"/><path d="M54.144375,34.9652969 C53.270375,34.9652969 52.8985179,34.2117969 52.8985179,33.2699219 C52.8985179,31.7814844 53.6608929,29.3511719 55.0555268,29.3511719 C55.9665089,29.3511719 56.2640625,30.1424844 56.2640625,30.9148906 C56.2640625,32.51625 55.5016875,34.9652969 54.144375,34.9652969 L54.144375,34.9652969 Z M55.4087232,27.3541562 C52.3220714,27.3541562 50.2766875,30.180125 50.2766875,33.3262969 C50.2766875,35.3422187 51.5038839,36.9623125 53.8096696,36.9623125 C56.8405089,36.9623125 58.8858929,34.2117969 58.8858929,30.9901719 C58.8858929,29.1251562 57.8074732,27.3541562 55.4087232,27.3541562 L55.4087232,27.3541562 Z" id="Fill-8" fill="#000"/><path d="M62.9956607,35.0029375 C62.3293036,35.0029375 61.9357321,34.6263594 61.9357321,34.6263594 L62.3634018,32.195875 C62.6609554,30.5757812 63.4976339,29.5019062 64.3902946,29.5019062 C65.1711607,29.5019062 65.4129018,30.2366719 65.4129018,30.933625 C65.4129018,32.6104375 64.4274464,35.0029375 62.9956607,35.0029375 L62.9956607,35.0029375 Z M65.4502232,27.3541562 C63.7183393,27.3541562 62.7352589,28.8989687 62.7352589,28.8989687 L62.6981071,28.8989687 L62.8468839,27.5048906 L60.5784196,27.5048906 C60.4667946,28.4469375 60.2622054,29.8786562 60.0576161,30.9525312 L58.2724643,40.4665 L60.8386518,40.4665 L61.5452143,36.6232031 L61.6010268,36.6232031 C61.6010268,36.6232031 62.1279375,36.9623125 63.1072857,36.9623125 C66.1196339,36.9623125 68.0905446,33.8350469 68.0905446,30.6699687 C68.0905446,28.917875 67.3281696,27.3541562 65.4502232,27.3541562 L65.4502232,27.3541562 Z" id="Fill-9" fill="#000"/><path d="M71.7539821,23.6239531 C70.9359643,23.6239531 70.2850446,24.2832656 70.2850446,25.131125 C70.2850446,25.9035313 70.7685268,26.4311875 71.49375,26.4311875 L71.5309018,26.4311875 C72.3304286,26.4311875 73.0185,25.884625 73.0371607,24.9240156 C73.0371607,24.1703438 72.5350179,23.6239531 71.7539821,23.6239531" id="Fill-10" fill="#000"/><polyline id="Fill-11" fill="#000" points="68.1651875 36.7739375 70.731375 36.7739375 72.4792054 27.5614375 69.8945268 27.5614375 68.1651875 36.7739375"/><path d="M79.005875,27.5425313 L77.2207232,27.5425313 L77.3136875,27.1092344 C77.4624643,26.2239063 77.9830982,25.4325938 78.8386071,25.4325938 C79.2952857,25.4325938 79.656625,25.5644219 79.656625,25.5644219 L80.1587679,23.5297656 C80.1587679,23.5297656 79.7124375,23.30375 78.7641339,23.30375 C77.8529821,23.30375 76.9418304,23.5675781 76.2537589,24.1703438 C75.3799286,24.9240156 74.97075,26.016625 74.7663304,27.1092344 L74.6918571,27.5425313 L73.5018125,27.5425313 L73.1299554,29.5019063 L74.32,29.5019063 L72.9625179,36.7739375 L75.5285357,36.7739375 L76.8860179,29.5019063 L78.6525089,29.5019063 L79.005875,27.5425313" id="Fill-12" fill="#000"/><path d="M85.1793482,27.5614375 C85.1793482,27.5614375 83.575375,31.6563594 82.8550714,33.8915938 L82.8179196,33.8915938 C82.7685536,33.1719531 82.1856607,27.5614375 82.1856607,27.5614375 L79.4893571,27.5614375 L81.0327679,36.0204375 C81.0699196,36.2086406 81.0514286,36.3217344 80.9769554,36.4537344 C80.6794018,37.0377656 80.1774286,37.6028906 79.5823214,38.0172813 C79.0990089,38.3752969 78.5597143,38.6013125 78.1320446,38.7520469 L78.8386071,40.9563438 C79.3592411,40.84325 80.4378304,40.4099531 81.3488125,39.5433594 C82.5203661,38.4318438 83.5987857,36.7173906 84.7145268,34.3812656 L87.8569911,27.5614375 L85.1793482,27.5614375" id="Fill-13" fill="#000"/></g></g></svg>