Skip to content

feat: Redesigns OAuth2 portal #404

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Nov 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/assets/stylesheets/forms/_forms.sass
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ hr
margin-left: -1 * $form-spacing-horizontal
margin-right: -1 * $form-spacing-horizontal

.actions
display: flex
justify-content: flex-end

.input
flex: 1 1 600px
display: flex
Expand Down
8 changes: 8 additions & 0 deletions app/assets/stylesheets/general/_header.sass
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,19 @@ $account-nav-padding-vert: 15px
.header-nav
display: flex
align-items: center
width: 100%
.button
margin-right: 10px
&:last-child
margin-right: 0

.header-nav.start
justify-content: flex-start
flex-shrink: 2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bootstrap doesn't have flex-shrink :/


.header-nav.end
justify-content: flex-end

.account-nav
@include css4
border-bottom: 1px solid var(--account-nav--border-color)
Expand Down
12 changes: 12 additions & 0 deletions app/views/doorkeeper/applications/_form.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.form-container
= bs_horizontal_simple_form_for(@application, url: doorkeeper_submit_path(@application)) do |f|
= f.error_notification

.form-inputs
= f.input :name, required: true
= f.input :redirect_uri, required: true
= f.input :confidential
= f.input :scopes

.center
= f.button :submit, class: 'btn-primary'
3 changes: 3 additions & 0 deletions app/views/doorkeeper/applications/edit.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= render "layouts/manage/page_title", title: @application.name, subtitle: t(:title, scope: 'doorkeeper.applications.edit')

= render 'form'
29 changes: 29 additions & 0 deletions app/views/doorkeeper/applications/index.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
= render "layouts/manage/page_title", title: t(:title, scope: 'pages.manage.doorkeeper'), docs: 'https://coderit.org/hackathon-manager/docs/busses' do
= link_to t(:new, scope: 'doorkeeper.applications.index'), new_oauth_application_path, class: "btn btn-sm btn-outline-secondary"

.mb-4
%table.table.table-striped.table-hover
%thead
%tr
%th
%th
= t(:name, scope: 'doorkeeper.applications.index')
%th
= t(:callback_url, scope: 'doorkeeper.applications.index')
%th
= t(:confidential, scope: 'doorkeeper.applications.index')


%tbody
- @applications.each do |application|
%tr
%td
= link_to('<i class="fa fa-search"></i>'.html_safe, oauth_application_path(application))
%td
%strong
= application.name
%td
= simple_format(application.redirect_uri)
%td
= application.confidential? ? t('doorkeeper.applications.index.confidentiality.yes') : t('doorkeeper.applications.index.confidentiality.no')

3 changes: 3 additions & 0 deletions app/views/doorkeeper/applications/new.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= render "layouts/manage/page_title", title: t(:title, scope: 'doorkeeper.applications.new')

= render 'form'
43 changes: 43 additions & 0 deletions app/views/doorkeeper/applications/show.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
= render "layouts/manage/page_title", title: @application.name, subtitle: t(:title, scope: 'doorkeeper.applications.show') do
.btn-group
= link_to t('doorkeeper.applications.buttons.edit'), edit_oauth_application_path(@application), class: 'btn btn-sm btn-outline-secondary'
= link_to t('doorkeeper.applications.buttons.destroy'), oauth_application_path(@application), method: :delete, data: { confirm: t('doorkeeper.applications.confirmations.destroy', name: @application.name) }, class: 'btn btn-sm btn-outline-secondary'

.row
.col-lg-6
%h4.border-bottom.pb-2.mb-3 Details
%dl.row
%dt.col-md-4
= t('.application_id')
%dd.col-md-8
%code.bg-light
= @application.uid
%dt.col-md-4
= t('.secret')
%dd.col-md-8
%code.bg-light
= flash[:application_secret].presence || @application.plaintext_secret
%dt.col-md-4
= t('.scopes')
%dd.col-md-8
- if @application.scopes.present?
= @application.scopes
- else
%bg-light.font-italic.text-muted
= t('.not_defined')
%dt.col-md-4
= t('.confidential')
%dd.col-md-8
= @application.confidential? ? "Yes" : "No"

