-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathinstall.php
More file actions
205 lines (168 loc) · 8.21 KB
/
install.php
File metadata and controls
205 lines (168 loc) · 8.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
/**
* This software is intended for use with Oxwall Free Community Software http://www.oxwall.org/ and is
* licensed under The BSD license.
* ---
* Copyright (c) 2011, Oxwall Foundation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
* following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice, this list of conditions and
* the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
* the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* - Neither the name of the Oxwall Foundation nor the names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* @author Podyachev Evgeny <joker.OW2@gmail.com>
* @package ow_plugins.mailbox
* @since 1.0
*/
if ( !OW::getConfig()->configExists('mailbox', 'results_per_page') )
{
OW::getConfig()->addConfig('mailbox', 'results_per_page', 10, 'Conversations number per page');
}
if ( !OW::getConfig()->configExists('mailbox', 'enable_attachments') )
{
OW::getConfig()->addConfig('mailbox', 'enable_attachments', true, 'Enable file attachments');
}
$sql = "CREATE TABLE IF NOT EXISTS `" . OW_DB_PREFIX . "mailbox_conversation` (
`id` int(10) NOT NULL auto_increment,
`initiatorId` int(10) NOT NULL default '0',
`interlocutorId` int(10) NOT NULL default '0',
`subject` varchar(100) NOT NULL default '',
`read` tinyint(3) NOT NULL default '1' COMMENT 'bitmap, values: 0 - none, 1 - read by initiator, 2 - read by interlocutor, 3 - read all',
`deleted` tinyint(3) NOT NULL default '0' COMMENT 'bitmap, values: 0 - none, 1 - deleted by initiator, 2 - deleted by interlocutor.',
`viewed` tinyint(3) NOT NULL default '1' COMMENT 'bitmap, is user viewed conversation in console, values: 0 - none, 1 - viewed by initiator, 2 - viewed by interlocutor, 3 - viewed all',
`notificationSent` tinyint(3) NOT NULL default '0' COMMENT 'int flag, was notification about this letter sent to user',
`createStamp` int(10) default '0',
`initiatorDeletedTimestamp` INT( 10 ) NOT NULL DEFAULT '0',
`interlocutorDeletedTimestamp` INT( 10 ) NOT NULL DEFAULT '0',
`lastMessageId` int(11) NOT NULL,
`lastMessageTimestamp` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `initiatorId` (`initiatorId`),
KEY `interlocutorId` (`interlocutorId`),
KEY `lastMessageTimestamp` (`lastMessageTimestamp`),
KEY `subject` (`subject`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci";
OW::getDbo()->query($sql);
$sql = "CREATE TABLE IF NOT EXISTS `" . OW_DB_PREFIX . "mailbox_last_message` (
`id` int(10) NOT NULL auto_increment,
`conversationId` int(10) NOT NULL default '0',
`initiatorMessageId` int(10) NOT NULL default '0',
`interlocutorMessageId` int(10) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `conversationId` (`conversationId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci AUTO_INCREMENT=1";
OW::getDbo()->query($sql);
$sql = "CREATE TABLE IF NOT EXISTS `" . OW_DB_PREFIX . "mailbox_message` (
`id` int(10) NOT NULL auto_increment,
`conversationId` int(10) NOT NULL default '0',
`timeStamp` bigint(10) NOT NULL default '0',
`updateStamp` bigint(10) NOT NULL default '0',
`senderId` int(10) NOT NULL default '0',
`recipientId` int(10) NOT NULL default '0',
`text` mediumtext NOT NULL,
`recipientRead` TINYINT NOT NULL DEFAULT '0',
`isSystem` TINYINT NOT NULL DEFAULT '0',
`wasAuthorized` TINYINT NOT NULL DEFAULT '0',
`tempId` VARCHAR(100) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `senderId` (`senderId`),
KEY `recipientId` (`recipientId`),
KEY `conversationId` (`conversationId`),
KEY `timeStamp` (`timeStamp`),
KEY `updateStamp` (`updateStamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci AUTO_INCREMENT=1";
OW::getDbo()->query($sql);
$sql = "CREATE TABLE IF NOT EXISTS `" . OW_DB_PREFIX . "mailbox_attachment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`messageId` int(11) NOT NULL,
`hash` varchar(13) NOT NULL,
`fileName` varchar(255) NOT NULL,
`fileSize` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `messageId` (`messageId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci AUTO_INCREMENT=1";
OW::getDbo()->query($sql);
$sql = "CREATE TABLE `" . OW_DB_PREFIX . "mailbox_user_last_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`data` longtext,
PRIMARY KEY (`id`),
KEY `userId` (`userId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci";
OW::getDbo()->query($sql);
//
//$authorization = OW::getAuthorization();
//$groupName = 'mailbox';
//$authorization->addGroup($groupName, 0);
//$authorization->addAction($groupName, 'read_message');
//$authorization->addAction($groupName, 'send_message');
//$authorization->addAction($groupName, 'reply_to_message');
//
//$authorization->addAction($groupName, 'read_chat_message');
//$authorization->addAction($groupName, 'send_chat_message');
//$authorization->addAction($groupName, 'reply_to_chat_message');
require_once OW_DIR_PLUGIN . 'mailbox' . DS . 'alloc.php';
$preference = BOL_PreferenceService::getInstance()->findPreference('mailbox_create_conversation_stamp');
if ( empty($preference) )
{
$preference = new BOL_Preference();
}
$preference->key = 'mailbox_create_conversation_stamp';
$preference->sectionName = 'general';
$preference->defaultValue = 0;
$preference->sortOrder = 1;
BOL_PreferenceService::getInstance()->savePreference($preference);
$preference = BOL_PreferenceService::getInstance()->findPreference('mailbox_create_conversation_display_capcha');
if ( empty($preference) )
{
$preference = new BOL_Preference();
}
$preference->key = 'mailbox_create_conversation_display_capcha';
$preference->sectionName = 'general';
$preference->defaultValue = false;
$preference->sortOrder = 1;
BOL_PreferenceService::getInstance()->savePreference($preference);
OW::getLanguage()->importPluginLangs(OW::getPluginManager()->getPlugin('mailbox')->getRootDir() . 'langs.zip', 'mailbox');
$preference = BOL_PreferenceService::getInstance()->findPreference('mailbox_user_settings_enable_sound');
if ( empty($preference) )
{
$preference = new BOL_Preference();
}
$preference->key = 'mailbox_user_settings_enable_sound';
$preference->defaultValue = true;
$preference->sectionName = 'general';
$preference->sortOrder = 1;
BOL_PreferenceService::getInstance()->savePreference($preference);
$preference = BOL_PreferenceService::getInstance()->findPreference('mailbox_user_settings_show_online_only');
if ( empty($preference) )
{
$preference = new BOL_Preference();
}
$preference->key = 'mailbox_user_settings_show_online_only';
$preference->defaultValue = true;
$preference->sectionName = 'general';
$preference->sortOrder = 1;
BOL_PreferenceService::getInstance()->savePreference($preference);
$modes = array('chat');
OW::getConfig()->addConfig('mailbox', 'active_modes', json_encode($modes));
OW::getConfig()->addConfig('mailbox', 'show_all_members', false);
OW::getConfig()->addConfig('mailbox', 'updated_to_messages', 1);
OW::getConfig()->addConfig('mailbox', 'install_complete', 0);
OW::getConfig()->addConfig('mailbox', 'last_attachment_id', 0);
OW::getConfig()->addConfig('mailbox', 'plugin_update_timestamp', 0);
OW::getConfig()->addConfig('mailbox', 'send_message_interval', 60);