koel/resources/assets/js/services/socketService.ts

41 lines
996 B
TypeScript
Raw Normal View History

2022-04-15 14:24:30 +00:00
import Pusher from 'pusher-js'
import { userStore } from '@/stores'
2022-05-14 18:49:45 +00:00
import { authService } from '@/services'
2022-04-15 14:24:30 +00:00
2022-04-24 08:50:45 +00:00
export const socketService = {
2022-04-15 14:24:30 +00:00
pusher: null as Pusher.Pusher | null,
channel: null as Pusher.Channel | null,
async init () {
if (!window.PUSHER_APP_KEY) {
return false
}
this.pusher = new Pusher(window.PUSHER_APP_KEY, {
authEndpoint: `${window.BASE_URL}api/broadcasting/auth`,
auth: {
headers: {
Authorization: `Bearer ${authService.getApiToken()}`,
},
},
cluster: window.PUSHER_APP_CLUSTER,
encrypted: true,
2022-04-15 14:24:30 +00:00
})
this.channel = this.pusher.subscribe('private-koel')
return true
2022-04-15 14:24:30 +00:00
},
broadcast (eventName: string, data: any = {}) {
this.channel?.trigger(`client-${eventName}.${userStore.current.id}`, data)
2022-04-15 14:24:30 +00:00
return this
},
listen (eventName: string, cb: Closure) {
this.channel?.bind(`client-${eventName}.${userStore.current.id}`, data => cb(data))
2022-04-15 14:24:30 +00:00
return this
},
2022-04-15 14:24:30 +00:00
}