Skip to content
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

@uppy/companion-client,@uppy/provider-views: make authentication optional #4556

Merged
merged 6 commits into from
Aug 6, 2023
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
69 changes: 68 additions & 1 deletion packages/@uppy/companion-client/src/Provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ const getName = (id) => {
return id.split('-').map((s) => s.charAt(0).toUpperCase() + s.slice(1)).join(' ')
}

function getOrigin () {
// eslint-disable-next-line no-restricted-globals
return location.origin
}

function getRegex (value) {
if (typeof value === 'string') {
return new RegExp(`^${value}$`)
} if (value instanceof RegExp) {
return value
}
return undefined
}

function isOriginAllowed (origin, allowedOrigin) {
const patterns = Array.isArray(allowedOrigin) ? allowedOrigin.map(getRegex) : [getRegex(allowedOrigin)]
return patterns
.some((pattern) => pattern?.test(origin) || pattern?.test(`${origin}/`)) // allowing for trailing '/'
}

export default class Provider extends RequestClient {
#refreshingTokenPromise

Expand Down Expand Up @@ -72,14 +92,61 @@ export default class Provider extends RequestClient {
}

authUrl (queries = {}) {
const params = new URLSearchParams(queries)
const params = new URLSearchParams({
state: btoa(JSON.stringify({ origin: getOrigin() })),
...queries,
})
if (this.preAuthToken) {
params.set('uppyPreAuthToken', this.preAuthToken)
}

return `${this.hostname}/${this.id}/connect?${params}`
}

async login (queries) {
await this.ensurePreAuth()

return new Promise((resolve, reject) => {
const link = this.authUrl(queries)
const authWindow = window.open(link, '_blank')
const handleToken = (e) => {
if (e.source !== authWindow) {
this.uppy.log.warn('ignoring event from unknown source', e)
return
}

const { companionAllowedHosts } = this.uppy.getPlugin(this.pluginId).opts
if (!isOriginAllowed(e.origin, companionAllowedHosts)) {
reject(new Error(`rejecting event from ${e.origin} vs allowed pattern ${companionAllowedHosts}`))
return
}

// Check if it's a string before doing the JSON.parse to maintain support
// for older Companion versions that used object references
const data = typeof e.data === 'string' ? JSON.parse(e.data) : e.data

if (data.error) {
const { uppy } = this
const message = uppy.i18n('authAborted')
uppy.info({ message }, 'warning', 5000)
reject(new Error('auth aborted'))
return
}

if (!data.token) {
reject(new Error('did not receive token from auth window'))
return
}

authWindow.close()
window.removeEventListener('message', handleToken)
this.setAuthToken(data.token)
resolve()
}
window.addEventListener('message', handleToken)
})
}

refreshTokenUrl () {
return `${this.hostname}/${this.id}/refresh-token`
}
Expand Down
1 change: 1 addition & 0 deletions packages/@uppy/locales/src/en_US.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ en_US.strings = {
importFiles: 'Import files from:',
importFrom: 'Import from %{name}',
inferiorSize: 'This file is smaller than the allowed size of %{size}',
loadedXFiles: 'Loaded %{numFiles} files',
loading: 'Loading...',
logOut: 'Log out',
micDisabled: 'Microphone access denied by user',
Expand Down
60 changes: 5 additions & 55 deletions packages/@uppy/provider-views/src/ProviderView/ProviderView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,6 @@ import View from '../View.js'

import packageJson from '../../package.json'

function getOrigin () {
// eslint-disable-next-line no-restricted-globals
return location.origin
}

function getRegex (value) {
if (typeof value === 'string') {
return new RegExp(`^${value}$`)
} if (value instanceof RegExp) {
return value
}
return undefined
}
function isOriginAllowed (origin, allowedOrigin) {
const patterns = Array.isArray(allowedOrigin) ? allowedOrigin.map(getRegex) : [getRegex(allowedOrigin)]
return patterns
.some((pattern) => pattern?.test(origin) || pattern?.test(`${origin}/`)) // allowing for trailing '/'
}

function formatBreadcrumbs (breadcrumbs) {
return breadcrumbs.slice(1).map((directory) => directory.name).join('/')
}
Expand Down Expand Up @@ -254,45 +235,14 @@ export default class ProviderView extends View {
}

async handleAuth () {
await this.provider.ensurePreAuth()

const authState = btoa(JSON.stringify({ origin: getOrigin() }))
const clientVersion = `@uppy/provider-views=${ProviderView.VERSION}`
const link = this.provider.authUrl({ state: authState, uppyVersions: clientVersion })

const authWindow = window.open(link, '_blank')
const handleToken = (e) => {
if (e.source !== authWindow) {
this.plugin.uppy.log('rejecting event from unknown source')
return
}
if (!isOriginAllowed(e.origin, this.plugin.opts.companionAllowedHosts) || e.source !== authWindow) {
this.plugin.uppy.log(`rejecting event from ${e.origin} vs allowed pattern ${this.plugin.opts.companionAllowedHosts}`)
}
Murderlon marked this conversation as resolved.
Show resolved Hide resolved

// Check if it's a string before doing the JSON.parse to maintain support
// for older Companion versions that used object references
const data = typeof e.data === 'string' ? JSON.parse(e.data) : e.data

if (data.error) {
this.plugin.uppy.log('auth aborted', 'warning')
const { uppy } = this.plugin
const message = uppy.i18n('authAborted')
uppy.info({ message }, 'warning', 5000)
return
}

if (!data.token) {
this.plugin.uppy.log('did not receive token from auth window', 'error')
return
}

authWindow.close()
window.removeEventListener('message', handleToken)
this.provider.setAuthToken(data.token)
try {
await this.provider.login({ uppyVersions: clientVersion })
this.plugin.setPluginState({ authenticated: true })
this.preFirstRender()
} catch (e) {
this.plugin.uppy.log(`login failed: ${e.message}`)
}
window.addEventListener('message', handleToken)
}

async handleScroll (event) {
Expand Down
8 changes: 4 additions & 4 deletions private/locale-pack/test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const root = fileURLToPath(new URL('../../', import.meta.url))
const leadingLocaleName = 'en_US'
const mode = process.argv[2]
const pluginLocaleDependencies = {
core: 'provider-views',
core: ['provider-views', 'companion-client'],
}

function getAllFilesPerPlugin (pluginNames) {
Expand All @@ -30,9 +30,9 @@ function getAllFilesPerPlugin (pluginNames) {
filesPerPlugin[name] = getFiles(name)

if (name in pluginLocaleDependencies) {
filesPerPlugin[name].push(
getFiles(pluginLocaleDependencies[name]),
)
for (const subDeb of pluginLocaleDependencies[name]) {
filesPerPlugin[name].push(...getFiles(subDeb))
}
}
}

Expand Down