ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilNotificationSetupHelper.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Notifications;
22 
23 use ilDBInterface;
24 use ilDBConstants;
25 
30 {
31  public static string $tbl_userconfig = 'notification_usercfg';
32  public static string $tbl_userlistener = 'notification_listener';
33  public static string $tbl_notification_data = 'notification_data';
34  public static string $tbl_notification_queue = 'notification_queue';
35  public static string $tbl_notification_osd_handler = 'notification_osd';
36  public static string $tbl_notification_channels = 'notification_channels';
37  public static string $tbl_notification_types = 'notification_types';
38 
39  public static function setupTables(): void
40  {
41  global $DIC;
42 
43  $ilDB = $DIC->database();
44 
45  if (!$ilDB->tableExists(self::$tbl_userconfig)) {
46  $fields = [
47  'usr_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
48  'module' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
49  'channel' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
50  ];
51  $ilDB->createTable(self::$tbl_userconfig, $fields);
52  $ilDB->addPrimaryKey(self::$tbl_userconfig, ['usr_id', 'module', 'channel']);
53  }
54 
55  if (!$ilDB->tableExists(self::$tbl_userlistener)) {
56  $fields = [
57  'usr_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
58  'module' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
59  'sender_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
60  'disabled' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 1],
61  ];
62  $ilDB->createTable(self::$tbl_userlistener, $fields);
63  $ilDB->addPrimaryKey(self::$tbl_userlistener, ['usr_id', 'module', 'sender_id']);
64  }
65 
66  if (!$ilDB->tableExists(self::$tbl_notification_data)) {
67  $fields = [
68  'notification_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
69  'serialized' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 4000],
70  ];
71  $ilDB->createTable(self::$tbl_notification_data, $fields);
72  $ilDB->addPrimaryKey(self::$tbl_notification_data, ['notification_id']);
73 
74  $ilDB->createSequence(self::$tbl_notification_data);
75  }
76 
77  if (!$ilDB->tableExists(self::$tbl_notification_queue)) {
78  $fields = [
79  'notification_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
80  'usr_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
81  'valid_until' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
82  ];
83  $ilDB->createTable(self::$tbl_notification_queue, $fields);
84  $ilDB->addPrimaryKey(self::$tbl_notification_queue, ['notification_id', 'usr_id']);
85  }
86 
87  if (!$ilDB->tableExists(self::$tbl_notification_osd_handler)) {
88  $fields = [
89  'notification_osd_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
90  'usr_id' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
91  'serialized' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 4000],
92  'valid_until' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
93  'time_added' => ['type' => ilDBConstants::T_INTEGER, 'notnull' => true, 'length' => 4],
94  'type' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
95  ];
96  $ilDB->createTable(self::$tbl_notification_osd_handler, $fields);
97 
98  $ilDB->addPrimaryKey(self::$tbl_notification_osd_handler, ['notification_osd_id']);
99 
100  $ilDB->createSequence(self::$tbl_notification_osd_handler);
101  }
102 
103  if (!$ilDB->tableExists(self::$tbl_notification_channels)) {
104  $fields = [
105  'channel_name' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
106  'title' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
107  'description' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 4000],
108  'class' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
109  'include' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
110  'config_type' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 30],
111  ];
112  $ilDB->createTable(self::$tbl_notification_channels, $fields);
113 
114  $ilDB->addPrimaryKey(self::$tbl_notification_channels, ['channel_name']);
115 
116  self::registerChannel(
117  $ilDB,
118  'mail',
119  'mail',
120  'mail_desc',
121  'ilNotificationMailHandler',
122  'components/ILIAS/Notifications/classes/class.ilNotificationMailHandler.php'
123  );
124  self::registerChannel(
125  $ilDB,
126  'osd',
127  'osd',
128  'osd_desc',
129  'ilNotificationOSDHandler',
130  'components/ILIAS/Notifications/classes/class.ilNotificationOSDHandler.php'
131  );
132  }
133 
134  if (!$ilDB->tableExists(self::$tbl_notification_types)) {
135  $fields = [
136  'type_name' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
137  'title' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
138  'description' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
139  'notification_group' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 100],
140  'config_type' => ['type' => ilDBConstants::T_TEXT, 'notnull' => true, 'length' => 30],
141  ];
142  $ilDB->createTable(self::$tbl_notification_types, $fields);
143  $ilDB->addPrimaryKey(self::$tbl_notification_types, ['type_name']);
144 
145  self::registerType($ilDB, 'chat_invitation', 'chat_invitation', 'chat_invitation_description', 'chat');
146  self::registerType($ilDB, 'osd_maint', 'osd_maint', 'osd_maint_description', 'osd_notification');
147  }
148  }
149 
150  public static function registerChannel(
152  string $name,
153  string $title,
154  string $description,
155  string $class,
156  string $classfile,
157  string $config_type = 'set_by_user'
158  ): void {
160  $db,
161  $name,
162  $title,
163  $description,
164  $class,
165  $classfile,
166  $config_type
167  );
168  }
169 
170  public static function registerType(
172  string $name,
173  string $title,
174  string $description,
175  string $notification_group,
176  string $config_type = 'set_by_user'
177  ): void {
179  $db,
180  $name,
181  $title,
182  $description,
183  $notification_group,
184  $config_type
185  );
186  }
187 }
static registerChannel(ilDBInterface $db, string $name, string $title, string $description, string $class, string $classfile, string $config_type='set_by_user')
static registerType(ilDBInterface $db, string $name, string $title, string $description, string $notification_group, string $config_type)
static registerChannel(ilDBInterface $db, string $name, string $title, string $description, string $class, string $classfile, string $config_type)
global $DIC
Definition: shib_login.php:22
static registerType(ilDBInterface $db, string $name, string $title, string $description, string $notification_group, string $config_type='set_by_user')