2018-02-09 02:51:48 +01:00
|
|
|
import { getAccessTokenFromAuthCode, registerApplication, generateAuthLink } from '../_api/oauth'
|
|
|
|
import { getInstanceInfo } from '../_api/instance'
|
2018-01-27 22:38:57 +01:00
|
|
|
import { goto } from 'sapper/runtime.js'
|
2018-02-09 02:51:48 +01:00
|
|
|
import { switchToTheme } from '../_utils/themeEngine'
|
|
|
|
import { database } from '../_database/database'
|
|
|
|
import { store } from '../_store/store'
|
|
|
|
import { updateVerifyCredentialsForInstance } from './instances'
|
2018-01-27 22:38:57 +01:00
|
|
|
|
2018-02-09 07:29:29 +01:00
|
|
|
const REDIRECT_URI = (typeof location !== 'undefined'
|
|
|
|
? location.origin : 'https://pinafore.social') + '/settings/instances/add'
|
2018-01-27 22:38:57 +01:00
|
|
|
|
2018-02-09 07:29:29 +01:00
|
|
|
async function redirectToOauth () {
|
2018-01-27 22:38:57 +01:00
|
|
|
let instanceName = store.get('instanceNameInSearch')
|
|
|
|
let loggedInInstances = store.get('loggedInInstances')
|
2018-01-28 02:41:18 +01:00
|
|
|
instanceName = instanceName.replace(/^https?:\/\//, '').replace('/$', '').toLowerCase()
|
2018-01-27 22:38:57 +01:00
|
|
|
if (Object.keys(loggedInInstances).includes(instanceName)) {
|
|
|
|
store.set({logInToInstanceError: `You've already logged in to ${instanceName}`})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let registrationPromise = registerApplication(instanceName, REDIRECT_URI)
|
|
|
|
let instanceInfo = await getInstanceInfo(instanceName)
|
|
|
|
await database.setInstanceInfo(instanceName, instanceInfo) // cache for later
|
|
|
|
let instanceData = await registrationPromise
|
|
|
|
store.set({
|
|
|
|
currentRegisteredInstanceName: instanceName,
|
|
|
|
currentRegisteredInstance: instanceData
|
|
|
|
})
|
|
|
|
store.save()
|
|
|
|
let oauthUrl = generateAuthLink(
|
|
|
|
instanceName,
|
|
|
|
instanceData.client_id,
|
|
|
|
REDIRECT_URI
|
|
|
|
)
|
|
|
|
document.location.href = oauthUrl
|
|
|
|
}
|
|
|
|
|
2018-02-09 07:29:29 +01:00
|
|
|
export async function logInToInstance () {
|
2018-01-27 22:38:57 +01:00
|
|
|
store.set({logInToInstanceLoading: true})
|
2018-01-28 01:28:58 +01:00
|
|
|
store.set({logInToInstanceError: null})
|
2018-01-27 22:38:57 +01:00
|
|
|
try {
|
|
|
|
await redirectToOauth()
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err)
|
|
|
|
let error = `${err.message || err.name}. ` +
|
2018-02-09 07:29:29 +01:00
|
|
|
(navigator.onLine
|
|
|
|
? `Is this a valid Mastodon instance?`
|
|
|
|
: `Are you offline?`)
|
2018-01-27 22:38:57 +01:00
|
|
|
store.set({logInToInstanceError: error})
|
|
|
|
} finally {
|
|
|
|
store.set({logInToInstanceLoading: false})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-09 07:29:29 +01:00
|
|
|
async function registerNewInstance (code) {
|
2018-01-27 22:38:57 +01:00
|
|
|
let currentRegisteredInstanceName = store.get('currentRegisteredInstanceName')
|
|
|
|
let currentRegisteredInstance = store.get('currentRegisteredInstance')
|
|
|
|
let instanceData = await getAccessTokenFromAuthCode(
|
|
|
|
currentRegisteredInstanceName,
|
|
|
|
currentRegisteredInstance.client_id,
|
|
|
|
currentRegisteredInstance.client_secret,
|
|
|
|
code,
|
|
|
|
REDIRECT_URI
|
|
|
|
)
|
|
|
|
let loggedInInstances = store.get('loggedInInstances')
|
|
|
|
let loggedInInstancesInOrder = store.get('loggedInInstancesInOrder')
|
|
|
|
let instanceThemes = store.get('instanceThemes')
|
|
|
|
instanceThemes[currentRegisteredInstanceName] = 'default'
|
|
|
|
loggedInInstances[currentRegisteredInstanceName] = instanceData
|
|
|
|
if (!loggedInInstancesInOrder.includes(currentRegisteredInstanceName)) {
|
|
|
|
loggedInInstancesInOrder.push(currentRegisteredInstanceName)
|
|
|
|
}
|
|
|
|
store.set({
|
|
|
|
instanceNameInSearch: '',
|
|
|
|
currentRegisteredInstanceName: null,
|
|
|
|
currentRegisteredInstance: null,
|
|
|
|
loggedInInstances: loggedInInstances,
|
|
|
|
currentInstance: currentRegisteredInstanceName,
|
|
|
|
loggedInInstancesInOrder: loggedInInstancesInOrder,
|
|
|
|
instanceThemes: instanceThemes
|
|
|
|
})
|
|
|
|
store.save()
|
|
|
|
switchToTheme('default')
|
|
|
|
// fire off request for account so it's cached
|
2018-01-27 23:45:51 +01:00
|
|
|
updateVerifyCredentialsForInstance(currentRegisteredInstanceName)
|
2018-01-27 22:38:57 +01:00
|
|
|
goto('/')
|
|
|
|
}
|
|
|
|
|
2018-02-09 07:29:29 +01:00
|
|
|
export async function handleOauthCode (code) {
|
2018-01-27 22:38:57 +01:00
|
|
|
try {
|
|
|
|
store.set({logInToInstanceLoading: true})
|
|
|
|
await registerNewInstance(code)
|
|
|
|
} catch (err) {
|
|
|
|
store.set({logInToInstanceError: `${err.message || err.name}. Failed to connect to instance.`})
|
|
|
|
} finally {
|
|
|
|
store.set({logInToInstanceLoading: false})
|
|
|
|
}
|
|
|
|
}
|