* MM_30475 : ADDED default schema * MM_30475 : ADDED todo for field 'value' of default/Global entity * MM_30476 : Created schema for SERVER DB * MM_30476 : Server model [ IN PROGRESS ] * MM_30476 : Including types for group, groups_in_channel and role * MM_30476 : ADDED models for Group - @typings absolute path has been added to the tsconfig.json * MM_30476 : ADDED typings to current models * MM_30476 : ADDED typings to current models * MM_30476 : ADDED models related to TEAM section of the ERD * MM_30476 : ADDED models for User section of the ERD * MM_30476 : ADDED models for POST section of the ERD * MM_30476 : ADDED models for Channel section of the ERD * MM_30475 : Updated typings and references to MM_TABLES * MM_30476 : Verified all field names * MM_30476 : Verified every table associations * MM_30476 : Verified all relation fields * MM_30476 : Updated primary id of the main models We will override the wdb id at component level when we create a new records. This involves the models : channel, group, post, team and user. * MM_30476 : Including 1:1 relationship amongs some entities * MM_30476 : ADDED Schema Managers * The migration array will hold all the migration steps. * The initial app release (e.g. v2 )will have an empty array and subsequent releases (e.g. v2.1 ) will have the steps listed in that array. * On initialization, the database will perform the migration to accomodate for new columns/tables creation and while it will conserve the mobile phone's data, it will also make it conform to this new schema. * If a migration fails, the migration process will rollback any changes. This migration will be thoroughly tested in development before pushing it live. * Revert "MM_30476 : ADDED Schema Managers" This reverts commit a505bd5e11124e8eb8f258ce8dbb8168a535f7ae. * MM_30478 : Converted schema_manager into a function * MM_30478 : Updated schema manager and included patch for wdb * MM_30478: Updated watermelondb patch package * MM_30478 : Update function create_schema_manager to createSqliteAdaptorOptions * MM_30476 : Update constant name to reflect directory name * MM_30476 : Updated msgCount from my_channel model to message_count in server schema * MM_30482 : Added tests for schema_manager * MM_30482 : Database Manager [ IN PROGRESS ] * MM_30478 : Returning an sqliteAdapter instead of an object * MM_30476 : Apply suggestions from code review Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * MM_30476 : Updated all imports as per instruction. * MM_30476 : Shortening object chains by destructuring * MM_30476 : Updated schema file structure * MM_30476 : Prettifying @typings folder * MM_30476 : Removing useless ids * MM_30476 : Prettify imports for decorators * MM_30476 : ADDED documentations and lazy queries to Channel and Channel_Info * MM_30476 : ADDED documentations for default schema * MM_30476 : Documentation [ IN PROGRESS ] - Following JSDoc syntax for single line comment - Removed redundant fields in the 'membership' tables and left only the @relation records. * MM_30476 : Documentations [ IN PROGRESS ] * MM_30476 : Documentations [ IN PROGRESS ] * MM_30476 : Documentations [ IN PROGRESS ] * MM_30476 : Documentations [ IN PROGRESS] Updated 1) my_team and team, 2) my_channel and channel, to each have 1:1 relationship with one another * MM_30476 : Updated all Typescript definitions * MM_30476 :Updated @relation to @immutableRelation * MM_30476 : Updated description for previous_post_id * MM_30478 : Updated patch package for wdb module * MM_30478: DB Manager [IN PROGRESS ] * MM_30478: DB Manager [IN PROGRESS] * MM_30478: DB Manager [IN PROGRESS] * MM_30478 : DB Manager [IN PROGRESS] * MM_30478 : Deleting .db file on iOS * MM_30478: Successfully deleting .db files and directory on iOS side * MM_30478 : Update definition for default/global * MM_30478 : Updated all models * MM_30478 : Doing a bit of house cleaning * MM_30478: Record of new server connection added to default/servers db * TS Definitely Typed Assignment issue is now FIXED * MM_30478 : TS Definitely Typed Assignment \n Removed all the constructors but error still in editor tabs. But this time the app is not crashing * MM_30478 : Attempt 1 [SUCCESSFUL] * MM_30478 : Removing useDefineForClassFields * MM_30478 : Retrieving the servers in a list + Improved the DB Manager and Babel config * MM_30478 : Updated babel.config.js * MM_30478 : Minor UI correction * MM_30478 : Jest and Typescript configuration * MM_30478 : A bit of housekeeping * MM_30478 : Installed WDB on Android * MM_30478 : Deletes new server record from default DB * MM_30478 : Returns subset of server db instances * MM_30478 : Code clean up * MM_30478 : Code clean up on db manager * MM_30478 : House keeping + Patch for WDB * MM_30478 : Android - Saving & Deleting in FilesDir [COMPLETED] * MM_30478 : Code clean up * MM_30478 : Code clean up * MM_30478 : Code clean up * MM_30478 : Test successful on Android device * MM_30478 : Rolling back change to jest.config.js * MM_30478 : Updated test to test_integration * MM_30478 : Fix imports * MM_30478 : Refactored the manual testscript * MM_30478 : Renamed database manager test file * MM_30478 : Code clean up * MM_30478 : Updated manual test file with a note. * MM_30478 : Fixed JEST issue with TS * MM_30478 : Fixed JEST issue with TS * MM_30478 : Fixed JEST issue with TS * MM_30478 : Implementing JEST test cases * MM_30478 : Implementing JEST last test cases * MM_30478 : Jest fixing ts errors * MM_30478 : Database Manager Jest testing [ IN PROGRESS ] * Update mobile v2 detox deps * MM_30478 : Add uniqueness check for duplicates server creation * MM_30478 : Corrections from Joseph reviews Co-authored-by: Elias Nahum <nahumhbl@gmail.com> Co-authored-by: Avinash Lingaloo <> Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
131 lines
5.5 KiB
TypeScript
131 lines
5.5 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Q, Query, Relation} from '@nozbe/watermelondb';
|
|
import {children, field, immutableRelation, lazy} from '@nozbe/watermelondb/decorators';
|
|
import Model, {Associations} from '@nozbe/watermelondb/Model';
|
|
|
|
import {MM_TABLES} from '@constants/database';
|
|
import ChannelInfo from '@typings/database/channel_info';
|
|
import ChannelMembership from '@typings/database/channel_membership';
|
|
import Draft from '@typings/database/draft';
|
|
import GroupsInChannel from '@typings/database/groups_in_channel';
|
|
import MyChannel from '@typings/database/my_channel';
|
|
import MyChannelSettings from '@typings/database/my_channel_settings';
|
|
import Post from '@typings/database/post';
|
|
import PostsInChannel from '@typings/database/posts_in_channel';
|
|
import Team from '@typings/database/team';
|
|
import User from '@typings/database/user';
|
|
|
|
const {
|
|
CHANNEL,
|
|
CHANNEL_INFO,
|
|
CHANNEL_MEMBERSHIP,
|
|
DRAFT,
|
|
GROUPS_IN_CHANNEL,
|
|
MY_CHANNEL,
|
|
MY_CHANNEL_SETTINGS,
|
|
POSTS_IN_CHANNEL,
|
|
POST,
|
|
TEAM,
|
|
USER,
|
|
} = MM_TABLES.SERVER;
|
|
|
|
/**
|
|
* The Channel model represents a channel in the Mattermost app.
|
|
*/
|
|
export default class Channel extends Model {
|
|
/** table (entity name) : Channel */
|
|
static table = CHANNEL;
|
|
|
|
/** associations : Describes every relationship to this entity. */
|
|
static associations: Associations = {
|
|
|
|
/** A CHANNEL is associated with only one CHANNEL_INFO (relationship is 1:1) */
|
|
[CHANNEL_INFO]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A CHANNEL can be associated with multiple CHANNEL_MEMBERSHIP (relationship is 1:N) */
|
|
[CHANNEL_MEMBERSHIP]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A CHANNEL can be associated with multiple DRAFT (relationship is 1:N) */
|
|
[DRAFT]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A CHANNEL can be associated with multiple GROUPS_IN_CHANNEL (relationship is 1:N) */
|
|
[GROUPS_IN_CHANNEL]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A CHANNEL is associated with only one MY_CHANNEL (relationship is 1:1) */
|
|
[MY_CHANNEL]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A CHANNEL is associated to only one MY_CHANNEL_SETTINGS (relationship is 1:1) */
|
|
[MY_CHANNEL_SETTINGS]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A CHANNEL can be associated with multiple POSTS_IN_CHANNEL (relationship is 1:N) */
|
|
[POSTS_IN_CHANNEL]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A CHANNEL can contain multiple POST (relationship is 1:N) */
|
|
[POST]: {type: 'has_many', foreignKey: 'channel_id'},
|
|
|
|
/** A TEAM can be associated to CHANNEL (relationship is 1:N) */
|
|
[TEAM]: {type: 'belongs_to', key: 'team_id'},
|
|
|
|
/** A USER can create multiple CHANNEL (relationship is 1:N) */
|
|
[USER]: {type: 'belongs_to', key: 'creator_id'},
|
|
};
|
|
|
|
/** create_at : The creation date for this channel */
|
|
@field('create_at') createAt!: number;
|
|
|
|
/** creator_id : The user who created this channel */
|
|
@field('creator_id') creatorId!: string;
|
|
|
|
/** delete_at : The deletion/archived date of this channel */
|
|
@field('delete_at') deleteAt!: number;
|
|
|
|
/** display_name : The channel display name (e.g. Town Square ) */
|
|
@field('display_name') displayName!: string;
|
|
|
|
/** is_group_constrained : If a channel is restricted to certain groups, this boolean will be true and only
|
|
* members of that group have access to this team. Hence indicating that the members of this channel are
|
|
* managed by groups.
|
|
*/
|
|
@field('is_group_constrained') isGroupConstrained!: boolean;
|
|
|
|
/** name : The name of the channel (e.g town-square) */
|
|
@field('name') name!: string;
|
|
|
|
/** team_id : The team to which this channel belongs. It can be empty for direct/group message. */
|
|
@field('team_id') teamId!: string;
|
|
|
|
/** type : The type of the channel ( e.g. G: group messages, D: direct messages, P: private channel and O: public channel) */
|
|
@field('type') type!: string;
|
|
|
|
/** members : Users belonging to this channel */
|
|
@children(CHANNEL_MEMBERSHIP) members!: ChannelMembership[];
|
|
|
|
/** drafts : All drafts for this channel */
|
|
@children(DRAFT) drafts!: Draft[];
|
|
|
|
/** groupsInChannel : Every group contained in this channel */
|
|
@children(GROUPS_IN_CHANNEL) groupsInChannel!: GroupsInChannel[];
|
|
|
|
/** posts : All posts made in that channel */
|
|
@children(POST) posts!: Post[];
|
|
|
|
/** postsInChannel : a section of the posts for that channel bounded by a range */
|
|
@children(POSTS_IN_CHANNEL) postsInChannel!: PostsInChannel[];
|
|
|
|
/** team : The TEAM to which this CHANNEL belongs */
|
|
@immutableRelation(TEAM, 'team_id') team!: Relation<Team>;
|
|
|
|
/** creator : The USER who created this CHANNEL*/
|
|
@immutableRelation(USER, 'creator_id') creator!: Relation<User>;
|
|
|
|
/** info : Query returning extra information about this channel from entity CHANNEL_INFO */
|
|
@lazy info = this.collections.get(CHANNEL_INFO).query(Q.on(CHANNEL, 'id', this.id)) as Query<ChannelInfo>;
|
|
|
|
/** membership : Query returning the membership data for the current user if it belongs to this channel */
|
|
@lazy membership = this.collections.get(MY_CHANNEL).query(Q.on(CHANNEL, 'id', this.id)) as Query<MyChannel>;
|
|
|
|
/** settings: User specific settings/preferences for this channel */
|
|
@lazy settings = this.collections.get(MY_CHANNEL_SETTINGS).query(Q.on(CHANNEL, 'id', this.id)) as Query<MyChannelSettings>;
|
|
}
|