@xrengine/server-core
Version:
Shared components for XREngine server
70 lines (64 loc) • 1.99 kB
text/typescript
// A place in physical or virtual space, with many copies (instances)
import { DataTypes, Model, Sequelize } from 'sequelize'
import { LocationInterface } from '@xrengine/common/src/dbmodels/Location'
import { Application } from '../../../declarations'
export default (app: Application) => {
const sequelizeClient: Sequelize = app.get('sequelizeClient')
const location = sequelizeClient.define<Model<LocationInterface>>(
'location',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV1,
allowNull: false,
primaryKey: true
},
name: {
type: DataTypes.STRING,
allowNull: false
},
sceneId: {
type: DataTypes.STRING,
allowNull: true
},
slugifiedName: {
type: DataTypes.STRING,
allowNull: false,
unique: true
},
isLobby: {
type: DataTypes.BOOLEAN,
allowNull: true,
defaultValue: false
},
isFeatured: {
type: DataTypes.BOOLEAN,
allowNull: true,
defaultValue: false
},
maxUsersPerInstance: {
type: DataTypes.INTEGER,
allowNull: false,
defaultValue: 50
}
},
{
hooks: {
beforeCount(options: any): void {
options.raw = true
}
}
}
)
;(location as any).associate = (models: any): void => {
;(location as any).hasMany(models.instance)
;(location as any).hasMany(models.location_admin)
// (location as any).belongsTo(models.scene, { foreignKey: 'sceneId' }); // scene
;(location as any).belongsToMany(models.user, { through: 'location_admin' })
;(location as any).hasOne(models.location_settings, { onDelete: 'cascade' })
;(location as any).hasMany(models.location_ban)
;(location as any).hasMany(models.bot, { foreignKey: 'locationId' })
;(location as any).hasMany(models.location_authorized_user, { onDelete: 'cascade' })
}
return location
}