.col-lg-6
.h4.border-bottom.pb-2.mb-3
= t('.callback_urls')
%table.table.table-striped.table-hover
%tbody
- @application.redirect_uri.split.each do |uri|
%tr
%td
= uri
%td
= link_to t('doorkeeper.applications.buttons.authorize'), oauth_authorization_path(client_id: @application.uid, redirect_uri: uri, response_type: 'code', scope: @application.scopes), class: 'btn btn-sm btn-outline-primary', target: '_blank'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just you watch this trigger CodeClimate

10 changes: 10 additions & 0 deletions app/views/doorkeeper/authorizations/error.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.form-container
#disclaimer
%h1.section-title
Authorization
%span.emphasized Error
%p
= @pre_auth.error_response.body[:error_description]
%p
= raw t('doorkeeper.errors.messages.get_help', hackathon_name: content_tag(:strong, class: 'text-info') { HackathonConfig['name'] })

28 changes: 28 additions & 0 deletions app/views/doorkeeper/authorizations/new.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.form-container
#disclaimer
%h1.section-title
Authorization
%span.emphasized Required
%p
= raw t('.prompt', client_name: content_tag(:strong, class: 'text-info') { @pre_auth.client.name })
%p
= t('.able_to')
.actions
= form_tag oauth_authorization_path, method: :delete, style: "padding-right: 10px;" do
= hidden_field_tag :client_id, @pre_auth.client.uid
= hidden_field_tag :redirect_uri, @pre_auth.redirect_uri
= hidden_field_tag :state, @pre_auth.state
= hidden_field_tag :response_type, @pre_auth.response_type
= hidden_field_tag :scope, @pre_auth.scope
= hidden_field_tag :code_challenge, @pre_auth.code_challenge
= hidden_field_tag :code_challenge_method, @pre_auth.code_challenge_method
= submit_tag t('doorkeeper.authorizations.buttons.deny')
= form_tag oauth_authorization_path, method: :post do
= hidden_field_tag :client_id, @pre_auth.client.uid
= hidden_field_tag :redirect_uri, @pre_auth.redirect_uri
= hidden_field_tag :state, @pre_auth.state
= hidden_field_tag :response_type, @pre_auth.response_type
= hidden_field_tag :scope, @pre_auth.scope
= hidden_field_tag :code_challenge, @pre_auth.code_challenge
= hidden_field_tag :code_challenge_method, @pre_auth.code_challenge_method
= submit_tag t('doorkeeper.authorizations.buttons.authorize')
4 changes: 2 additions & 2 deletions app/views/layouts/_header.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
= link_to homepage_url do
= image_tag HackathonConfig['logo_asset'], id: 'logo', alt: "#{HackathonConfig['name']} logo", title: HackathonConfig['name'], class: 'header-logo__image'
- else
.header-nav
.header-nav.start
= btn_link_to "Home", homepage_url
.header-nav
.header-nav.end
- if user_signed_in?
- if current_user.organizing_staff?
= btn_link_to "Manage", manage_root_path
Expand Down
9 changes: 9 additions & 0 deletions app/views/layouts/doorkeeper/_header.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- homepage_url = HackathonConfig['homepage_url'].presence || root_path
.header
.header__wrapper.account-nav__wrapper
- if HackathonConfig['logo_asset'].present?
.header-logo
= image_tag HackathonConfig['logo_asset'], id: 'logo', alt: "#{HackathonConfig['name']} logo", title: HackathonConfig['name'], class: 'header-logo__image'
.header-nav.end
- if user_signed_in?
= btn_link_to "Sign Out", destroy_user_session_path, method: :delete
27 changes: 27 additions & 0 deletions app/views/layouts/doorkeeper/application.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
!!! 5
%html
%head
%title= yield(:title) || HackathonConfig['default_page_title']
%meta{ charset: "utf-8" }
%meta{ name:"viewport", content: "width=device-width, initial-scale=1" }

- if HackathonConfig['favicon_asset'].present?
%link{ href: image_url(HackathonConfig['favicon_asset']), rel: "shortcut icon" }

= csrf_meta_tags
= csp_meta_tag

= stylesheet_link_tag "application", media: "all", 'data-turbolinks-track': 'reload'
= javascript_include_tag "application", 'data-turbolinks-track': 'reload'
%link{ href:'//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700', rel: 'stylesheet', type: 'text/css' }
- if HackathonConfig['custom_css'].present?
%style
= HackathonConfig['custom_css']

