2017-12-12 17:53:50 +01:00
|
|
|
import { Model } from 'sequelize-typescript'
|
2018-05-22 19:43:13 +02:00
|
|
|
import * as ipaddr from 'ipaddr.js'
|
2017-07-05 13:26:25 +02:00
|
|
|
import { ResultList } from '../../shared'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { VideoResolution } from '../../shared/models/videos'
|
2018-04-24 15:10:54 +02:00
|
|
|
import { CONFIG } from '../initializers'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { UserModel } from '../models/account/user'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
|
|
|
import { ApplicationModel } from '../models/application/application'
|
2017-11-23 17:53:38 +01:00
|
|
|
import { pseudoRandomBytesPromise } from './core-utils'
|
2017-11-16 11:08:25 +01:00
|
|
|
import { logger } from './logger'
|
2016-05-10 21:19:24 +02:00
|
|
|
|
2018-06-12 20:04:58 +02:00
|
|
|
const isCidr = require('is-cidr')
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function generateRandomString (size: number) {
|
|
|
|
const raw = await pseudoRandomBytesPromise(size)
|
|
|
|
|
|
|
|
return raw.toString('hex')
|
2017-02-26 18:57:33 +01:00
|
|
|
}
|
|
|
|
|
2017-10-02 12:20:26 +02:00
|
|
|
interface FormattableToJSON {
|
2018-06-12 20:04:58 +02:00
|
|
|
toFormattedJSON (args?: any)
|
2017-06-17 11:28:11 +02:00
|
|
|
}
|
|
|
|
|
2018-06-12 20:04:58 +02:00
|
|
|
function getFormattedObjects<U, T extends FormattableToJSON> (objects: T[], objectsTotal: number, formattedArg?: any) {
|
2017-08-25 11:45:31 +02:00
|
|
|
const formattedObjects: U[] = []
|
2017-01-04 20:59:23 +01:00
|
|
|
|
2017-07-11 17:04:57 +02:00
|
|
|
objects.forEach(object => {
|
2018-06-12 20:04:58 +02:00
|
|
|
formattedObjects.push(object.toFormattedJSON(formattedArg))
|
2017-01-04 20:59:23 +01:00
|
|
|
})
|
|
|
|
|
2018-06-12 20:04:58 +02:00
|
|
|
return {
|
2017-01-04 20:59:23 +01:00
|
|
|
total: objectsTotal,
|
2017-08-25 11:45:31 +02:00
|
|
|
data: formattedObjects
|
2018-06-12 20:04:58 +02:00
|
|
|
} as ResultList<U>
|
2017-01-04 20:59:23 +01:00
|
|
|
}
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function isSignupAllowed () {
|
2017-07-25 20:17:28 +02:00
|
|
|
if (CONFIG.SIGNUP.ENABLED === false) {
|
2017-10-25 16:03:33 +02:00
|
|
|
return false
|
2017-07-25 20:17:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// No limit and signup is enabled
|
|
|
|
if (CONFIG.SIGNUP.LIMIT === -1) {
|
2017-10-25 16:03:33 +02:00
|
|
|
return true
|
2017-07-25 20:17:28 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
const totalUsers = await UserModel.countTotal()
|
2017-10-25 16:03:33 +02:00
|
|
|
|
|
|
|
return totalUsers < CONFIG.SIGNUP.LIMIT
|
2017-07-25 20:17:28 +02:00
|
|
|
}
|
|
|
|
|
2018-05-22 19:43:13 +02:00
|
|
|
function isSignupAllowedForCurrentIP (ip: string) {
|
|
|
|
const addr = ipaddr.parse(ip)
|
|
|
|
let excludeList = [ 'blacklist' ]
|
2018-07-25 22:01:25 +02:00
|
|
|
let matched = ''
|
2018-05-22 19:43:13 +02:00
|
|
|
|
|
|
|
// if there is a valid, non-empty whitelist, we exclude all unknown adresses too
|
|
|
|
if (CONFIG.SIGNUP.FILTERS.CIDR.WHITELIST.filter(cidr => isCidr(cidr)).length > 0) {
|
|
|
|
excludeList.push('unknown')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addr.kind() === 'ipv4') {
|
|
|
|
const addrV4 = ipaddr.IPv4.parse(ip)
|
|
|
|
const rangeList = {
|
|
|
|
whitelist: CONFIG.SIGNUP.FILTERS.CIDR.WHITELIST.filter(cidr => isCidr.v4(cidr))
|
|
|
|
.map(cidr => ipaddr.IPv4.parseCIDR(cidr)),
|
|
|
|
blacklist: CONFIG.SIGNUP.FILTERS.CIDR.BLACKLIST.filter(cidr => isCidr.v4(cidr))
|
|
|
|
.map(cidr => ipaddr.IPv4.parseCIDR(cidr))
|
|
|
|
}
|
|
|
|
matched = ipaddr.subnetMatch(addrV4, rangeList, 'unknown')
|
|
|
|
} else if (addr.kind() === 'ipv6') {
|
|
|
|
const addrV6 = ipaddr.IPv6.parse(ip)
|
|
|
|
const rangeList = {
|
|
|
|
whitelist: CONFIG.SIGNUP.FILTERS.CIDR.WHITELIST.filter(cidr => isCidr.v6(cidr))
|
|
|
|
.map(cidr => ipaddr.IPv6.parseCIDR(cidr)),
|
|
|
|
blacklist: CONFIG.SIGNUP.FILTERS.CIDR.BLACKLIST.filter(cidr => isCidr.v6(cidr))
|
|
|
|
.map(cidr => ipaddr.IPv6.parseCIDR(cidr))
|
|
|
|
}
|
|
|
|
matched = ipaddr.subnetMatch(addrV6, rangeList, 'unknown')
|
|
|
|
}
|
|
|
|
|
|
|
|
return !excludeList.includes(matched)
|
|
|
|
}
|
|
|
|
|
2017-10-02 12:20:26 +02:00
|
|
|
function computeResolutionsToTranscode (videoFileHeight: number) {
|
|
|
|
const resolutionsEnabled: number[] = []
|
|
|
|
const configResolutions = CONFIG.TRANSCODING.RESOLUTIONS
|
|
|
|
|
2018-06-12 20:04:58 +02:00
|
|
|
// Put in the order we want to proceed jobs
|
2017-10-02 12:20:26 +02:00
|
|
|
const resolutions = [
|
|
|
|
VideoResolution.H_480P,
|
2018-06-12 20:04:58 +02:00
|
|
|
VideoResolution.H_360P,
|
2017-10-02 12:20:26 +02:00
|
|
|
VideoResolution.H_720P,
|
2018-06-12 20:04:58 +02:00
|
|
|
VideoResolution.H_240P,
|
2017-10-02 12:20:26 +02:00
|
|
|
VideoResolution.H_1080P
|
|
|
|
]
|
|
|
|
|
|
|
|
for (const resolution of resolutions) {
|
2018-06-12 20:04:58 +02:00
|
|
|
if (configResolutions[ resolution + 'p' ] === true && videoFileHeight > resolution) {
|
2017-10-02 12:20:26 +02:00
|
|
|
resolutionsEnabled.push(resolution)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolutionsEnabled
|
|
|
|
}
|
|
|
|
|
2018-07-21 23:00:25 +02:00
|
|
|
const timeTable = {
|
|
|
|
ms: 1,
|
|
|
|
second: 1000,
|
|
|
|
minute: 60000,
|
|
|
|
hour: 3600000,
|
|
|
|
day: 3600000 * 24,
|
|
|
|
week: 3600000 * 24 * 7,
|
|
|
|
month: 3600000 * 24 * 30
|
|
|
|
}
|
2018-07-24 14:35:11 +02:00
|
|
|
export function parseDuration (duration: number | string): number {
|
2018-07-21 23:00:25 +02:00
|
|
|
if (typeof duration === 'number') return duration
|
|
|
|
|
|
|
|
if (typeof duration === 'string') {
|
|
|
|
const split = duration.match(/^([\d\.,]+)\s?(\w+)$/)
|
|
|
|
|
|
|
|
if (split.length === 3) {
|
|
|
|
const len = parseFloat(split[1])
|
|
|
|
let unit = split[2].replace(/s$/i,'').toLowerCase()
|
|
|
|
if (unit === 'm') {
|
|
|
|
unit = 'ms'
|
|
|
|
}
|
|
|
|
|
|
|
|
return (len || 1) * (timeTable[unit] || 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 14:35:11 +02:00
|
|
|
throw new Error('Duration could not be properly parsed')
|
2018-07-21 23:00:25 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
function resetSequelizeInstance (instance: Model<any>, savedFields: object) {
|
2017-10-25 11:55:06 +02:00
|
|
|
Object.keys(savedFields).forEach(key => {
|
|
|
|
const value = savedFields[key]
|
|
|
|
instance.set(key, value)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
let serverActor: ActorModel
|
|
|
|
async function getServerActor () {
|
|
|
|
if (serverActor === undefined) {
|
|
|
|
const application = await ApplicationModel.load()
|
2018-07-25 22:01:25 +02:00
|
|
|
if (!application) throw Error('Could not application.')
|
2017-12-14 17:38:41 +01:00
|
|
|
serverActor = application.Account.Actor
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
if (!serverActor) {
|
|
|
|
logger.error('Cannot load server actor.')
|
2017-11-16 11:08:25 +01:00
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
return Promise.resolve(serverActor)
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
2017-09-22 09:13:43 +02:00
|
|
|
type SortType = { sortModel: any, sortValue: string }
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
generateRandomString,
|
2017-08-25 11:45:31 +02:00
|
|
|
getFormattedObjects,
|
2017-09-22 09:13:43 +02:00
|
|
|
isSignupAllowed,
|
2018-05-22 19:43:13 +02:00
|
|
|
isSignupAllowedForCurrentIP,
|
2017-10-02 12:20:26 +02:00
|
|
|
computeResolutionsToTranscode,
|
2017-10-25 11:55:06 +02:00
|
|
|
resetSequelizeInstance,
|
2017-12-14 17:38:41 +01:00
|
|
|
getServerActor,
|
2018-04-24 15:10:54 +02:00
|
|
|
SortType
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|