2021-05-03 16:30:02 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
interface Window {
|
|
|
|
converse: {
|
|
|
|
initialize: (args: any) => void
|
|
|
|
}
|
|
|
|
initConverse: (args: any) => void
|
|
|
|
}
|
|
|
|
|
|
|
|
function inIframe (): boolean {
|
2021-02-20 22:29:07 +00:00
|
|
|
try {
|
|
|
|
return window.self !== window.top
|
|
|
|
} catch (e) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-04 11:00:44 +00:00
|
|
|
interface AuthentInfos {
|
|
|
|
jid: string
|
|
|
|
password: string
|
|
|
|
}
|
|
|
|
async function authenticatedMode (authenticationUrl: string): Promise<false | AuthentInfos> {
|
|
|
|
try {
|
|
|
|
if (!window.fetch) {
|
|
|
|
console.error('Your browser has not the fetch api, we cant log you in')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (!window.localStorage) {
|
|
|
|
// FIXME: is the Peertube token always in localStorage?
|
|
|
|
console.error('Your browser has no localStorage, we cant log you in')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
const tokenType = window.localStorage.getItem('token_type') ?? ''
|
|
|
|
const accessToken = window.localStorage.getItem('access_token') ?? ''
|
|
|
|
const refreshToken = window.localStorage.getItem('refresh_token') ?? ''
|
|
|
|
if (tokenType === '' && accessToken === '' && refreshToken === '') {
|
|
|
|
console.info('User seems not to be logged in.')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
const response = await window.fetch(authenticationUrl, {
|
|
|
|
method: 'GET',
|
|
|
|
headers: new Headers({
|
|
|
|
Authorization: tokenType + ' ' + accessToken,
|
|
|
|
'content-type': 'application/json;charset=UTF-8'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
console.error('Failed fetching user informations')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
const data = await response.json()
|
|
|
|
if ((typeof data) !== 'object') {
|
|
|
|
console.error('Failed reading user informations')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data.jid || !data.password) {
|
|
|
|
console.error('User informations does not contain required fields')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
jid: data.jid,
|
|
|
|
password: data.password
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error)
|
2021-05-03 18:37:23 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
interface InitConverseParams {
|
|
|
|
jid: string
|
|
|
|
assetsPath: string
|
|
|
|
room: string
|
|
|
|
boshServiceUrl: string
|
|
|
|
websocketServiceUrl: string
|
2021-05-04 11:00:44 +00:00
|
|
|
authenticationUrl: string
|
2021-05-03 18:37:23 +00:00
|
|
|
}
|
2021-05-04 11:00:44 +00:00
|
|
|
window.initConverse = async function initConverse ({
|
2021-02-20 22:12:12 +00:00
|
|
|
jid,
|
|
|
|
assetsPath,
|
2021-02-20 19:42:41 +00:00
|
|
|
room,
|
2021-02-20 22:12:12 +00:00
|
|
|
boshServiceUrl,
|
2021-05-03 18:37:23 +00:00
|
|
|
websocketServiceUrl,
|
2021-05-04 11:00:44 +00:00
|
|
|
authenticationUrl
|
2021-05-03 18:37:23 +00:00
|
|
|
}: InitConverseParams) {
|
|
|
|
const params: any = {
|
2021-02-20 22:12:12 +00:00
|
|
|
assets_path: assetsPath,
|
2021-02-20 19:42:41 +00:00
|
|
|
|
|
|
|
authentication: 'anonymous',
|
|
|
|
auto_login: true,
|
|
|
|
auto_join_rooms: [
|
|
|
|
room
|
|
|
|
],
|
2021-02-21 15:10:52 +00:00
|
|
|
discover_connection_methods: false, // this parameter seems buggy with converseJS 7.0.4
|
2021-02-20 22:12:12 +00:00
|
|
|
bosh_service_url: boshServiceUrl === '' ? undefined : boshServiceUrl,
|
|
|
|
websocket_url: websocketServiceUrl === '' ? undefined : websocketServiceUrl,
|
|
|
|
jid: jid,
|
2021-02-20 19:42:41 +00:00
|
|
|
notify_all_room_messages: [
|
|
|
|
room
|
|
|
|
],
|
|
|
|
singleton: true,
|
|
|
|
auto_focus: false,
|
2021-05-02 12:41:54 +00:00
|
|
|
hide_muc_participants: inIframe(),
|
2021-02-20 19:42:41 +00:00
|
|
|
keepalive: true,
|
|
|
|
play_sounds: false,
|
|
|
|
muc_mention_autocomplete_min_chars: 3,
|
|
|
|
muc_mention_autocomplete_filter: 'contains',
|
|
|
|
modtools_disable_assign: true,
|
|
|
|
muc_disable_slash_commands: [
|
|
|
|
'admin', 'ban', 'clear', 'deop', 'destroy', 'kick',
|
|
|
|
'member', 'modtools', 'mute', 'op', 'owner', 'register',
|
|
|
|
'revoke', 'subject', 'topic', 'voice'
|
|
|
|
],
|
|
|
|
muc_instant_rooms: true,
|
|
|
|
show_client_info: false,
|
|
|
|
allow_adhoc_commands: false,
|
|
|
|
allow_contact_requests: false,
|
2021-05-03 18:37:23 +00:00
|
|
|
allow_logout: false,
|
2021-02-20 19:42:41 +00:00
|
|
|
show_controlbox_by_default: false,
|
2021-05-03 18:37:23 +00:00
|
|
|
view_mode: 'fullscreen',
|
|
|
|
allow_message_corrections: true,
|
|
|
|
allow_message_retraction: 'all'
|
|
|
|
}
|
|
|
|
|
2021-05-04 11:00:44 +00:00
|
|
|
if (authenticationUrl !== '') {
|
|
|
|
const auth = await authenticatedMode(authenticationUrl)
|
|
|
|
if (auth) {
|
|
|
|
params.authentication = 'login'
|
|
|
|
params.auto_login = true
|
|
|
|
params.auto_reconnect = true
|
|
|
|
params.jid = auth.jid
|
|
|
|
params.password = auth.password
|
|
|
|
params.muc_nickname_from_jid = true
|
|
|
|
// FIXME: use params.oauth_providers?
|
|
|
|
}
|
2021-05-03 18:37:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window.converse.initialize(params)
|
2021-02-20 19:42:41 +00:00
|
|
|
}
|