はじまりの大地
このコミットが含まれているのは:
@@ -0,0 +1,85 @@
|
||||
async function register ({
|
||||
registerExternalAuth,
|
||||
peertubeHelpers,
|
||||
settingsManager,
|
||||
unregisterExternalAuth
|
||||
}) {
|
||||
{
|
||||
const result = registerExternalAuth({
|
||||
authName: 'external-auth-1',
|
||||
authDisplayName: () => 'External Auth 1',
|
||||
onLogout: user => peertubeHelpers.logger.info('On logout %s', user.username),
|
||||
onAuthRequest: (req, res) => {
|
||||
const username = req.query.username
|
||||
|
||||
result.userAuthenticated({
|
||||
req,
|
||||
res,
|
||||
username,
|
||||
email: username + '@example.com'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
{
|
||||
const result = registerExternalAuth({
|
||||
authName: 'external-auth-2',
|
||||
authDisplayName: () => 'External Auth 2',
|
||||
onAuthRequest: (req, res) => {
|
||||
result.userAuthenticated({
|
||||
req,
|
||||
res,
|
||||
username: 'kefka',
|
||||
email: 'kefka@example.com',
|
||||
role: 0,
|
||||
displayName: 'Kefka Palazzo',
|
||||
adminFlags: 1,
|
||||
videoQuota: 42000,
|
||||
videoQuotaDaily: 42100,
|
||||
|
||||
// Always use new value except for videoQuotaDaily field
|
||||
userUpdater: ({ fieldName, currentValue, newValue }) => {
|
||||
if (fieldName === 'videoQuotaDaily') return currentValue
|
||||
|
||||
return newValue
|
||||
}
|
||||
})
|
||||
},
|
||||
hookTokenValidity: (options) => {
|
||||
if (options.type === 'refresh') {
|
||||
return { valid: false }
|
||||
}
|
||||
|
||||
if (options.type === 'access') {
|
||||
const token = options.token
|
||||
const now = new Date()
|
||||
now.setTime(now.getTime() - 5000)
|
||||
|
||||
const createdAt = new Date(token.createdAt)
|
||||
|
||||
return { valid: createdAt.getTime() >= now.getTime() }
|
||||
}
|
||||
|
||||
return { valid: true }
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
settingsManager.onSettingsChange(settings => {
|
||||
if (settings.disableKefka) {
|
||||
unregisterExternalAuth('external-auth-2')
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
async function unregister () {
|
||||
return
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
register,
|
||||
unregister
|
||||
}
|
||||
|
||||
// ###########################################################################
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "peertube-plugin-test-external-auth-one",
|
||||
"version": "0.0.1",
|
||||
"description": "External auth one",
|
||||
"engine": {
|
||||
"peertube": ">=1.3.0"
|
||||
},
|
||||
"keywords": [
|
||||
"peertube",
|
||||
"plugin"
|
||||
],
|
||||
"homepage": "https://github.com/Chocobozzz/PeerTube",
|
||||
"author": "Chocobozzz",
|
||||
"bugs": "https://github.com/Chocobozzz/PeerTube/issues",
|
||||
"library": "./main.js",
|
||||
"staticDirs": {},
|
||||
"css": [],
|
||||
"clientScripts": [],
|
||||
"translations": {}
|
||||
}
|
||||
新しい課題から参照
ユーザをブロックする