-
Notifications
You must be signed in to change notification settings - Fork 0
/
projectEventHooks.ts
113 lines (97 loc) · 4.67 KB
/
projectEventHooks.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
CPAL-1.0 License
The contents of this file are subject to the Common Public Attribution License
Version 1.0. (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
The License is based on the Mozilla Public License Version 1.1, but Sections 14
and 15 have been added to cover use of software over a computer network and
provide for limited attribution for the Original Developer. In addition,
Exhibit A has been modified to be consistent with Exhibit B.
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
The Original Code is Ethereal Engine.
The Original Developer is the Initial Developer. The Initial Developer of the
Original Code is the Ethereal Engine team.
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
Ethereal Engine. All Rights Reserved.
*/
import { BadRequest } from '@feathersjs/errors'
import path from 'path'
import { locationPath, LocationType, OembedType } from '@etherealengine/common/src/schema.type.module'
import { ProjectEventHooks } from '@etherealengine/projects/ProjectConfigInterface'
import { Application } from '@etherealengine/server-core/declarations'
import { getStorageProvider } from '@etherealengine/server-core/src/media/storageprovider/storageprovider'
import { installAvatarsFromProject } from '@etherealengine/server-core/src/user/avatar/avatar-helper'
const avatarsFolder = path.resolve(__dirname, 'assets/avatars')
const handleOEmbedRequest = async (app: Application, url: URL, currentOEmbed: OembedType) => {
const isLocation = /^\/location\//.test(url.pathname)
const isAdminPanel = /^\/admin/.test(url.pathname)
const isEditor = /^\/studio/.test(url.pathname)
if (isLocation) {
const locationName = url.pathname.replace(/\/location\//, '')
const locationResult = (await app.service(locationPath).find({
query: {
slugifiedName: locationName
},
pagination: false
} as any)) as any as LocationType[]
if (locationResult.length === 0) throw new BadRequest('Invalid location name')
const [projectName, sceneName] = locationResult[0].sceneId.split('/')
const storageProvider = getStorageProvider()
currentOEmbed.title = `${locationResult[0].name} - ${currentOEmbed.title}`
currentOEmbed.description = `Join others in VR at ${locationResult[0].name}, directly from the web browser`
currentOEmbed.type = 'photo'
currentOEmbed.url = `https://${storageProvider.cacheDomain}/projects/${projectName}/${sceneName}.thumbnail.jpeg`
currentOEmbed.height = 320
currentOEmbed.width = 512
return currentOEmbed
} else if (isAdminPanel) {
currentOEmbed.title = `Admin Dashboard - ${currentOEmbed.title}`
currentOEmbed.description = `Manage all aspects of your deployment. ${currentOEmbed.description}`
return currentOEmbed
} else if (isEditor) {
currentOEmbed.title = `Studio - ${currentOEmbed.title}`
currentOEmbed.description = `No need to download extra software. Create, publish, and edit your world directly in the web browser.`
let subPath = url.pathname.replace(/\/studio\//, '')
if (subPath.startsWith('studio')) {
subPath = url.pathname.replace(/\/studio/, '')
}
if (subPath.includes('/')) {
const locationResult = (await app.service(locationPath).find({
query: {
sceneId: subPath
},
pagination: false
} as any)) as any as LocationType[]
if (locationResult.length > 0) {
const [projectName, sceneName] = locationResult[0].sceneId.split('/')
const storageProvider = getStorageProvider()
currentOEmbed.title = `${locationResult[0].name} Studio - ${currentOEmbed.title}`
currentOEmbed.type = 'photo'
currentOEmbed.url = `https://${storageProvider.cacheDomain}/projects/${projectName}/${sceneName}.thumbnail.jpeg`
currentOEmbed.height = 320
currentOEmbed.width = 512
return currentOEmbed
}
} else if (subPath.length > 0) {
currentOEmbed.title = `${subPath} Editor - ${currentOEmbed.title}`
return currentOEmbed
}
return null
}
}
const config = {
onInstall: (app: Application) => {
return installAvatarsFromProject(app, avatarsFolder)
},
onUpdate: (app: Application) => {
return installAvatarsFromProject(app, avatarsFolder)
},
onOEmbedRequest: handleOEmbedRequest
// TODO: remove avatars
// onUninstall: (app: Application) => {
// }
} as ProjectEventHooks
export default config