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 09:20:12 +02:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480"><defs><clipPath id="a"><path fill-opacity=".67" d="M-84.949 0h682.67v512h-682.67z"/></clipPath></defs><g clip-path="url(#a)" fill-rule="evenodd" transform="translate(79.64) scale(.9375)"><path fill="#be0027" d="M-128 0h768.77v512H-128z"/><path d="M105.45 261.14c13.658-16.61 41.95-.399 65.045-12.359-27.358 1.504-42.27-13.129-63.884-11.078 22.395-13.757 41.461 4.5 66.502-2.839-33.165-2.79-31.727-17.615-61.884-19.72 26.788-11.426 40.036 11.75 66.276 6.479-30.927-7.14-35.045-25.356-58.039-29.212 33.608-5.073 31.417 14.794 64.364 17.22-33.441-14.345-24.676-26.797-52.645-37.723 31.297-.74 29.222 20.95 60.93 26.64-27.144-17.22-23.791-32.935-46.149-45.232 26.524.48 29.114 27.629 56.184 36.04-24.148-19.16-17.797-35.313-38.664-52.423 26.383 6.188 22.542 29.61 50.019 44.552-20.363-22.615-12.55-38.805-30.314-57.318 25.374 8.172 15.735 30.432 42.065 51.595-15.094-24.855-5.775-40.707-20.629-61.677 23.559 12.166 12.151 34.872 34.023 57.558-10.295-25.508.015-41.352-10.507-63.941 20.152 15.057 8.166 39.323 24.422 62.472-5.926-31.92 7.841-37.17 3.557-65.124 15.306 18.79-1.802 37.58 9.949 65.26-1.43-31.476 15.294-38.795 12.394-64.067 15.169 22.645-8.507 42.353 1.395 66.605 2.56-29.864 22.185-37.597 22.49-60.836 11.933 21.332-14.111 36.672-9.884 64.955 8.57-31.196 29.476-35.051 31.943-56.025 7.235 24.678-21.265 36.15-19.598 63.5 8.489-27.735 34.62-30.988 39.962-51.475 3.297 26.107-22.4 30.742-29.635 59.585 13.512-23.54 37.143-25.471 47.783-44.09-.835 25.816-29.844 29.2-38.748 53.373 16.725-20.51 37.691-16.95 54.415-35.135-1.765 23.299-31.293 21.982-47.009 46.104 18.136-16.732 45.435-11.718 59.33-26.125-.674 20.608-36.908 19.059-53.996 37.479 21.075-11.545 47.757-4.764 63.225-15.487-2.826 18.068-41.076 13.845-59.356 27.946 25.211-6.985 44.677 3.81 65.102-3.995-9.94 17.587-44.634 6.455-63.054 17.888 21.88-3.705 45.126 9.55 65.091 5.297-6.562 15.201-44.58-.918-65.09 8.538 24.51-.215 40.402 15.434 63.133 14.4-12.363 13.762-45.788-5.163-65.262-1.93 23.76 4.914 41.911 24.601 59.926 25.55-14.784 11.351-42.423-14.498-64.864-11.216 23.105 6.185 42.516 32.472 55.774 33.048-14.284 9.762-42.517-22.464-61.86-21.319 23.495 10.62 34.271 37.515 49.697 41.296-19.099 6.128-37.868-29.217-58.39-30.442 23.771 14.993 25.114 37.918 43.417 48.124-19.257 4.708-32.964-35.167-53.259-38.532 19.49 14.327 22.428 44.931 35.351 54.608-19.607 1.036-26.692-40.714-46.787-46.678 17.216 14.38 13.094 45.58 26.48 58.863-20.426-4.19-17.793-40.538-39.118-52.778 15.32 19.32 7.527 46.846 17.512 62.337-19.87-8.038-11.24-40.568-30.21-58.99 10.348 20.582-.774 44.586 7.387 64.486-18.153-8.854-5.944-47.384-19.856-62.666 6.395 23.786-5.4 43.47-.646 64.794-18.559-21.526 2.817-43.189-13.281-65.125 4.273 25.177-13.336 42.697-10.567 63.771-14.716-17.19 7.905-44.774-3.528-66.478 2.462 24.754-20.276 46.44-18.715 62.03-11.978-19.968 13.298-43.583 6.53-66.286-1.425 23.572-24.37 36.382-28.691 57.856-7.713-23.689 19.564-40.812 17.209-64.09-7.811 22.144-29.982 31.023-37.793 52.484-6.395-23.623 25.914-36.167 26.768-61.02-9.987 23.308-36.522 28.426-45.28 46.264-3.269-23.5 33.808-34.007 35.188-56.275-11.936 21.382-40.97 22.25-50.991 39.254-1.52-23.416 37.582-26.316 43.72-50.825-11.882 18.278-43.734 15.907-56.986 30.767 2.09-21.722 44.388-23.066 51.129-42.6-15.723 15.168-44.963 8.882-61.426 20.913 9.163-21.335 48.838-16.812 57.808-32.267-17.564 9.164-48.68.28-63.997 9.444 13.92-20.206 44.803-8.135 62.28-22.05-28.428 4.143-45.506-7.17-65.182-1.933z" fill="#ff0"/><path d="M355.939 256.111c0 54.8-44.424 99.223-99.223 99.223-54.8 0-99.222-44.424-99.222-99.223 0-54.8 44.424-99.222 99.222-99.222 54.8 0 99.223 44.423 99.223 99.222z" fill="#ff0"/><path d="M343.17 256.307c0 47.644-38.623 86.265-86.265 86.265-47.643 0-86.264-38.622-86.264-86.265s38.622-86.264 86.264-86.264c47.644 0 86.265 38.622 86.265 86.264z" fill="#be0027"/><path d="M331.156 256.487c0 40.911-33.164 74.075-74.074 74.075-40.911 0-74.075-33.165-74.075-74.075 0-40.91 33.165-74.075 74.075-74.075 40.91 0 74.074 33.165 74.074 74.075z" fill="#ff0"/><path d="M194.04
|