mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
139 lines
3.5 KiB
JavaScript
139 lines
3.5 KiB
JavaScript
import uuid from 'uuid/v4'
|
|
|
|
module.exports = {
|
|
id: { type: 'string', primary: true, default: uuid }, // TODO: should be type: 'uuid' but simplified for our tests
|
|
actorId: { type: 'string', allow: [null] },
|
|
name: { type: 'string', disallow: [null], min: 3 },
|
|
slug: { type: 'string', regex: /^[a-z0-9_-]+$/, lowercase: true },
|
|
encryptedPassword: 'string',
|
|
avatar: { type: 'string', allow: [null] },
|
|
coverImg: { type: 'string', allow: [null] },
|
|
deleted: { type: 'boolean', default: false },
|
|
disabled: { type: 'boolean', default: false },
|
|
role: { type: 'string', default: 'user' },
|
|
publicKey: 'string',
|
|
privateKey: 'string',
|
|
wasInvited: 'boolean',
|
|
wasSeeded: 'boolean',
|
|
locationName: { type: 'string', allow: [null] },
|
|
about: { type: 'string', allow: [null, ''] },
|
|
primaryEmail: {
|
|
type: 'relationship',
|
|
relationship: 'PRIMARY_EMAIL',
|
|
target: 'EmailAddress',
|
|
direction: 'out',
|
|
},
|
|
following: {
|
|
type: 'relationship',
|
|
relationship: 'FOLLOWS',
|
|
target: 'User',
|
|
direction: 'out',
|
|
properties: {
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
},
|
|
},
|
|
followedBy: {
|
|
type: 'relationship',
|
|
relationship: 'FOLLOWS',
|
|
target: 'User',
|
|
direction: 'in',
|
|
properties: {
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
},
|
|
},
|
|
friends: { type: 'relationship', relationship: 'FRIENDS', target: 'User', direction: 'both' },
|
|
rewarded: {
|
|
type: 'relationship',
|
|
relationship: 'REWARDED',
|
|
target: 'Badge',
|
|
direction: 'in',
|
|
},
|
|
invitedBy: { type: 'relationship', relationship: 'INVITED', target: 'User', direction: 'in' },
|
|
lastActiveAt: { type: 'string', isoDate: true },
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
updatedAt: {
|
|
type: 'string',
|
|
isoDate: true,
|
|
required: true,
|
|
default: () => new Date().toISOString(),
|
|
},
|
|
emoted: {
|
|
type: 'relationships',
|
|
relationship: 'EMOTED',
|
|
target: 'Post',
|
|
direction: 'out',
|
|
properties: {
|
|
emotion: {
|
|
type: 'string',
|
|
valid: ['happy', 'cry', 'surprised', 'angry', 'funny'],
|
|
invalid: [null],
|
|
},
|
|
},
|
|
eager: true,
|
|
cascade: true,
|
|
},
|
|
blocked: {
|
|
type: 'relationship',
|
|
relationship: 'BLOCKED',
|
|
target: 'User',
|
|
direction: 'out',
|
|
},
|
|
muted: {
|
|
type: 'relationship',
|
|
relationship: 'MUTED',
|
|
target: 'User',
|
|
direction: 'out',
|
|
},
|
|
notifications: {
|
|
type: 'relationship',
|
|
relationship: 'NOTIFIED',
|
|
target: 'User',
|
|
direction: 'in',
|
|
},
|
|
termsAndConditionsAgreedVersion: {
|
|
type: 'string',
|
|
allow: [null],
|
|
},
|
|
termsAndConditionsAgreedAt: {
|
|
type: 'string',
|
|
isoDate: true,
|
|
allow: [null],
|
|
},
|
|
shouted: {
|
|
type: 'relationship',
|
|
relationship: 'SHOUTED',
|
|
target: 'Post',
|
|
direction: 'out',
|
|
properties: {
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
},
|
|
},
|
|
isIn: {
|
|
type: 'relationship',
|
|
relationship: 'IS_IN',
|
|
target: 'Location',
|
|
direction: 'out',
|
|
},
|
|
pinned: {
|
|
type: 'relationship',
|
|
relationship: 'PINNED',
|
|
target: 'Post',
|
|
direction: 'out',
|
|
properties: {
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
},
|
|
},
|
|
allowEmbedIframes: {
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
showShoutsPublicly: {
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
locale: {
|
|
type: 'string',
|
|
allow: [null],
|
|
},
|
|
}
|