1
0
Fork 0

Automatically resize avatars

This commit is contained in:
Chocobozzz 2018-01-03 11:36:03 +01:00
parent 01de67b9a4
commit e8e122002d
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
12 changed files with 27 additions and 11 deletions

View File

@ -114,6 +114,7 @@
"@types/request": "^2.0.3",
"@types/sanitize-html": "^1.14.0",
"@types/sequelize": "^4.0.55",
"@types/sharp": "^0.17.6",
"@types/supertest": "^2.0.3",
"@types/validator": "^6.2.0",
"@types/webtorrent": "^0.98.4",

View File

@ -164,7 +164,7 @@ function onDatabaseInitDone () {
.then(() => {
// ----------- Make the server listening -----------
server.listen(port, () => {
VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.FILE_SIZE)
VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE)
activitypubHttpJobScheduler.activate()
transcodingJobScheduler.activate()

View File

@ -16,7 +16,7 @@ inboxRouter.post('/inbox',
asyncMiddleware(inboxController)
)
inboxRouter.post('/account/:name/inbox',
inboxRouter.post('/accounts/:name/inbox',
signatureValidator,
asyncMiddleware(checkSignature),
localAccountValidator,

View File

@ -11,7 +11,7 @@ import { VideoModel } from '../../models/video/video'
const outboxRouter = express.Router()
outboxRouter.get('/account/:name/outbox',
outboxRouter.get('/accounts/:name/outbox',
localAccountValidator,
asyncMiddleware(outboxController)
)

View File

@ -1,12 +1,13 @@
import * as express from 'express'
import { extname, join } from 'path'
import * as sharp from 'sharp'
import * as uuidv4 from 'uuid/v4'
import { UserCreate, UserRight, UserRole, UserUpdate, UserUpdateMe, UserVideoRate as FormattedUserVideoRate } from '../../../shared'
import { renamePromise } from '../../helpers/core-utils'
import { renamePromise, unlinkPromise } from '../../helpers/core-utils'
import { retryTransactionWrapper } from '../../helpers/database-utils'
import { logger } from '../../helpers/logger'
import { createReqFiles, getFormattedObjects } from '../../helpers/utils'
import { AVATAR_MIMETYPE_EXT, CONFIG, sequelizeTypescript } from '../../initializers'
import { AVATAR_MIMETYPE_EXT, AVATARS_SIZE, CONFIG, sequelizeTypescript } from '../../initializers'
import { createUserAccountAndChannel } from '../../lib/user'
import {
asyncMiddleware, authenticate, ensureUserHasRight, ensureUserRegistrationAllowed, paginationValidator, setPagination, setUsersSort,
@ -239,7 +240,11 @@ async function updateMyAvatar (req: express.Request, res: express.Response, next
const avatarName = uuidv4() + extension
const destination = join(avatarDir, avatarName)
await renamePromise(source, destination)
await sharp(source)
.resize(AVATARS_SIZE.width, AVATARS_SIZE.height)
.toFile(destination)
await unlinkPromise(source)
const { avatar } = await sequelizeTypescript.transaction(async t => {
const avatar = await AvatarModel.create({

View File

@ -316,6 +316,10 @@ const PREVIEWS_SIZE = {
width: 560,
height: 315
}
const AVATARS_SIZE = {
width: 120,
height: 120
}
const EMBED_SIZE = {
width: 560,
@ -355,6 +359,7 @@ CONFIG.WEBSERVER.HOST = sanitizeHost(CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WE
export {
API_VERSION,
AVATARS_SIZE,
ACCEPT_HEADERS,
BCRYPT_SALT_SIZE,
CACHE,

View File

@ -12,7 +12,6 @@ import { isSignupAllowed } from '../../helpers/utils'
import { CONSTRAINTS_FIELDS } from '../../initializers'
import { UserModel } from '../../models/account/user'
import { areValidationErrors } from './utils'
import Multer = require('multer')
const usersAddValidator = [
body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'),
@ -105,7 +104,7 @@ const usersUpdateMyAvatarValidator = [
),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking usersUpdateMyAvatarValidator parameters', { parameters: req.body })
logger.debug('Checking usersUpdateMyAvatarValidator parameters', { files: req.files })
if (areValidationErrors(req, res)) return

View File

@ -27,7 +27,7 @@ export class ServerModel extends Model<ServerModel> {
@AllowNull(false)
@Default(SERVERS_SCORE.BASE)
@IsInt
@Max(SERVERS_SCORE.max)
@Max(SERVERS_SCORE.MAX)
@Column
score: number

View File

@ -214,7 +214,7 @@ export class VideoCommentModel extends Model<VideoCommentModel> {
static listThreadCommentsForApi (videoId: number, threadId: number) {
const query = {
order: [ [ 'createdAt', 'DESC' ] ],
order: [ [ 'createdAt', 'ASC' ] ],
where: {
videoId,
[ Sequelize.Op.or ]: [

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -352,7 +352,7 @@ describe('Test users', function () {
const res = await getMyUserInformation(server.url, accessTokenUser)
const user = res.body
const test = await testVideoImage(server.url, 'avatar', user.account.avatar.path, '.png')
const test = await testVideoImage(server.url, 'avatar-resized', user.account.avatar.path, '.png')
expect(test).to.equal(true)
})

View File

@ -170,6 +170,12 @@
"@types/express-serve-static-core" "*"
"@types/mime" "*"
"@types/sharp@^0.17.6":
version "0.17.6"
resolved "https://registry.yarnpkg.com/@types/sharp/-/sharp-0.17.6.tgz#3138602163b30b4969f75a2755a3f90caaaa9be3"
dependencies:
"@types/node" "*"
"@types/simple-peer@*":
version "6.1.4"
resolved "https://registry.yarnpkg.com/@types/simple-peer/-/simple-peer-6.1.4.tgz#1d1384e1d8dc17b9e7d1673d704febe91ca48191"