%body
= render "layouts/doorkeeper/header"
= render "layouts/flashes"
#main
%section.section
.container
= yield
13 changes: 6 additions & 7 deletions app/views/layouts/manage/application.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@
%span
= t(:advanced, scope: 'layouts.manage.navigation')
%ul.nav.flex-column.mb-2
%li.nav-item
= active_link_to oauth_applications_path, class: "nav-link" do
.fa.fa-unlock.fa-fw.icon-space-r-half
= t(:title, scope: 'pages.manage.doorkeeper')
.nav-item-description
= t(:doorkeeper, scope: 'layouts.manage.navigation.descriptors')
%li.nav-item
= active_link_to sidekiq_web_path, target: '_blank', class: "nav-link" do
.fa.fa-tasks.fa-fw.icon-space-r-half
Expand All @@ -122,13 +128,6 @@
%span.fa.fa-external-link.icon-space-l-half
.nav-item-description
= t(:blazer, scope: 'layouts.manage.navigation.descriptors')
%li.nav-item
= active_link_to oauth_applications_path, target: '_blank', class: "nav-link" do
.fa.fa-unlock.fa-fw.icon-space-r-half
= t(:title, scope: 'pages.manage.doorkeeper')
%span.fa.fa-external-link.icon-space-l-half
.nav-item-description
= t(:doorkeeper, scope: 'layouts.manage.navigation.descriptors')
%li.nav-item
= active_link_to manage_data_exports_path, class: "nav-link" do
.fa.fa-download.fa-fw.icon-space-r-half
Expand Down
8 changes: 8 additions & 0 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,13 @@ class Application < Rails::Application
config.time_zone = ENV["TIME_ZONE"].presence || "UTC"

config.active_job.queue_adapter = :sidekiq

config.to_prepare do
# Only Applications list
Doorkeeper::ApplicationsController.layout "manage/application"

# Only Authorized Applications
Doorkeeper::AuthorizedApplicationsController.layout "application"
end
end
end
20 changes: 12 additions & 8 deletions config/locales/doorkeeper.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ en:
doorkeeper:
applications:
confirmations:
destroy: 'Are you sure?'
destroy: Are you sure? The application %{name} will be permanently erased. This action is irreversible.
buttons:
edit: 'Edit'
destroy: 'Destroy'
destroy: 'Delete'
submit: 'Submit'
cancel: 'Cancel'
authorize: 'Authorize'
Expand All @@ -49,24 +49,24 @@ en:
new:
title: 'New Application'
show:
title: 'Application: %{name}'
title: 'Application'
application_id: 'Application UID'
secret: 'Secret'
scopes: 'Scopes'
confidential: 'Confidential'
callback_urls: 'Callback urls'
callback_urls: 'Callback URLs'
actions: 'Actions'

authorizations:
buttons:
authorize: 'Authorize'
authorize: 'Allow'
deny: 'Deny'
error:
title: 'An error has occurred'
new:
title: 'Authorization required'
prompt: 'Authorize %{client_name} to use your account?'
able_to: 'This application will be able to'
prompt: 'The application %{client_name} is requesting access to your information.'
able_to: 'This application will be able to access your personally identifiable information and application data.'
show:
title: 'Authorization code'

Expand All @@ -87,7 +87,8 @@ en:
errors:
messages:
# Common error messages
invalid_request: 'The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.'
invalid_request:
missing_param: 'The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.'
invalid_redirect_uri: "The requested redirect uri is malformed or doesn't match client redirect URI."
unauthorized_client: 'The client is not authorized to perform this request using this method.'
access_denied: 'The resource owner or authorization server denied the request.'
Expand All @@ -96,6 +97,9 @@ en:
server_error: 'The authorization server encountered an unexpected condition which prevented it from fulfilling the request.'
temporarily_unavailable: 'The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.'

# Help from hackathon message
get_help: 'Please inform a %{hackathon_name} staff member of this issue for assistance.'

# Configuration error messages
credential_flow_not_configured: 'Resource Owner Password Credentials flow failed due to Doorkeeper.configure.resource_owner_from_credentials being unconfigured.'
resource_owner_authenticator_not_configured: 'Resource Owner find failed due to Doorkeeper.configure.resource_owner_authenticator being unconfigured.'
Expand Down
2 changes: 1 addition & 1 deletion config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ en:
blazer:
title: Blazer
doorkeeper:
title: Doorkeeper
title: App Authentication
data-exports:
title: Data Exports
layouts:
Expand Down