]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/helpers/custom-validators/accounts.ts
Add list of instance follows in about page
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / accounts.ts
index 8dc5d1f0d778fa7f2623d85a9861beeb3f4842d5..31a2de5ca6ce5e2b5377ab4a3193bfd0108fbd99 100644 (file)
@@ -1,39 +1,47 @@
 import * as Bluebird from 'bluebird'
 import { Response } from 'express'
 import 'express-validator'
-import * as validator from 'validator'
 import { AccountModel } from '../../models/account/account'
-import { isUserUsernameValid } from './users'
+import { isUserDescriptionValid, isUserUsernameValid } from './users'
+import { exists } from './misc'
 
 function isAccountNameValid (value: string) {
   return isUserUsernameValid(value)
 }
 
-function isAccountIdExist (id: number | string, res: Response) {
-  let promise: Bluebird<AccountModel>
+function isAccountIdValid (value: string) {
+  return exists(value)
+}
 
-  if (validator.isInt('' + id)) {
-    promise = AccountModel.load(+id)
-  } else { // UUID
-    promise = AccountModel.loadByUUID('' + id)
-  }
+function isAccountDescriptionValid (value: string) {
+  return isUserDescriptionValid(value)
+}
 
-  return isAccountExist(promise, res)
+function doesAccountIdExist (id: number, res: Response, sendNotFound = true) {
+  const promise = AccountModel.load(id)
+
+  return doesAccountExist(promise, res, sendNotFound)
 }
 
-function isLocalAccountNameExist (name: string, res: Response) {
+function doesLocalAccountNameExist (name: string, res: Response, sendNotFound = true) {
   const promise = AccountModel.loadLocalByName(name)
 
-  return isAccountExist(promise, res)
+  return doesAccountExist(promise, res, sendNotFound)
+}
+
+function doesAccountNameWithHostExist (nameWithDomain: string, res: Response, sendNotFound = true) {
+  return doesAccountExist(AccountModel.loadByNameWithHost(nameWithDomain), res, sendNotFound)
 }
 
-async function isAccountExist (p: Bluebird<AccountModel>, res: Response) {
+async function doesAccountExist (p: Bluebird<AccountModel>, res: Response, sendNotFound: boolean) {
   const account = await p
 
   if (!account) {
-    res.status(404)
-      .send({ error: 'Account not found' })
-      .end()
+    if (sendNotFound === true) {
+      res.status(404)
+         .send({ error: 'Account not found' })
+         .end()
+    }
 
     return false
   }
@@ -46,7 +54,10 @@ async function isAccountExist (p: Bluebird<AccountModel>, res: Response) {
 // ---------------------------------------------------------------------------
 
 export {
-  isAccountIdExist,
-  isLocalAccountNameExist,
+  isAccountIdValid,
+  doesAccountIdExist,
+  doesLocalAccountNameExist,
+  isAccountDescriptionValid,
+  doesAccountNameWithHostExist,
   isAccountNameValid
 }