Fix lint
[oweals/peertube.git] / server / lib / activitypub / share.ts
index 689e200a6c4cce00074b2db63e72e7d1a8169a8c..fd374d03d178a3e1e33c6cc8aaecc6edeac7177f 100644 (file)
@@ -1,33 +1,33 @@
 import { Transaction } from 'sequelize'
-import { getServerAccount } from '../../helpers/utils'
-import { database as db } from '../../initializers'
-import { VideoChannelInstance } from '../../models/index'
-import { VideoInstance } from '../../models/video/video-interface'
-import { sendVideoAnnounce, sendVideoChannelAnnounce } from './send/send-announce'
+import { VideoPrivacy } from '../../../shared/models/videos'
+import { getServerActor } from '../../helpers/utils'
+import { VideoModel } from '../../models/video/video'
+import { VideoShareModel } from '../../models/video/video-share'
+import { sendVideoAnnounceToFollowers } from './send'
 
-async function shareVideoChannelByServer (videoChannel: VideoChannelInstance, t: Transaction) {
-  const serverAccount = await getServerAccount()
+async function shareVideoByServerAndChannel (video: VideoModel, t: Transaction) {
+  if (video.privacy === VideoPrivacy.PRIVATE) return undefined
 
-  await db.VideoChannelShare.create({
-    accountId: serverAccount.id,
-    videoChannelId: videoChannel.id
-  }, { transaction: t })
-
-  return sendVideoChannelAnnounce(serverAccount, videoChannel, t)
-}
+  const serverActor = await getServerActor()
 
-async function shareVideoByServer (video: VideoInstance, t: Transaction) {
-  const serverAccount = await getServerAccount()
+  const serverShare = VideoShareModel.create({
+    actorId: serverActor.id,
+    videoId: video.id
+  }, { transaction: t })
 
-  await db.VideoShare.create({
-    accountId: serverAccount.id,
+  const videoChannelShare = VideoShareModel.create({
+    actorId: video.VideoChannel.actorId,
     videoId: video.id
   }, { transaction: t })
 
-  return sendVideoAnnounce(serverAccount, video, t)
+  await Promise.all([
+    serverShare,
+    videoChannelShare
+  ])
+
+  return sendVideoAnnounceToFollowers(serverActor, video, t)
 }
 
 export {
-  shareVideoChannelByServer,
-  shareVideoByServer
+  shareVideoByServerAndChannel
 }