2018-05-14 10:18:21 +02:00
|
|
|
// (C) Copyright 2015 Martin Dougiamas
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CoreCronDelegate } from '@providers/cron';
|
|
|
|
import { CoreCourseModuleDelegate } from '@core/course/providers/module-delegate';
|
|
|
|
import { CoreCourseModulePrefetchDelegate } from '@core/course/providers/module-prefetch-delegate';
|
|
|
|
import { CoreContentLinksDelegate } from '@core/contentlinks/providers/delegate';
|
2019-03-15 08:42:08 +01:00
|
|
|
import { CorePushNotificationsDelegate } from '@core/pushnotifications/providers/delegate';
|
2019-07-08 12:17:47 +02:00
|
|
|
import { CoreTagAreaDelegate } from '@core/tag/providers/area-delegate';
|
2018-05-14 10:18:21 +02:00
|
|
|
import { AddonModForumProvider } from './providers/forum';
|
|
|
|
import { AddonModForumOfflineProvider } from './providers/offline';
|
|
|
|
import { AddonModForumHelperProvider } from './providers/helper';
|
|
|
|
import { AddonModForumSyncProvider } from './providers/sync';
|
|
|
|
import { AddonModForumModuleHandler } from './providers/module-handler';
|
|
|
|
import { AddonModForumPrefetchHandler } from './providers/prefetch-handler';
|
|
|
|
import { AddonModForumSyncCronHandler } from './providers/sync-cron-handler';
|
|
|
|
import { AddonModForumIndexLinkHandler } from './providers/index-link-handler';
|
|
|
|
import { AddonModForumDiscussionLinkHandler } from './providers/discussion-link-handler';
|
2018-10-23 12:27:56 +02:00
|
|
|
import { AddonModForumListLinkHandler } from './providers/list-link-handler';
|
2019-05-10 11:53:26 +02:00
|
|
|
import { AddonModForumPostLinkHandler } from './providers/post-link-handler';
|
2019-03-15 08:42:08 +01:00
|
|
|
import { AddonModForumPushClickHandler } from './providers/push-click-handler';
|
2019-07-08 12:17:47 +02:00
|
|
|
import { AddonModForumTagAreaHandler } from './providers/tag-area-handler';
|
2018-05-14 10:18:21 +02:00
|
|
|
import { AddonModForumComponentsModule } from './components/components.module';
|
2018-05-31 12:57:40 +02:00
|
|
|
import { CoreUpdateManagerProvider } from '@providers/update-manager';
|
2018-05-14 10:18:21 +02:00
|
|
|
|
2018-06-01 13:47:02 +02:00
|
|
|
// List of providers (without handlers).
|
|
|
|
export const ADDON_MOD_FORUM_PROVIDERS: any[] = [
|
|
|
|
AddonModForumProvider,
|
|
|
|
AddonModForumOfflineProvider,
|
|
|
|
AddonModForumHelperProvider,
|
|
|
|
AddonModForumSyncProvider
|
|
|
|
];
|
|
|
|
|
2018-05-14 10:18:21 +02:00
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
AddonModForumComponentsModule,
|
|
|
|
],
|
2018-06-08 09:03:48 +02:00
|
|
|
providers: [
|
|
|
|
AddonModForumProvider,
|
|
|
|
AddonModForumOfflineProvider,
|
|
|
|
AddonModForumHelperProvider,
|
|
|
|
AddonModForumSyncProvider,
|
2018-05-14 10:18:21 +02:00
|
|
|
AddonModForumModuleHandler,
|
|
|
|
AddonModForumPrefetchHandler,
|
|
|
|
AddonModForumSyncCronHandler,
|
|
|
|
AddonModForumIndexLinkHandler,
|
2018-10-23 12:27:56 +02:00
|
|
|
AddonModForumListLinkHandler,
|
2019-05-10 11:53:26 +02:00
|
|
|
AddonModForumPostLinkHandler,
|
2019-03-15 08:42:08 +01:00
|
|
|
AddonModForumDiscussionLinkHandler,
|
2019-07-08 12:17:47 +02:00
|
|
|
AddonModForumPushClickHandler,
|
|
|
|
AddonModForumTagAreaHandler
|
2018-06-08 09:03:48 +02:00
|
|
|
]
|
2018-05-14 10:18:21 +02:00
|
|
|
})
|
|
|
|
export class AddonModForumModule {
|
|
|
|
constructor(moduleDelegate: CoreCourseModuleDelegate, moduleHandler: AddonModForumModuleHandler,
|
|
|
|
prefetchDelegate: CoreCourseModulePrefetchDelegate, prefetchHandler: AddonModForumPrefetchHandler,
|
|
|
|
cronDelegate: CoreCronDelegate, syncHandler: AddonModForumSyncCronHandler, linksDelegate: CoreContentLinksDelegate,
|
2018-05-31 12:57:40 +02:00
|
|
|
indexHandler: AddonModForumIndexLinkHandler, discussionHandler: AddonModForumDiscussionLinkHandler,
|
2019-03-15 08:42:08 +01:00
|
|
|
updateManager: CoreUpdateManagerProvider, listLinkHandler: AddonModForumListLinkHandler,
|
2019-05-10 11:53:26 +02:00
|
|
|
pushNotificationsDelegate: CorePushNotificationsDelegate, pushClickHandler: AddonModForumPushClickHandler,
|
2019-07-08 12:17:47 +02:00
|
|
|
postLinkHandler: AddonModForumPostLinkHandler, tagAreaDelegate: CoreTagAreaDelegate,
|
|
|
|
tagAreaHandler: AddonModForumTagAreaHandler) {
|
2018-05-31 12:57:40 +02:00
|
|
|
|
2018-05-14 10:18:21 +02:00
|
|
|
moduleDelegate.registerHandler(moduleHandler);
|
|
|
|
prefetchDelegate.registerHandler(prefetchHandler);
|
|
|
|
cronDelegate.register(syncHandler);
|
|
|
|
linksDelegate.registerHandler(indexHandler);
|
|
|
|
linksDelegate.registerHandler(discussionHandler);
|
2018-10-23 12:27:56 +02:00
|
|
|
linksDelegate.registerHandler(listLinkHandler);
|
2019-05-10 11:53:26 +02:00
|
|
|
linksDelegate.registerHandler(postLinkHandler);
|
2019-03-15 08:42:08 +01:00
|
|
|
pushNotificationsDelegate.registerClickHandler(pushClickHandler);
|
2019-07-08 12:17:47 +02:00
|
|
|
tagAreaDelegate.registerHandler(tagAreaHandler);
|
2018-05-31 12:57:40 +02:00
|
|
|
|
|
|
|
// Allow migrating the tables from the old app to the new schema.
|
|
|
|
updateManager.registerSiteTablesMigration([
|
|
|
|
{
|
|
|
|
name: 'mma_mod_forum_offline_discussions',
|
|
|
|
newName: AddonModForumOfflineProvider.DISCUSSIONS_TABLE,
|
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
name: 'forumAndUser',
|
|
|
|
delete: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'options',
|
|
|
|
type: 'object'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'mma_mod_forum_offline_replies',
|
|
|
|
newName: AddonModForumOfflineProvider.REPLIES_TABLE,
|
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
name: 'forumAndUser',
|
|
|
|
delete: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'discussionAndUser',
|
|
|
|
delete: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'options',
|
|
|
|
type: 'object'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]);
|
2018-05-14 10:18:21 +02:00
|
|
|
}
|
|
|
|
}
|