mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
c18d9f5280
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
1 line
6.5 KiB
XML
Executable File
1 line
6.5 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>PayU-dark</title><desc>Created with Sketch.</desc><g id="Dark-Payment-badges" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-450.000000, -1289.000000)"><g id="PayU-dark" transform="translate(450.000000, 1289.000000)"><rect id="Rectangle" fill="#95BF3E" x="0" y="0" width="100" height="60" rx="4"/><path d="M72.7713548,25.8312095 C72.3666427,25.8309941 72.0386084,25.5029597 72.0388238,25.0982477 L72.0399007,21.8599048 L71.7698055,21.8599048 C70.0945258,21.8599048 69.4714113,22.1364617 69.4714113,23.6624782 L69.4714113,27.2333785 C69.4711959,27.2409171 69.4703344,27.2484556 69.4703344,27.2559942 L69.4703344,28.0387103 C69.4699036,28.0658491 69.4681805,28.0910494 69.4681805,28.1190497 L69.4681805,33.108273 C69.4681805,33.7178181 69.3507946,34.2030849 69.1082689,34.5800121 C68.6516486,35.2836813 67.7472387,35.6037463 66.3002692,35.6056848 C64.8539458,35.6037463 63.9497514,35.2838967 63.4929157,34.5808736 C63.2501746,34.2037311 63.1325733,33.7182489 63.1325733,33.108273 L63.1325733,28.1190497 C63.1325733,28.0910494 63.1308502,28.0658491 63.1304194,28.0387103 L63.1304194,27.2559942 C63.1304194,27.2484556 63.1293425,27.2409171 63.1291271,27.2333785 L63.1291271,23.6624782 C63.1291271,22.1364617 62.506228,21.8599048 60.8309483,21.8599048 L60.3034657,21.8599048 C58.6279706,21.8599048 58.0050715,22.1364617 58.0050715,23.6624782 L58.0050715,33.108273 C58.0050715,34.627828 58.3477521,35.9145497 59.0098516,36.9514224 C60.288604,38.9611981 62.7657693,40.0316713 66.287346,40.0316713 C66.2918691,40.0316713 66.2959615,40.0314559 66.3002692,40.0314559 C66.3047923,40.0314559 66.3088847,40.0316713 66.3134078,40.0316713 C69.8349845,40.0316713 72.3119344,38.9611981 73.5909022,36.9514224 C74.2530017,35.9145497 74.5956823,34.627828 74.5956823,33.108273 L74.5956823,25.8318556 L72.7713548,25.8312095" id="Fill-1" fill="#FFF"/><path d="M80.5164542,20.6132451 L77.761009,20.6121682 C77.4603288,20.6121682 77.2167261,20.3683502 77.2169415,20.0678854 L77.2178031,17.2781936 C77.2180184,16.9775134 77.4616211,16.7339107 77.7623013,16.7341261 L80.5179619,16.7349877 C80.8184267,16.7352031 81.0620294,16.9788057 81.061814,17.2794859 L81.0609525,20.0691777 C81.0607371,20.3696425 80.8171344,20.6132451 80.5164542,20.6132451" id="Fill-3" fill="#FFF"/><path d="M76.8445375,16.7343415 L74.9730402,16.7336954 C74.7688534,16.7336954 74.6034362,16.5680628 74.6034362,16.363876 L74.6040824,14.4691169 C74.6042978,14.2651455 74.769715,14.0997283 74.9739018,14.0997283 L76.845399,14.1003745 C77.0495858,14.1003745 77.215003,14.266007 77.215003,14.4701939 L77.2143569,16.3649529 C77.2141415,16.5689243 77.0487243,16.7343415 76.8445375,16.7343415" id="Fill-4" fill="#FFF"/><path d="M29.4647925,27.6070749 C29.4647925,29.8486069 28.8925094,31.0631739 25.8732151,31.0631739 L21.2255954,31.0631739 L21.2255954,25.2783112 C21.2255954,24.4762101 21.5239064,24.1778992 22.3260074,24.1778992 L25.8732151,24.1778992 C28.1479167,24.1778992 29.4647925,24.7389822 29.4647925,27.6070749 L29.4647925,27.6070749 Z M25.8732151,21.856674 L21.8655101,21.856674 C19.7239176,21.856674 18.7688919,22.8116998 18.7688919,24.9532922 L18.7688919,38.7091954 C18.7688919,39.5364967 19.034464,39.8020688 19.8617653,39.8020688 L20.132722,39.8020688 C20.9600233,39.8020688 21.2255954,39.5364967 21.2255954,38.7091954 L21.2255954,33.3574758 L25.8732151,33.3574758 C29.9995983,33.3574758 31.9214961,31.5301328 31.9214961,27.6070749 C31.9214961,23.6838015 29.9995983,21.856674 25.8732151,21.856674 L25.8732151,21.856674 Z" id="Fill-5" fill="#FFF"/><path d="M40.5662669,33.6193863 L40.5662669,35.5050991 C40.5662669,37.0423157 39.996353,37.9322946 37.0830291,37.9322946 C35.1583312,37.9322946 34.2226903,37.2357332 34.2226903,35.8029792 C34.2226903,34.231516 35.1613467,33.6193863 37.5704497,33.6193863 L40.5662669,33.6193863 L40.5662669,33.6193863 Z M37.0830291,25.8012707 C35.4947657,25.8012707 34.4994626,26.0005036 34.1218892,26.075889 C33.4535435,26.2212752 33.1739713,26.4047849 33.1739713,27.1648855 L33.1739713,27.3815647 C33.1739713,27.6794449 33.2181256,27.8857856 33.3126804,28.0309564 C33.4227432,28.2000352 33.600222,28.2857592 33.8401631,28.2857592 C33.9571182,28.2857592 34.092812,28.266159 34.2545676,28.2256662 C34.6364487,28.1302498 35.8566157,27.9329553 37.1913687,27.9329553 C39.5886255,27.9329553 40.5662669,28.5969933 40.5662669,30.2248879 L40.5662669,31.6772421 L37.543311,31.6772421 C33.6570842,31.6772421 31.8471876,32.9880871 31.8471876,35.8029792 C31.8471876,38.5332242 33.7163156,40.0368405 37.1101678,40.0368405 C41.1432885,40.0368405 42.9417696,38.6643949 42.9417696,35.5862999 L42.9417696,30.2248879 C42.9417696,27.2482402 41.0252565,25.8012707 37.0830291,25.8012707 L37.0830291,25.8012707 Z" id="Fill-6" fill="#FFF"/><path d="M56.2339446,26.4424776 C56.0629273,26.2273061 55.7389854,26.1975827 55.4146126,26.1975827 L55.1707946,26.1975827 C54.362232,26.1975827 54.044967,26.4472161 53.8659804,27.2232553 L51.6186329,36.5645875 C51.3379838,37.7125999 50.9442564,37.9226022 50.2696645,37.9226022 C49.4438709,37.9226022 49.1132519,37.7255232 48.7839253,36.5602797 L46.2386976,27.2187322 C46.0280492,26.4362314 45.7172458,26.1975827 44.9082524,26.1975827 L44.6915732,26.1975827 C44.3648312,26.1975827 44.0398122,26.2277368 43.8728874,26.4454931 C43.7057471,26.66368 43.7621785,26.9891297 43.8483332,27.3089793 L46.4206996,36.731297 C46.9031664,38.5345165 47.4769572,40.0271481 49.619842,40.0271481 C50.020031,40.0271481 50.3898504,39.9715783 50.6976383,39.8677618 C50.0478159,41.9119994 49.3863626,42.8138245 47.4364645,43.013919 C47.0407987,43.0468732 46.7836266,43.10352 46.6401789,43.2956451 C46.4915619,43.4948781 46.5253777,43.7800504 46.5785783,44.0352839 L46.6322096,44.2767327 C46.7487339,44.8354465 46.9468899,45.1817887 47.5740968,45.1817887 C47.6400052,45.1817887 47.7108675,45.1783425 47.7868991,45.1716655 C50.6984999,44.9812634 52.2585476,43.4136772 53.1715729,39.7613606 L56.2862836,27.3023023 C56.3601613,26.9826681 56.4047464,26.6572184 56.2339446,26.4424776" id="Fill-7" fill="#FFF"/><path d="M76.4831182,20.1773259 L72.7730779,20.1760336 C72.3683658,20.1758182 72.0403315,20.5038525 72.0401161,20.9083492 L72.0399007,21.4261394 L72.2972881,21.4261394 C73.9727832,21.4261394 74.5956823,21.7026963 74.5956823,23.2287128 L74.5956823,25.3980902 L76.4813951,25.3987364 C76.8861071,25.3989518 77.2141415,25.0709175 77.2143569,24.6662054 L77.2156492,20.9102877 C77.2158646,20.5055756 76.8878302,20.1773259 76.4831182,20.1773259" id="Fill-9" fill="#FFF"/></g></g></svg> |