mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-30 18:12:25 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			218 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			218 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const Logger = require('../Logger')
 | |
| const SocketAuthority = require('../SocketAuthority')
 | |
| 
 | |
| const User = require('../objects/user/User')
 | |
| 
 | |
| const { getId, toNumber } = require('../utils/index')
 | |
| 
 | |
| class UserController {
 | |
|   constructor() { }
 | |
| 
 | |
|   findAll(req, res) {
 | |
|     if (!req.user.isAdminOrUp) return res.sendStatus(403)
 | |
|     const hideRootToken = !req.user.isRoot
 | |
|     res.json({
 | |
|       // Minimal toJSONForBrowser does not include mediaProgress and bookmarks
 | |
|       users: this.db.users.map(u => u.toJSONForBrowser(hideRootToken, true))
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   findOne(req, res) {
 | |
|     if (!req.user.isAdminOrUp) {
 | |
|       Logger.error('User other than admin attempting to get user', req.user)
 | |
|       return res.sendStatus(403)
 | |
|     }
 | |
| 
 | |
|     const user = this.db.users.find(u => u.id === req.params.id)
 | |
|     if (!user) {
 | |
|       return res.sendStatus(404)
 | |
|     }
 | |
| 
 | |
|     res.json(this.userJsonWithItemProgressDetails(user, !req.user.isRoot))
 | |
|   }
 | |
| 
 | |
|   async create(req, res) {
 | |
|     var account = req.body
 | |
| 
 | |
|     var username = account.username
 | |
|     var usernameExists = this.db.users.find(u => u.username.toLowerCase() === username.toLowerCase())
 | |
|     if (usernameExists) {
 | |
|       return res.status(500).send('Username already taken')
 | |
|     }
 | |
| 
 | |
|     account.id = getId('usr')
 | |
|     account.pash = await this.auth.hashPass(account.password)
 | |
|     delete account.password
 | |
|     account.token = await this.auth.generateAccessToken({ userId: account.id, username })
 | |
|     account.createdAt = Date.now()
 | |
|     var newUser = new User(account)
 | |
|     var success = await this.db.insertEntity('user', newUser)
 | |
|     if (success) {
 | |
|       SocketAuthority.adminEmitter('user_added', newUser.toJSONForBrowser())
 | |
|       res.json({
 | |
|         user: newUser.toJSONForBrowser()
 | |
|       })
 | |
|     } else {
 | |
|       return res.status(500).send('Failed to save new user')
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   async update(req, res) {
 | |
|     var user = req.reqUser
 | |
| 
 | |
|     if (user.type === 'root' && !req.user.isRoot) {
 | |
|       Logger.error(`[UserController] Admin user attempted to update root user`, req.user.username)
 | |
|       return res.sendStatus(403)
 | |
|     }
 | |
| 
 | |
|     var account = req.body
 | |
|     var shouldUpdateToken = false
 | |
| 
 | |
|     if (account.username !== undefined && account.username !== user.username) {
 | |
|       var usernameExists = this.db.users.find(u => u.username.toLowerCase() === account.username.toLowerCase())
 | |
|       if (usernameExists) {
 | |
|         return res.status(500).send('Username already taken')
 | |
|       }
 | |
|       shouldUpdateToken = true
 | |
|     }
 | |
| 
 | |
|     // Updating password
 | |
|     if (account.password) {
 | |
|       account.pash = await this.auth.hashPass(account.password)
 | |
|       delete account.password
 | |
|     }
 | |
| 
 | |
|     var hasUpdated = user.update(account)
 | |
|     if (hasUpdated) {
 | |
|       if (shouldUpdateToken) {
 | |
|         user.token = await this.auth.generateAccessToken({ userId: user.id, username: user.username })
 | |
|         Logger.info(`[UserController] User ${user.username} was generated a new api token`)
 | |
|       }
 | |
|       await this.db.updateEntity('user', user)
 | |
|       SocketAuthority.clientEmitter(req.user.id, 'user_updated', user.toJSONForBrowser())
 | |
|     }
 | |
| 
 | |
|     res.json({
 | |
|       success: true,
 | |
|       user: user.toJSONForBrowser()
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   async delete(req, res) {
 | |
|     if (req.params.id === 'root') {
 | |
|       Logger.error('[UserController] Attempt to delete root user. Root user cannot be deleted')
 | |
|       return res.sendStatus(500)
 | |
|     }
 | |
|     if (req.user.id === req.params.id) {
 | |
|       Logger.error(`[UserController] ${req.user.username} is attempting to delete themselves... why? WHY?`)
 | |
|       return res.sendStatus(500)
 | |
|     }
 | |
|     const user = req.reqUser
 | |
| 
 | |
|     // Todo: check if user is logged in and cancel streams
 | |
| 
 | |
|     // Remove user playlists
 | |
|     const userPlaylists = this.db.playlists.filter(p => p.userId === user.id)
 | |
|     for (const playlist of userPlaylists) {
 | |
|       await this.db.removeEntity('playlist', playlist.id)
 | |
|     }
 | |
| 
 | |
|     const userJson = user.toJSONForBrowser()
 | |
|     await this.db.removeEntity('user', user.id)
 | |
|     SocketAuthority.adminEmitter('user_removed', userJson)
 | |
|     res.json({
 | |
|       success: true
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   // GET: api/users/:id/listening-sessions
 | |
|   async getListeningSessions(req, res) {
 | |
|     var listeningSessions = await this.getUserListeningSessionsHelper(req.params.id)
 | |
| 
 | |
|     const itemsPerPage = toNumber(req.query.itemsPerPage, 10) || 10
 | |
|     const page = toNumber(req.query.page, 0)
 | |
| 
 | |
|     const start = page * itemsPerPage
 | |
|     const sessions = listeningSessions.slice(start, start + itemsPerPage)
 | |
| 
 | |
|     const payload = {
 | |
|       total: listeningSessions.length,
 | |
|       numPages: Math.ceil(listeningSessions.length / itemsPerPage),
 | |
|       page,
 | |
|       itemsPerPage,
 | |
|       sessions
 | |
|     }
 | |
| 
 | |
|     res.json(payload)
 | |
|   }
 | |
| 
 | |
|   // GET: api/users/:id/listening-stats
 | |
|   async getListeningStats(req, res) {
 | |
|     var listeningStats = await this.getUserListeningStatsHelpers(req.params.id)
 | |
|     res.json(listeningStats)
 | |
|   }
 | |
| 
 | |
|   // POST: api/users/:id/purge-media-progress
 | |
|   async purgeMediaProgress(req, res) {
 | |
|     const user = req.reqUser
 | |
| 
 | |
|     if (user.type === 'root' && !req.user.isRoot) {
 | |
|       Logger.error(`[UserController] Admin user attempted to purge media progress of root user`, req.user.username)
 | |
|       return res.sendStatus(403)
 | |
|     }
 | |
| 
 | |
|     var progressPurged = 0
 | |
|     user.mediaProgress = user.mediaProgress.filter(mp => {
 | |
|       const libraryItem = this.db.libraryItems.find(li => li.id === mp.libraryItemId)
 | |
|       if (!libraryItem) {
 | |
|         progressPurged++
 | |
|         return false
 | |
|       } else if (mp.episodeId) {
 | |
|         const episode = libraryItem.mediaType === 'podcast' ? libraryItem.media.getEpisode(mp.episodeId) : null
 | |
|         if (!episode) { // Episode not found
 | |
|           progressPurged++
 | |
|           return false
 | |
|         }
 | |
|       }
 | |
|       return true
 | |
|     })
 | |
| 
 | |
|     if (progressPurged) {
 | |
|       Logger.info(`[UserController] Purged ${progressPurged} media progress for user ${user.username}`)
 | |
|       await this.db.updateEntity('user', user)
 | |
|       SocketAuthority.adminEmitter('user_updated', user.toJSONForBrowser())
 | |
|     }
 | |
| 
 | |
|     res.json(this.userJsonWithItemProgressDetails(user, !req.user.isRoot))
 | |
|   }
 | |
| 
 | |
|   // POST: api/users/online (admin)
 | |
|   async getOnlineUsers(req, res) {
 | |
|     if (!req.user.isAdminOrUp) {
 | |
|       return res.sendStatus(403)
 | |
|     }
 | |
| 
 | |
|     res.json({
 | |
|       usersOnline: SocketAuthority.getUsersOnline(),
 | |
|       openSessions: this.playbackSessionManager.sessions
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   middleware(req, res, next) {
 | |
|     if (!req.user.isAdminOrUp && req.user.id !== req.params.id) {
 | |
|       return res.sendStatus(403)
 | |
|     } else if ((req.method == 'PATCH' || req.method == 'POST' || req.method == 'DELETE') && !req.user.isAdminOrUp) {
 | |
|       return res.sendStatus(403)
 | |
|     }
 | |
| 
 | |
|     if (req.params.id) {
 | |
|       req.reqUser = this.db.users.find(u => u.id === req.params.id)
 | |
|       if (!req.reqUser) {
 | |
|         return res.sendStatus(404)
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     next()
 | |
|   }
 | |
| }
 | |
| module.exports = new UserController() |