2018-10-26 13:16:23 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
import VueRouter from 'vue-router'
|
2018-12-03 18:36:59 +00:00
|
|
|
import routes from './routes'
|
2018-10-26 13:16:23 +00:00
|
|
|
import App from '../App.vue'
|
2019-04-01 19:41:34 +00:00
|
|
|
import { windowWidth } from '../services/window_utils/window_utils'
|
2019-05-22 16:13:41 +00:00
|
|
|
import { getOrCreateApp, getClientToken } from '../services/new_api/oauth.js'
|
|
|
|
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
2020-01-21 22:37:19 +00:00
|
|
|
import { CURRENT_VERSION } from '../services/theme_data/theme_data.service.js'
|
|
|
|
import { applyTheme } from '../services/style_setter/style_setter.js'
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2019-03-13 10:57:30 +00:00
|
|
|
const getStatusnetConfig = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/api/statusnet/config.json')
|
2019-03-13 11:41:39 +00:00
|
|
|
if (res.ok) {
|
|
|
|
const data = await res.json()
|
2020-03-25 17:06:48 +00:00
|
|
|
const { textlimit, vapidPublicKey } = data.site
|
2018-10-26 13:16:23 +00:00
|
|
|
|
|
|
|
store.dispatch('setInstanceOption', { name: 'textlimit', value: parseInt(textlimit) })
|
2018-12-18 18:26:14 +00:00
|
|
|
|
2018-12-10 15:36:25 +00:00
|
|
|
if (vapidPublicKey) {
|
|
|
|
store.dispatch('setInstanceOption', { name: 'vapidPublicKey', value: vapidPublicKey })
|
|
|
|
}
|
2019-03-13 11:41:39 +00:00
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
2019-03-13 10:57:30 +00:00
|
|
|
} catch (error) {
|
|
|
|
console.error('Could not load statusnet config, potentially fatal')
|
|
|
|
console.error(error)
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2020-03-25 17:06:48 +00:00
|
|
|
const getBackendProvidedConfig = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/api/pleroma/frontend_configurations')
|
|
|
|
if (res.ok) {
|
|
|
|
const data = await res.json()
|
|
|
|
return data.pleroma_fe
|
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
console.error('Could not load backend-provided frontend config, potentially fatal')
|
|
|
|
console.error(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-13 10:57:30 +00:00
|
|
|
const getStaticConfig = async () => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/static/config.json')
|
2019-03-13 11:41:39 +00:00
|
|
|
if (res.ok) {
|
|
|
|
return res.json()
|
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
2019-03-13 10:57:30 +00:00
|
|
|
} catch (error) {
|
|
|
|
console.warn('Failed to load static/config.json, continuing without it.')
|
|
|
|
console.warn(error)
|
|
|
|
return {}
|
|
|
|
}
|
|
|
|
}
|
2019-01-24 18:03:13 +00:00
|
|
|
|
2019-03-13 10:57:30 +00:00
|
|
|
const setSettings = async ({ apiConfig, staticConfig, store }) => {
|
|
|
|
const overrides = window.___pleromafe_dev_overrides || {}
|
|
|
|
const env = window.___pleromafe_mode.NODE_ENV
|
|
|
|
|
|
|
|
// This takes static config and overrides properties that are present in apiConfig
|
|
|
|
let config = {}
|
|
|
|
if (overrides.staticConfigPreference && env === 'development') {
|
|
|
|
console.warn('OVERRIDING API CONFIG WITH STATIC CONFIG')
|
|
|
|
config = Object.assign({}, apiConfig, staticConfig)
|
|
|
|
} else {
|
|
|
|
config = Object.assign({}, staticConfig, apiConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
const copyInstanceOption = (name) => {
|
|
|
|
store.dispatch('setInstanceOption', { name, value: config[name] })
|
|
|
|
}
|
|
|
|
|
|
|
|
copyInstanceOption('nsfwCensorImage')
|
|
|
|
copyInstanceOption('background')
|
|
|
|
copyInstanceOption('hidePostStats')
|
|
|
|
copyInstanceOption('hideUserStats')
|
|
|
|
copyInstanceOption('hideFilteredStatuses')
|
|
|
|
copyInstanceOption('logo')
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2019-03-13 10:57:30 +00:00
|
|
|
store.dispatch('setInstanceOption', {
|
|
|
|
name: 'logoMask',
|
|
|
|
value: typeof config.logoMask === 'undefined'
|
|
|
|
? true
|
|
|
|
: config.logoMask
|
|
|
|
})
|
|
|
|
|
|
|
|
store.dispatch('setInstanceOption', {
|
|
|
|
name: 'logoMargin',
|
|
|
|
value: typeof config.logoMargin === 'undefined'
|
|
|
|
? 0
|
|
|
|
: config.logoMargin
|
|
|
|
})
|
2019-06-12 20:16:55 +00:00
|
|
|
store.commit('authFlow/setInitialStrategy', config.loginMethod)
|
2019-03-13 10:57:30 +00:00
|
|
|
|
|
|
|
copyInstanceOption('redirectRootNoLogin')
|
|
|
|
copyInstanceOption('redirectRootLogin')
|
|
|
|
copyInstanceOption('showInstanceSpecificPanel')
|
2019-03-30 10:31:50 +00:00
|
|
|
copyInstanceOption('minimalScopesMode')
|
2019-03-02 13:07:14 +00:00
|
|
|
copyInstanceOption('hideMutedPosts')
|
2019-03-13 10:57:30 +00:00
|
|
|
copyInstanceOption('collapseMessageWithSubject')
|
|
|
|
copyInstanceOption('scopeCopy')
|
|
|
|
copyInstanceOption('subjectLineBehavior')
|
|
|
|
copyInstanceOption('postContentType')
|
|
|
|
copyInstanceOption('alwaysShowSubjectInput')
|
|
|
|
copyInstanceOption('showFeaturesPanel')
|
2019-12-02 00:34:01 +00:00
|
|
|
copyInstanceOption('hideSitename')
|
2020-05-28 17:28:32 +00:00
|
|
|
copyInstanceOption('sidebarRight')
|
2019-03-13 10:57:30 +00:00
|
|
|
|
|
|
|
return store.dispatch('setTheme', config['theme'])
|
|
|
|
}
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2019-03-13 11:10:57 +00:00
|
|
|
const getTOS = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/static/terms-of-service.html')
|
|
|
|
if (res.ok) {
|
|
|
|
const html = await res.text()
|
2018-10-26 13:16:23 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'tos', value: html })
|
2019-03-13 11:10:57 +00:00
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn("Can't load TOS")
|
|
|
|
console.warn(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const getInstancePanel = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/instance/panel.html')
|
|
|
|
if (res.ok) {
|
|
|
|
const html = await res.text()
|
|
|
|
store.dispatch('setInstanceOption', { name: 'instanceSpecificPanelContent', value: html })
|
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn("Can't load instance panel")
|
2019-03-13 11:26:40 +00:00
|
|
|
console.warn(e)
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2019-07-24 19:35:52 +00:00
|
|
|
const getStickers = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/static/stickers.json')
|
|
|
|
if (res.ok) {
|
|
|
|
const values = await res.json()
|
|
|
|
const stickers = (await Promise.all(
|
|
|
|
Object.entries(values).map(async ([name, path]) => {
|
|
|
|
const resPack = await window.fetch(path + 'pack.json')
|
|
|
|
var meta = {}
|
|
|
|
if (resPack.ok) {
|
|
|
|
meta = await resPack.json()
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
pack: name,
|
|
|
|
path,
|
|
|
|
meta
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)).sort((a, b) => {
|
|
|
|
return a.meta.title.localeCompare(b.meta.title)
|
|
|
|
})
|
|
|
|
store.dispatch('setInstanceOption', { name: 'stickers', value: stickers })
|
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn("Can't load stickers")
|
|
|
|
console.warn(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 16:13:41 +00:00
|
|
|
const getAppSecret = async ({ store }) => {
|
|
|
|
const { state, commit } = store
|
|
|
|
const { oauth, instance } = state
|
|
|
|
return getOrCreateApp({ ...oauth, instance: instance.server, commit })
|
|
|
|
.then((app) => getClientToken({ ...app, instance: instance.server }))
|
|
|
|
.then((token) => {
|
2019-06-13 07:11:17 +00:00
|
|
|
commit('setAppToken', token.access_token)
|
2019-05-22 16:13:41 +00:00
|
|
|
commit('setBackendInteractor', backendInteractorService(store.getters.getToken()))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-15 19:29:45 +00:00
|
|
|
const resolveStaffAccounts = ({ store, accounts }) => {
|
|
|
|
const nicknames = accounts.map(uri => uri.split('/').pop())
|
|
|
|
nicknames.map(nickname => store.dispatch('fetchUser', nickname))
|
2019-11-09 05:21:07 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'staffAccounts', value: nicknames })
|
|
|
|
}
|
|
|
|
|
2019-03-13 11:26:40 +00:00
|
|
|
const getNodeInfo = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/nodeinfo/2.0.json')
|
|
|
|
if (res.ok) {
|
|
|
|
const data = await res.json()
|
2018-10-26 13:16:23 +00:00
|
|
|
const metadata = data.metadata
|
2018-10-26 14:13:05 +00:00
|
|
|
const features = metadata.features
|
2020-03-25 17:06:48 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'name', value: metadata.nodeName })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'registrationOpen', value: data.openRegistrations })
|
2018-10-26 14:13:05 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'mediaProxyAvailable', value: features.includes('media_proxy') })
|
2020-03-25 17:06:48 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'safeDM', value: features.includes('safe_dm_mentions') })
|
2018-10-26 14:13:05 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'chatAvailable', value: features.includes('chat') })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'gopherAvailable', value: features.includes('gopher') })
|
2019-06-18 20:28:31 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'pollsAvailable', value: features.includes('polls') })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'pollLimits', value: metadata.pollLimits })
|
2019-09-05 11:23:28 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'mailerEnabled', value: metadata.mailerEnabled })
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2020-03-25 17:06:48 +00:00
|
|
|
const uploadLimits = metadata.uploadLimits
|
|
|
|
store.dispatch('setInstanceOption', { name: 'uploadlimit', value: parseInt(uploadLimits.general) })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'avatarlimit', value: parseInt(uploadLimits.avatar) })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'backgroundlimit', value: parseInt(uploadLimits.background) })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'bannerlimit', value: parseInt(uploadLimits.banner) })
|
|
|
|
|
2018-12-26 13:50:48 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'restrictedNicknames', value: metadata.restrictedNicknames })
|
2019-03-14 21:35:45 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'postFormats', value: metadata.postFormats })
|
2018-12-26 13:50:48 +00:00
|
|
|
|
2018-10-26 13:16:23 +00:00
|
|
|
const suggestions = metadata.suggestions
|
|
|
|
store.dispatch('setInstanceOption', { name: 'suggestionsEnabled', value: suggestions.enabled })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'suggestionsWeb', value: suggestions.web })
|
2019-03-10 23:58:12 +00:00
|
|
|
|
|
|
|
const software = data.software
|
|
|
|
store.dispatch('setInstanceOption', { name: 'backendVersion', value: software.version })
|
2019-10-01 17:14:14 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'pleromaBackend', value: software.name === 'pleroma' })
|
2019-03-10 23:58:12 +00:00
|
|
|
|
2019-11-10 01:53:03 +00:00
|
|
|
const priv = metadata.private
|
|
|
|
store.dispatch('setInstanceOption', { name: 'private', value: priv })
|
|
|
|
|
2019-03-10 23:58:12 +00:00
|
|
|
const frontendVersion = window.___pleromafe_commit_hash
|
|
|
|
store.dispatch('setInstanceOption', { name: 'frontendVersion', value: frontendVersion })
|
2019-11-09 05:21:07 +00:00
|
|
|
|
2019-11-09 06:09:32 +00:00
|
|
|
const federation = metadata.federation
|
2020-02-13 19:35:46 +00:00
|
|
|
|
|
|
|
store.dispatch('setInstanceOption', {
|
|
|
|
name: 'tagPolicyAvailable',
|
|
|
|
value: typeof federation.mrf_policies === 'undefined'
|
|
|
|
? false
|
|
|
|
: metadata.federation.mrf_policies.includes('TagPolicy')
|
|
|
|
})
|
|
|
|
|
2019-11-09 06:09:32 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'federationPolicy', value: federation })
|
2019-12-12 21:29:50 +00:00
|
|
|
store.dispatch('setInstanceOption', {
|
|
|
|
name: 'federating',
|
|
|
|
value: typeof federation.enabled === 'undefined'
|
|
|
|
? true
|
|
|
|
: federation.enabled
|
|
|
|
})
|
2019-11-09 06:09:32 +00:00
|
|
|
|
2020-02-24 17:19:00 +00:00
|
|
|
const accountActivationRequired = metadata.accountActivationRequired
|
|
|
|
store.dispatch('setInstanceOption', { name: 'accountActivationRequired', value: accountActivationRequired })
|
|
|
|
|
2019-11-09 05:21:07 +00:00
|
|
|
const accounts = metadata.staffAccounts
|
2019-12-15 19:29:45 +00:00
|
|
|
resolveStaffAccounts({ store, accounts })
|
2019-03-13 11:26:40 +00:00
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn('Could not load nodeinfo')
|
|
|
|
console.warn(e)
|
2019-03-13 11:10:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 17:46:30 +00:00
|
|
|
const setConfig = async ({ store }) => {
|
|
|
|
// apiConfig, staticConfig
|
2020-03-25 17:06:48 +00:00
|
|
|
const configInfos = await Promise.all([getBackendProvidedConfig({ store }), getStaticConfig()])
|
2019-04-01 17:46:30 +00:00
|
|
|
const apiConfig = configInfos[0]
|
|
|
|
const staticConfig = configInfos[1]
|
|
|
|
|
2019-05-22 16:13:41 +00:00
|
|
|
await setSettings({ store, apiConfig, staticConfig }).then(getAppSecret({ store }))
|
2019-04-01 17:46:30 +00:00
|
|
|
}
|
|
|
|
|
2019-04-01 19:32:13 +00:00
|
|
|
const checkOAuthToken = async ({ store }) => {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
2019-06-13 07:05:22 +00:00
|
|
|
if (store.getters.getUserToken()) {
|
2019-04-01 19:32:13 +00:00
|
|
|
try {
|
2019-06-13 07:00:06 +00:00
|
|
|
await store.dispatch('loginUser', store.getters.getUserToken())
|
2019-04-01 19:32:13 +00:00
|
|
|
} catch (e) {
|
2020-01-21 22:37:19 +00:00
|
|
|
console.error(e)
|
2019-04-01 19:32:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-13 10:57:30 +00:00
|
|
|
const afterStoreSetup = async ({ store, i18n }) => {
|
2019-04-01 19:41:34 +00:00
|
|
|
const width = windowWidth()
|
2019-03-23 20:21:57 +00:00
|
|
|
store.dispatch('setMobileLayout', width <= 800)
|
2020-03-25 17:06:48 +00:00
|
|
|
|
|
|
|
const overrides = window.___pleromafe_dev_overrides || {}
|
|
|
|
const server = (typeof overrides.target !== 'undefined') ? overrides.target : window.location.origin
|
|
|
|
store.dispatch('setInstanceOption', { name: 'server', value: server })
|
|
|
|
|
2020-01-21 22:37:19 +00:00
|
|
|
await setConfig({ store })
|
|
|
|
|
|
|
|
const { customTheme, customThemeSource } = store.state.config
|
|
|
|
const { theme } = store.state.instance
|
|
|
|
const customThemePresent = customThemeSource || customTheme
|
|
|
|
|
|
|
|
if (customThemePresent) {
|
2020-01-22 21:26:24 +00:00
|
|
|
if (customThemeSource && customThemeSource.themeEngineVersion === CURRENT_VERSION) {
|
2020-01-21 22:37:19 +00:00
|
|
|
applyTheme(customThemeSource)
|
|
|
|
} else {
|
|
|
|
applyTheme(customTheme)
|
|
|
|
}
|
|
|
|
} else if (theme) {
|
|
|
|
// do nothing, it will load asynchronously
|
|
|
|
} else {
|
|
|
|
console.error('Failed to load any theme!')
|
|
|
|
}
|
2019-03-23 20:21:57 +00:00
|
|
|
|
2019-04-01 17:46:30 +00:00
|
|
|
// Now we can try getting the server settings and logging in
|
2019-04-01 19:32:13 +00:00
|
|
|
await Promise.all([
|
|
|
|
checkOAuthToken({ store }),
|
|
|
|
getTOS({ store }),
|
|
|
|
getInstancePanel({ store }),
|
2019-07-24 19:35:52 +00:00
|
|
|
getStickers({ store }),
|
2020-03-25 17:06:48 +00:00
|
|
|
getNodeInfo({ store }),
|
|
|
|
getStatusnetConfig({ store })
|
2019-04-01 19:32:13 +00:00
|
|
|
])
|
2019-03-13 10:57:30 +00:00
|
|
|
|
2020-04-21 20:27:51 +00:00
|
|
|
// Start fetching things that don't need to block the UI
|
|
|
|
store.dispatch('fetchMutes')
|
|
|
|
|
2019-03-13 10:57:30 +00:00
|
|
|
const router = new VueRouter({
|
|
|
|
mode: 'history',
|
|
|
|
routes: routes(store),
|
|
|
|
scrollBehavior: (to, _from, savedPosition) => {
|
|
|
|
if (to.matched.some(m => m.meta.dontScroll)) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return savedPosition || { x: 0, y: 0 }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-03-13 11:10:57 +00:00
|
|
|
/* eslint-disable no-new */
|
|
|
|
return new Vue({
|
|
|
|
router,
|
|
|
|
store,
|
|
|
|
i18n,
|
|
|
|
el: '#app',
|
|
|
|
render: h => h(App)
|
|
|
|
})
|
2018-10-26 13:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default afterStoreSetup
|