はじまりの大地

このコミットが含まれているのは:
2024-07-15 09:14:04 +09:00
コミット 6632905f32
3501個のファイルの変更1439465行の追加0行の削除
+106
ファイルの表示
@@ -0,0 +1,106 @@
async function register ({
registerIdAndPassAuth,
peertubeHelpers
}) {
registerIdAndPassAuth({
authName: 'laguna-bad-auth',
onLogout: () => {
peertubeHelpers.logger.info('On logout for auth 3 - 1')
},
getWeight: () => 5,
login (body) {
if (body.id === 'laguna' && body.password === 'laguna password') {
return Promise.resolve({
username: 'laguna',
email: 'laguna@example.com',
displayName: 'Laguna Loire'
})
}
return null
}
})
registerIdAndPassAuth({
authName: 'ward-auth',
getWeight: () => 5,
login (body) {
if (body.id === 'ward') {
return Promise.resolve({
username: '-ward-42',
email: 'ward@example.com'
})
}
return null
}
})
registerIdAndPassAuth({
authName: 'kiros-auth',
getWeight: () => 5,
login (body) {
if (body.id === 'kiros') {
return Promise.resolve({
username: 'kiros',
email: 'kiros@example.com',
displayName: 'a'.repeat(5000)
})
}
return null
}
})
registerIdAndPassAuth({
authName: 'raine-auth',
getWeight: () => 5,
login (body) {
if (body.id === 'raine') {
return Promise.resolve({
username: 'raine',
email: 'raine@example.com',
role: 42
})
}
return null
}
})
registerIdAndPassAuth({
authName: 'ellone-auth',
getWeight: () => 5,
login (body) {
if (body.id === 'ellone') {
return Promise.resolve({
username: 'ellone'
})
}
return null
}
})
}
async function unregister () {
return
}
module.exports = {
register,
unregister
}
// ###########################################################################
+20
ファイルの表示
@@ -0,0 +1,20 @@
{
"name": "peertube-plugin-test-id-pass-auth-three",
"version": "0.0.1",
"description": "Id and pass auth three",
"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": {}
}