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'
|
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()
|
2019-04-02 14:26:14 +00:00
|
|
|
const { name, closed: registrationClosed, textlimit, uploadlimit, server, vapidPublicKey, safeDMMentionsEnabled } = data.site
|
2018-10-26 13:16:23 +00:00
|
|
|
|
|
|
|
store.dispatch('setInstanceOption', { name: 'name', value: name })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'registrationOpen', value: (registrationClosed === '0') })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'textlimit', value: parseInt(textlimit) })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'server', value: server })
|
2019-04-02 14:26:14 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'safeDM', value: safeDMMentionsEnabled !== '0' })
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2018-12-18 18:26:14 +00:00
|
|
|
// TODO: default values for this stuff, added if to not make it break on
|
|
|
|
// my dev config out of the box.
|
|
|
|
if (uploadlimit) {
|
|
|
|
store.dispatch('setInstanceOption', { name: 'uploadlimit', value: parseInt(uploadlimit.uploadlimit) })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'avatarlimit', value: parseInt(uploadlimit.avatarlimit) })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'backgroundlimit', value: parseInt(uploadlimit.backgroundlimit) })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'bannerlimit', value: parseInt(uploadlimit.bannerlimit) })
|
|
|
|
}
|
|
|
|
|
2018-12-10 15:36:25 +00:00
|
|
|
if (vapidPublicKey) {
|
|
|
|
store.dispatch('setInstanceOption', { name: 'vapidPublicKey', value: vapidPublicKey })
|
|
|
|
}
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2019-03-13 11:41:39 +00:00
|
|
|
return data.site.pleromafe
|
|
|
|
} 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
|
|
|
|
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
|
|
|
|
})
|
|
|
|
|
|
|
|
copyInstanceOption('redirectRootNoLogin')
|
|
|
|
copyInstanceOption('redirectRootLogin')
|
|
|
|
copyInstanceOption('showInstanceSpecificPanel')
|
2019-03-30 10:31:50 +00:00
|
|
|
copyInstanceOption('minimalScopesMode')
|
2019-03-13 10:57:30 +00:00
|
|
|
copyInstanceOption('formattingOptionsEnabled')
|
2019-03-02 13:07:14 +00:00
|
|
|
copyInstanceOption('hideMutedPosts')
|
2019-03-13 10:57:30 +00:00
|
|
|
copyInstanceOption('collapseMessageWithSubject')
|
|
|
|
copyInstanceOption('loginMethod')
|
|
|
|
copyInstanceOption('scopeCopy')
|
|
|
|
copyInstanceOption('subjectLineBehavior')
|
|
|
|
copyInstanceOption('postContentType')
|
|
|
|
copyInstanceOption('alwaysShowSubjectInput')
|
|
|
|
copyInstanceOption('noAttachmentLinks')
|
|
|
|
copyInstanceOption('showFeaturesPanel')
|
|
|
|
|
|
|
|
if ((config.chatDisabled)) {
|
|
|
|
store.dispatch('disableChat')
|
|
|
|
} else {
|
|
|
|
store.dispatch('initializeSocket')
|
|
|
|
}
|
|
|
|
|
|
|
|
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-03-13 11:26:40 +00:00
|
|
|
const getStaticEmoji = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/static/emoji.json')
|
|
|
|
if (res.ok) {
|
|
|
|
const values = await res.json()
|
2018-10-26 13:16:23 +00:00
|
|
|
const emoji = Object.keys(values).map((key) => {
|
|
|
|
return { shortcode: key, image_url: false, 'utf': values[key] }
|
|
|
|
})
|
|
|
|
store.dispatch('setInstanceOption', { name: 'emoji', value: emoji })
|
2019-03-13 11:26:40 +00:00
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn("Can't load static emoji")
|
|
|
|
console.warn(e)
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 13:16:23 +00:00
|
|
|
|
2019-03-13 11:26:40 +00:00
|
|
|
// This is also used to indicate if we have a 'pleroma backend' or not.
|
|
|
|
// Somewhat weird, should probably be somewhere else.
|
|
|
|
const getCustomEmoji = async ({ store }) => {
|
|
|
|
try {
|
|
|
|
const res = await window.fetch('/api/pleroma/emoji.json')
|
|
|
|
if (res.ok) {
|
2019-04-09 19:54:14 +00:00
|
|
|
const result = await res.json()
|
|
|
|
const values = Array.isArray(result) ? Object.assign({}, ...result) : result
|
2019-03-13 11:26:40 +00:00
|
|
|
const emoji = Object.keys(values).map((key) => {
|
2019-04-09 19:54:14 +00:00
|
|
|
return { shortcode: key, image_url: values[key].image_url || values[key] }
|
2019-03-13 11:26:40 +00:00
|
|
|
})
|
|
|
|
store.dispatch('setInstanceOption', { name: 'customEmoji', value: emoji })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'pleromaBackend', value: true })
|
|
|
|
} else {
|
|
|
|
throw (res)
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
store.dispatch('setInstanceOption', { name: 'pleromaBackend', value: false })
|
|
|
|
console.warn("Can't load custom emojis, maybe not a Pleroma instance?")
|
|
|
|
console.warn(e)
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 13:16:23 +00:00
|
|
|
|
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
|
|
|
|
store.dispatch('setInstanceOption', { name: 'mediaProxyAvailable', value: features.includes('media_proxy') })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'chatAvailable', value: features.includes('chat') })
|
|
|
|
store.dispatch('setInstanceOption', { name: 'gopherAvailable', value: features.includes('gopher') })
|
2018-10-26 13:16:23 +00:00
|
|
|
|
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 })
|
|
|
|
|
|
|
|
const frontendVersion = window.___pleromafe_commit_hash
|
|
|
|
store.dispatch('setInstanceOption', { name: 'frontendVersion', value: frontendVersion })
|
2019-02-18 14:49:32 +00:00
|
|
|
store.dispatch('setInstanceOption', { name: 'tagPolicyAvailable', value: metadata.federation.mrf_policies.includes('TagPolicy') })
|
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
|
|
|
|
const configInfos = await Promise.all([getStatusnetConfig({ store }), getStaticConfig()])
|
|
|
|
const apiConfig = configInfos[0]
|
|
|
|
const staticConfig = configInfos[1]
|
|
|
|
|
|
|
|
await setSettings({ store, apiConfig, staticConfig })
|
|
|
|
}
|
|
|
|
|
2019-04-01 19:32:13 +00:00
|
|
|
const checkOAuthToken = async ({ store }) => {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
if (store.state.oauth.token) {
|
|
|
|
try {
|
|
|
|
await store.dispatch('loginUser', store.state.oauth.token)
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-13 10:57:30 +00:00
|
|
|
const afterStoreSetup = async ({ store, i18n }) => {
|
2019-03-13 12:29:34 +00:00
|
|
|
if (store.state.config.customTheme) {
|
|
|
|
// This is a hack to deal with async loading of config.json and themes
|
|
|
|
// See: style_setter.js, setPreset()
|
|
|
|
window.themeLoaded = true
|
|
|
|
store.dispatch('setOption', {
|
|
|
|
name: 'customTheme',
|
|
|
|
value: store.state.config.customTheme
|
2018-10-26 13:16:23 +00:00
|
|
|
})
|
2019-03-13 12:29:34 +00:00
|
|
|
}
|
|
|
|
|
2019-04-01 19:41:34 +00:00
|
|
|
const width = windowWidth()
|
2019-03-23 20:21:57 +00:00
|
|
|
store.dispatch('setMobileLayout', width <= 800)
|
|
|
|
|
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 }),
|
|
|
|
setConfig({ store }),
|
|
|
|
getTOS({ store }),
|
|
|
|
getInstancePanel({ store }),
|
|
|
|
getStaticEmoji({ store }),
|
|
|
|
getCustomEmoji({ store }),
|
|
|
|
getNodeInfo({ store })
|
|
|
|
])
|
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
|