2017-11-20 04:24:29 -05:00
|
|
|
import { join } from 'path'
|
|
|
|
import * as request from 'request'
|
2017-11-23 08:19:55 -05:00
|
|
|
import { Transaction } from 'sequelize'
|
2017-11-20 04:24:29 -05:00
|
|
|
import { ActivityIconObject } from '../../../shared/index'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { doRequest, doRequestAndSaveToFile } from '../../helpers'
|
|
|
|
import { CONFIG, REMOTE_SCHEME, STATIC_PATHS } from '../../initializers'
|
|
|
|
import { AccountModel } from '../../models/account/account'
|
|
|
|
import { VideoModel } from '../../models/video/video'
|
2017-11-23 08:19:55 -05:00
|
|
|
import {
|
2017-12-12 11:53:50 -05:00
|
|
|
sendCreateDislikeToOrigin,
|
|
|
|
sendCreateDislikeToVideoFollowers,
|
|
|
|
sendLikeToOrigin,
|
|
|
|
sendLikeToVideoFollowers,
|
2017-11-23 08:19:55 -05:00
|
|
|
sendUndoDislikeToOrigin,
|
|
|
|
sendUndoDislikeToVideoFollowers,
|
|
|
|
sendUndoLikeToOrigin,
|
|
|
|
sendUndoLikeToVideoFollowers
|
2017-12-12 11:53:50 -05:00
|
|
|
} from './send'
|
2017-11-20 04:24:29 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
function fetchRemoteVideoPreview (video: VideoModel) {
|
2017-11-20 04:24:29 -05:00
|
|
|
// FIXME: use url
|
2017-12-14 11:38:41 -05:00
|
|
|
const host = video.VideoChannel.Account.Actor.Server.host
|
2017-11-20 04:24:29 -05:00
|
|
|
const path = join(STATIC_PATHS.PREVIEWS, video.getPreviewName())
|
|
|
|
|
|
|
|
return request.get(REMOTE_SCHEME.HTTP + '://' + host + path)
|
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
async function fetchRemoteVideoDescription (video: VideoModel) {
|
2017-11-20 04:24:29 -05:00
|
|
|
// FIXME: use url
|
2017-12-14 11:38:41 -05:00
|
|
|
const host = video.VideoChannel.Account.Actor.Server.host
|
2017-11-20 04:24:29 -05:00
|
|
|
const path = video.getDescriptionPath()
|
|
|
|
const options = {
|
|
|
|
uri: REMOTE_SCHEME.HTTP + '://' + host + path,
|
|
|
|
json: true
|
|
|
|
}
|
|
|
|
|
|
|
|
const { body } = await doRequest(options)
|
|
|
|
return body.description ? body.description : ''
|
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
function generateThumbnailFromUrl (video: VideoModel, icon: ActivityIconObject) {
|
2017-11-20 04:24:29 -05:00
|
|
|
const thumbnailName = video.getThumbnailName()
|
|
|
|
const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, thumbnailName)
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
method: 'GET',
|
|
|
|
uri: icon.url
|
|
|
|
}
|
|
|
|
return doRequestAndSaveToFile(options, thumbnailPath)
|
|
|
|
}
|
|
|
|
|
2017-11-30 07:51:53 -05:00
|
|
|
async function sendVideoRateChangeToFollowers (
|
2017-12-14 11:38:41 -05:00
|
|
|
account: AccountModel,
|
2017-12-12 11:53:50 -05:00
|
|
|
video: VideoModel,
|
2017-11-30 07:51:53 -05:00
|
|
|
likes: number,
|
|
|
|
dislikes: number,
|
|
|
|
t: Transaction
|
|
|
|
) {
|
2017-12-14 11:38:41 -05:00
|
|
|
const actor = account.Actor
|
|
|
|
|
2017-11-30 07:51:53 -05:00
|
|
|
// Keep the order: first we undo and then we create
|
2017-11-23 08:19:55 -05:00
|
|
|
|
|
|
|
// Undo Like
|
2017-12-14 11:38:41 -05:00
|
|
|
if (likes < 0) await sendUndoLikeToVideoFollowers(actor, video, t)
|
2017-11-23 08:19:55 -05:00
|
|
|
// Undo Dislike
|
2017-12-14 11:38:41 -05:00
|
|
|
if (dislikes < 0) await sendUndoDislikeToVideoFollowers(actor, video, t)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2017-11-30 07:51:53 -05:00
|
|
|
// Like
|
2017-12-14 11:38:41 -05:00
|
|
|
if (likes > 0) await sendLikeToVideoFollowers(actor, video, t)
|
2017-11-30 07:51:53 -05:00
|
|
|
// Dislike
|
2017-12-14 11:38:41 -05:00
|
|
|
if (dislikes > 0) await sendCreateDislikeToVideoFollowers(actor, video, t)
|
2017-11-23 08:19:55 -05:00
|
|
|
}
|
|
|
|
|
2017-11-30 07:51:53 -05:00
|
|
|
async function sendVideoRateChangeToOrigin (
|
2017-12-14 11:38:41 -05:00
|
|
|
account: AccountModel,
|
2017-12-12 11:53:50 -05:00
|
|
|
video: VideoModel,
|
2017-11-30 07:51:53 -05:00
|
|
|
likes: number,
|
|
|
|
dislikes: number,
|
|
|
|
t: Transaction
|
|
|
|
) {
|
2017-12-14 11:38:41 -05:00
|
|
|
const actor = account.Actor
|
|
|
|
|
2017-11-30 07:51:53 -05:00
|
|
|
// Keep the order: first we undo and then we create
|
2017-11-23 08:19:55 -05:00
|
|
|
|
|
|
|
// Undo Like
|
2017-12-14 11:38:41 -05:00
|
|
|
if (likes < 0) await sendUndoLikeToOrigin(actor, video, t)
|
2017-11-23 08:19:55 -05:00
|
|
|
// Undo Dislike
|
2017-12-14 11:38:41 -05:00
|
|
|
if (dislikes < 0) await sendUndoDislikeToOrigin(actor, video, t)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2017-11-30 07:51:53 -05:00
|
|
|
// Like
|
2017-12-14 11:38:41 -05:00
|
|
|
if (likes > 0) await sendLikeToOrigin(actor, video, t)
|
2017-11-30 07:51:53 -05:00
|
|
|
// Dislike
|
2017-12-14 11:38:41 -05:00
|
|
|
if (dislikes > 0) await sendCreateDislikeToOrigin(actor, video, t)
|
2017-11-23 08:19:55 -05:00
|
|
|
}
|
|
|
|
|
2017-11-20 04:24:29 -05:00
|
|
|
export {
|
|
|
|
fetchRemoteVideoPreview,
|
|
|
|
fetchRemoteVideoDescription,
|
2017-11-23 08:19:55 -05:00
|
|
|
generateThumbnailFromUrl,
|
|
|
|
sendVideoRateChangeToFollowers,
|
|
|
|
sendVideoRateChangeToOrigin
|
2017-11-20 04:24:29 -05:00
|
|
|
}
|