|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- async function register ({
- registerIdAndPassAuth,
- peertubeHelpers
- }) {
- registerIdAndPassAuth({
- authName: 'laguna-auth',
-
- onLogout: () => {
- peertubeHelpers.logger.info('On logout for auth 2 - 1')
- },
-
- getWeight: () => 30,
-
- 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 }
- },
-
- login (body) {
- if (body.id === 'laguna' && body.password === 'laguna password') {
- return Promise.resolve({
- username: 'laguna',
- email: 'laguna@example.com',
- displayName: 'Laguna Loire',
- 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
- }
- })
- }
-
- return null
- }
- })
- }
-
- async function unregister () {
- return
- }
-
- module.exports = {
- register,
- unregister
- }
-
- // ###########################################################################
|