024186ba2c
* refactoring, to allow several OIDC singletons * settings for google and facebook * backend code
48 lines
1.8 KiB
TypeScript
48 lines
1.8 KiB
TypeScript
import type { RegisterServerOptions } from '@peertube/peertube-types'
|
|
import { diagBackend } from './backend'
|
|
import { TestResult, newResult } from './utils'
|
|
import { diagDebug } from './debug'
|
|
import { diagProsody } from './prosody'
|
|
import { diagVideo } from './video'
|
|
import { diagExternalAuthOIDC } from './external-auth-oidc'
|
|
import { helpUrl } from '../../../shared/lib/help'
|
|
|
|
export async function diag (test: string, options: RegisterServerOptions): Promise<TestResult> {
|
|
let result: TestResult
|
|
|
|
if (test === 'backend') {
|
|
result = await diagBackend(test, options)
|
|
} else if (test === 'debug') {
|
|
result = await diagDebug(test, options)
|
|
} else if (test === 'webchat-video') {
|
|
result = await diagVideo(test, options)
|
|
} else if (test === 'prosody') {
|
|
result = await diagProsody(test, options)
|
|
} else if (test === 'external-auth-custom-oidc') {
|
|
result = await diagExternalAuthOIDC(test, options, 'custom', 'external-auth-google-oidc')
|
|
} else if (test === 'external-auth-google-oidc') {
|
|
result = await diagExternalAuthOIDC(test, options, 'google', 'external-auth-facebook-oidc')
|
|
} else if (test === 'external-auth-facebook-oidc') {
|
|
result = await diagExternalAuthOIDC(test, options, 'facebook', 'everything-ok')
|
|
} else if (test === 'everything-ok') {
|
|
result = newResult(test)
|
|
result.label = 'Everything seems fine'
|
|
result.messages = [{
|
|
level: 'info',
|
|
message: 'If you still encounter issues with the plugin, check this documentation page:',
|
|
help: {
|
|
text: 'Plugin troubleshooting',
|
|
url: helpUrl({
|
|
page: 'documentation/installation/troubleshooting'
|
|
})
|
|
}
|
|
}]
|
|
result.ok = true
|
|
} else {
|
|
result = newResult(test)
|
|
result.messages.push('Unknown test')
|
|
}
|
|
|
|
return result
|
|
}
|