fix svace issues
[platform/core/messaging/msg-service.git] / framework / submit-handler / MsgSubmitHandler.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd. All rights reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15 */
16
17 #include <stdio.h>
18 #include <string.h>
19
20 #include "MsgDebug.h"
21 #include "MsgUtilFile.h"
22 #include "MsgUtilStorage.h"
23 #include "MsgException.h"
24 #include "MsgGconfWrapper.h"
25 #include "MsgPluginManager.h"
26 #include "MsgStorageHandler.h"
27 #include "MsgSubmitHandler.h"
28 #include "MsgUtilFunction.h"
29
30
31 /*==================================================================================================
32                                      FUNCTION IMPLEMENTATION
33 ==================================================================================================*/
34 msg_error_t MsgSubmitReq(MSG_REQUEST_INFO_S *pReqInfo, bool bScheduled)
35 {
36         msg_error_t err = MSG_SUCCESS;
37         static int reqId = 1;
38
39         pReqInfo->reqId = reqId;
40         reqId++;
41
42         if (msg_check_dpm_policy(pReqInfo->msgInfo.msgType.mainType) == false) {
43                 MSG_DEBUG("Messaging is restricted by DPM policy.");
44                 MsgDbHandler *dbHandle = getDbHandle();
45                 MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_SEND_FAIL);
46                 if (pReqInfo->msgInfo.msgType.subType != MSG_RETRIEVE_MMS)
47                         /* sending popup */
48                         msg_syspopup_message(true);
49                 else
50                         /* retrieving popup */
51                         msg_syspopup_message(false);
52
53                 return MSG_ERR_DPM_RESTRICT;
54         }
55
56         MSG_DEBUG("==== Msg ID = [%d] ====", pReqInfo->msgInfo.msgId);
57         MSG_DEBUG("==== Folder ID = [%d] ====", pReqInfo->msgInfo.folderId);
58         MSG_INFO("==== Main Type = [%d] ====", pReqInfo->msgInfo.msgType.mainType);
59         MSG_INFO("==== Sub Type = [%d] ====", pReqInfo->msgInfo.msgType.subType);
60         MSG_DEBUG("==== Class Type = [%d] ====", pReqInfo->msgInfo.msgType.classType);
61         MSG_DEBUG("==== Message Data = [%s] ====", pReqInfo->msgInfo.msgData);
62         MSG_SEC_DEBUG("==== Message Text = [%s] ====", pReqInfo->msgInfo.msgText);
63         MSG_INFO("==== SIM Index = [%d] ====", pReqInfo->msgInfo.sim_idx);
64
65         MSG_DEBUG("==== bSetting = [%d] ====", pReqInfo->sendOptInfo.bSetting);
66
67         if (pReqInfo->msgInfo.msgType.mainType == MSG_SMS_TYPE) {
68                 MSG_DEBUG("==== deliver = [%d] ====", pReqInfo->sendOptInfo.bDeliverReq);
69                 MSG_DEBUG("==== keepcopy = [%d] ====", pReqInfo->sendOptInfo.bKeepCopy);
70                 MSG_DEBUG("==== bReplyPath = [%d] ====", pReqInfo->sendOptInfo.option.smsSendOptInfo.bReplyPath);
71
72                 err = MsgSubmitReqSMS(pReqInfo);
73         } else if (pReqInfo->msgInfo.msgType.mainType == MSG_MMS_TYPE) {
74                 MSG_DEBUG("==== deliver = [%d] ====", pReqInfo->sendOptInfo.bDeliverReq);
75                 MSG_DEBUG("==== keepcopy = [%d] ====", pReqInfo->sendOptInfo.bKeepCopy);
76                 MSG_DEBUG("==== bReadReq = [%d] ====", pReqInfo->sendOptInfo.option.mmsSendOptInfo.bReadReq);
77                 MSG_DEBUG("==== priority = [%d] ====", pReqInfo->sendOptInfo.option.mmsSendOptInfo.priority);
78                 MSG_DEBUG("==== expiryTime = [%d] ====", pReqInfo->sendOptInfo.option.mmsSendOptInfo.expiryTime.time);
79
80                 err = MsgSubmitReqMMS(pReqInfo);
81         }
82
83         return err;
84 }
85
86
87 msg_error_t MsgSubmitReqSMS(MSG_REQUEST_INFO_S *pReqInfo)
88 {
89         msg_error_t err = MSG_SUCCESS;
90
91         /* submit request based on msgType; */
92         MSG_MAIN_TYPE_T mainType = pReqInfo->msgInfo.msgType.mainType;
93         MsgPlugin* plg = MsgPluginManager::instance()->getPlugin(mainType);
94
95         if (plg == NULL) {
96                 MsgDbHandler *dbHandle = getDbHandle();
97                 MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_SEND_FAIL);
98                 MSG_ERR("No plugin for %d type", mainType);
99                 return MSG_ERR_INVALID_PLUGIN_HANDLE;
100         }
101
102         /* If MSG ID > 0 -> MSG in DRAFT */
103         /* Move Folder to OUTBOX */
104         if (pReqInfo->msgInfo.msgPort.valid == false) {
105                 pReqInfo->msgInfo.folderId = MSG_OUTBOX_ID;
106
107                 if (pReqInfo->msgInfo.msgId > 0 && (pReqInfo->msgInfo.folderId == MSG_DRAFT_ID || pReqInfo->msgInfo.folderId == MSG_OUTBOX_ID)) {
108                         err = MsgStoUpdateMessage(&(pReqInfo->msgInfo), &(pReqInfo->sendOptInfo));
109                         if (err != MSG_SUCCESS)
110                                 return err;
111                 }
112         }
113
114         err = plg->submitReq(pReqInfo);
115
116         return err;
117 }
118
119 msg_error_t MsgSubmitReqMMS(MSG_REQUEST_INFO_S *pReqInfo)
120 {
121         msg_error_t err = MSG_SUCCESS;
122         MsgDbHandler *dbHandle = getDbHandle();
123         MSG_RECIPIENTS_LIST_S pRecipientList;
124
125         MsgPlugin *sms_plg = MsgPluginManager::instance()->getPlugin(MSG_SMS_TYPE);
126
127         if (sms_plg == NULL) {
128                 MsgDbHandler *dbHandle = getDbHandle();
129                 MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_SEND_FAIL);
130                 MSG_ERR("No plugin for %d type", MSG_SMS_TYPE);
131                 return MSG_ERR_INVALID_PLUGIN_HANDLE;
132         }
133
134         int defaultNetworkSimId = 0;
135
136         err = sms_plg->getDefaultNetworkSimId(&defaultNetworkSimId);
137         if (err != MSG_SUCCESS) {
138                 MSG_ERR("getDefaultNetworkSimId is failed=[%d]", err);
139                 return err;
140         } else if (pReqInfo->msgInfo.sim_idx != defaultNetworkSimId) {
141                 MSG_ERR("It is not default network SIM ID, request SIM=[%d], activated SIM=[%d]", pReqInfo->msgInfo.sim_idx, defaultNetworkSimId);
142                 return MSG_ERR_INVALID_PARAMETER;
143         }
144
145         MSG_MAIN_TYPE_T msgMainType = pReqInfo->msgInfo.msgType.mainType;
146         MsgPlugin *plg = MsgPluginManager::instance()->getPlugin(msgMainType);
147
148         if(!plg) {
149                 MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_SEND_FAIL);
150                 MSG_DEBUG("No Plugin for %d type", msgMainType);
151
152                 return MSG_ERR_INVALID_PLUGIN_HANDLE;
153         }
154
155         /*      If MSG ID > 0 -> MSG in DRAFT */
156         /* Move Folder to OUTBOX */
157         /* reject_msg_support */
158         MSG_DEBUG("Not scheduled MMS, pReqInfo->msgInfo.msgType.subType [%d]", pReqInfo->msgInfo.msgType.subType);
159
160         if(pReqInfo->msgInfo.msgType.subType == MSG_SENDREQ_JAVA_MMS) {
161                 char fileName[MSG_FILENAME_LEN_MAX+1] = {0};
162
163                 /* copy whole of MMS PDU filepath to msgData */
164                 strncpy(fileName, pReqInfo->msgInfo.msgData, MSG_FILENAME_LEN_MAX);
165                 memset(pReqInfo->msgInfo.msgData, 0x00, sizeof(pReqInfo->msgInfo.msgData));
166                 snprintf(pReqInfo->msgInfo.msgData, sizeof(pReqInfo->msgInfo.msgData), "%s%s", MSG_IPC_DATA_PATH, fileName);
167
168                 MSG_SEC_DEBUG("JAVA MMS PDU filepath:%s", pReqInfo->msgInfo.msgData);
169
170                 /* submit request */
171                 err = plg->submitReq(pReqInfo);
172
173                 if(err != MSG_SUCCESS) {
174                         MSG_DEBUG("Update Network Status : [%d]", err);
175                         MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_SEND_FAIL);
176                 }
177
178                 return err;
179         } else if ((pReqInfo->msgInfo.msgType.subType == MSG_SENDREQ_MMS) || (pReqInfo->msgInfo.msgType.subType == MSG_FORWARD_MMS)) {
180                 MSG_SEC_DEBUG("msgdata file path = [%s]", pReqInfo->msgInfo.msgData);
181
182                 if (pReqInfo->msgInfo.msgId > 0 && (pReqInfo->msgInfo.folderId == MSG_DRAFT_ID || pReqInfo->msgInfo.folderId == MSG_OUTBOX_ID)) {
183                         MSG_DEBUG("Not New Message.");
184                         pReqInfo->msgInfo.folderId = MSG_OUTBOX_ID;
185                         err = MsgStoUpdateMessage(&(pReqInfo->msgInfo), &(pReqInfo->sendOptInfo));
186                 } else {
187                         MSG_DEBUG("New Message.");
188                         pReqInfo->msgInfo.msgId = 0;
189                         pReqInfo->msgInfo.folderId = MSG_OUTBOX_ID;
190                         err = MsgStoAddMessage(&(pReqInfo->msgInfo), &(pReqInfo->sendOptInfo));
191                 }
192         } else if (pReqInfo->msgInfo.msgType.subType == MSG_READREPLY_MMS) {
193                 msg_read_report_status_t readStatus;
194
195                 err = MsgStoCheckReadReportStatus(pReqInfo->msgInfo.msgId);
196                 if(err != MSG_SUCCESS) {
197                         MSG_INFO("msg id [%d], read report could NOT send [%d]", pReqInfo->msgInfo.msgId, err);
198                         return err;
199                 }
200
201                 memcpy(&readStatus, pReqInfo->msgInfo.msgData, sizeof(msg_read_report_status_t));
202                 if (readStatus == MSG_READ_REPORT_REJECT_BY_USER) {
203                         MSG_INFO("msg id [%d], read report reject by user", pReqInfo->msgInfo.msgId);
204
205                         err = MsgStoSetReadReportSendStatus(pReqInfo->msgInfo.msgId, MMS_RECEIVE_READ_REPORT_NO_SENT);
206
207                         return err;
208                 }
209
210                 err = MsgStoGetRecipientList(pReqInfo->msgInfo.msgId, &pRecipientList);
211                 if(err != MSG_SUCCESS)
212                         return MSG_ERR_PLUGIN_STORAGE;
213
214                 pReqInfo->msgInfo.nAddressCnt = pRecipientList.recipientCnt;
215                 pReqInfo->msgInfo.addressList = pRecipientList.recipientAddr;
216
217                 /*
218                 for(int i = 0; i < pRecipientList.recipientCnt; i++)
219                 {
220                         pReqInfo->msgInfo.addressList[i].addressType = pRecipientList.recipientAddr[i].addressType;
221                         pReqInfo->msgInfo.addressList[i].recipientType = MSG_RECIPIENTS_TYPE_TO;
222                         pReqInfo->msgInfo.addressList[i].contactId = pRecipientList.recipientAddr[i].contactId;
223                         strncpy(pReqInfo->msgInfo.addressList[i].addressVal, pRecipientList.recipientAddr[i].addressVal, MAX_ADDRESS_VAL_LEN);
224                 }
225                 */
226
227                 char subject[MAX_SUBJECT_LEN+1];
228
229                 err = MsgStoGetSubject(pReqInfo->msgInfo.msgId, subject);
230                 if (err != MSG_SUCCESS)
231                         MSG_DEBUG("Getting subject returned not a MSG_SUCCESS");
232
233                 strncpy(pReqInfo->msgInfo.subject, subject, MAX_SUBJECT_LEN);
234
235                 err = plg->composeReadReport(&(pReqInfo->msgInfo));
236         } else if (pReqInfo->msgInfo.msgType.subType == MSG_RETRIEVE_MMS) {
237                 MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), pReqInfo->msgInfo.networkStatus);
238         }
239
240         /* reject_msg_support */
241
242         if(err != MSG_SUCCESS) {
243                 MSG_DEBUG("Fail to Add/Update Message : MsgStoMoveMessageToFolder()/MsgStoAddMessage()");
244                 return err;
245         }
246
247         switch (pReqInfo->msgInfo.msgType.subType) {
248                 case MSG_SENDREQ_MMS:
249                 case MSG_FORWARD_MMS:
250                         MsgDeleteFile(pReqInfo->msgInfo.msgData);
251                         memset(pReqInfo->msgInfo.msgData, 0x00, MAX_MSG_DATA_LEN+1);
252                         snprintf(pReqInfo->msgInfo.msgData, MAX_MSG_DATA_LEN+1, "%s%d.mms", MSG_DATA_PATH, pReqInfo->msgInfo.msgId);
253                         break;
254
255                 case MSG_READREPLY_MMS:
256                 case MSG_READRECIND_MMS:
257                         break;
258                 default:
259                         break;
260         }
261
262         /* update content location from db */
263         if(pReqInfo->msgInfo.msgType.subType == MSG_RETRIEVE_MMS)
264                 err = MsgStoGetContentLocation(&(pReqInfo->msgInfo));
265         /* reject_msg_support */
266         else if (pReqInfo->msgInfo.msgType.subType == MSG_NOTIFYRESPIND_MMS)
267                 err = plg->updateRejectStatus(&(pReqInfo->msgInfo));
268
269         /* Check SIM is present or not */
270         char keyName[MAX_VCONFKEY_NAME_LEN];
271         memset(keyName, 0x00, sizeof(keyName));
272         snprintf(keyName, sizeof(keyName), "%s/%d", MSG_SIM_CHANGED, pReqInfo->msgInfo.sim_idx);
273         int tmpval = 0;
274         if (MsgSettingGetInt(keyName, &tmpval) != MSG_SUCCESS) {
275                 MSG_INFO("MsgSettingGetInt() is failed");
276         }
277         MSG_SIM_STATUS_T simStatus = (MSG_SIM_STATUS_T)tmpval;
278
279         if(simStatus == MSG_SIM_STATUS_NOT_FOUND) {
280                 MSG_DEBUG("SIM is not present...");
281                 MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_SEND_FAIL);
282
283                 return MSG_ERR_NO_SIM;
284         }
285
286         if (err == MSG_SUCCESS)
287                 err = plg->submitReq(pReqInfo);
288
289         if (err == MSG_SUCCESS && ( pReqInfo->msgInfo.msgType.subType == MSG_READREPLY_MMS || pReqInfo->msgInfo.msgType.subType == MSG_READRECIND_MMS ))
290                 MsgStoSetReadReportSendStatus(pReqInfo->msgInfo.msgId, MMS_RECEIVE_READ_REPORT_SENT);
291
292         if (err != MSG_SUCCESS) {
293                 if(pReqInfo->msgInfo.msgType.subType == MSG_RETRIEVE_MMS)
294                         MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_RETRIEVE_FAIL);
295                 else
296                         MsgStoUpdateNetworkStatus(dbHandle, &(pReqInfo->msgInfo), MSG_NETWORK_SEND_FAIL);
297         }
298
299         return err;
300 }
301
302
303 msg_error_t MsgUpdateSentMsg(msg_message_id_t MsgId, msg_network_status_t Status)
304 {
305         msg_error_t err = MSG_SUCCESS;
306
307         bool bKeepCopy = true;
308
309 #ifdef MSG_MMS_KEEPCOPY
310         MSG_SENDINGOPT_INFO_S sendOpt = {};
311
312         if (msgType.mainType == MSG_MMS_TYPE) {
313                 if (MsgStoGetMmsSendOpt(MsgId, &sendOpt) == MSG_SUCCESS)
314                         bKeepCopy = sendOpt.bKeepCopy;
315                 else
316                         err = MsgSettingGetBool(MSG_KEEP_COPY, &bKeepCopy);
317         }
318
319         /* Move Msg to SENTBOX */
320         if (Status == MSG_NETWORK_SEND_SUCCESS) {
321                 MSG_DEBUG("In Status == MSG_NETWORK_SEND_SUCCESS and  bKeepCopy is [%d]", bKeepCopy);
322                 if (bKeepCopy == true)
323                         err = MsgStoMoveMessageToFolder(MsgId, MSG_SENTBOX_ID);
324                 else
325                         err = MsgStoDeleteMessage(MsgId, false);
326         }
327 #else
328         /* Move Msg to SENTBOX */
329         if (Status == MSG_NETWORK_SEND_SUCCESS) {
330                 MSG_DEBUG("In Status == MSG_NETWORK_SEND_SUCCESS and  bKeepCopy is [%d]", bKeepCopy);
331                 if (bKeepCopy == true)
332                         err = MsgStoMoveMessageToFolder(MsgId, MSG_SENTBOX_ID);
333         }
334 #endif
335         return err;
336 }
337
338
339 void MsgCopyReqInfo(MSG_REQUEST_INFO_S *pSrc, int addrIdx, MSG_REQUEST_INFO_S *pDest)
340 {
341         MSG_BEGIN();
342
343         memset(pDest, 0x00, sizeof(MSG_REQUEST_INFO_S));
344
345         /* Copy Request ID */
346         pDest->reqId = pSrc->reqId;
347
348         /* Copy Msg Info */
349         pDest->msgInfo.msgId = pSrc->msgInfo.msgId;
350
351         pDest->msgInfo.threadId = pSrc->msgInfo.threadId;
352
353         pDest->msgInfo.folderId = pSrc->msgInfo.folderId;
354
355         pDest->msgInfo.msgType.mainType = pSrc->msgInfo.msgType.mainType;
356         pDest->msgInfo.msgType.subType = pSrc->msgInfo.msgType.subType;
357         pDest->msgInfo.msgType.classType = pSrc->msgInfo.msgType.classType;
358
359         pDest->msgInfo.storageId = pSrc->msgInfo.storageId;
360
361         pDest->msgInfo.nAddressCnt = 1;
362
363         pDest->msgInfo.addressList[0].addressType = pSrc->msgInfo.addressList[addrIdx].addressType;
364         pDest->msgInfo.addressList[0].recipientType = pSrc->msgInfo.addressList[addrIdx].recipientType;
365         pDest->msgInfo.addressList[0].contactId = pSrc->msgInfo.addressList[addrIdx].contactId;
366         strncpy(pDest->msgInfo.addressList[0].addressVal, pSrc->msgInfo.addressList[addrIdx].addressVal, MAX_ADDRESS_VAL_LEN);
367         strncpy(pDest->msgInfo.addressList[0].displayName, pSrc->msgInfo.addressList[addrIdx].displayName, MAX_DISPLAY_NAME_LEN);
368
369         strncpy(pDest->msgInfo.replyAddress, pSrc->msgInfo.replyAddress, MAX_PHONE_NUMBER_LEN);
370         strncpy(pDest->msgInfo.subject, pSrc->msgInfo.subject, MAX_SUBJECT_LEN);
371
372         pDest->msgInfo.displayTime = pSrc->msgInfo.displayTime;
373         pDest->msgInfo.networkStatus = pSrc->msgInfo.networkStatus;
374         pDest->msgInfo.encodeType = pSrc->msgInfo.encodeType;
375         pDest->msgInfo.bRead = pSrc->msgInfo.bRead;
376         pDest->msgInfo.bProtected = pSrc->msgInfo.bProtected;
377         pDest->msgInfo.priority = pSrc->msgInfo.priority;
378         pDest->msgInfo.direction = pSrc->msgInfo.direction;
379
380         pDest->msgInfo.msgPort.valid = pSrc->msgInfo.msgPort.valid;
381
382         if (pDest->msgInfo.msgPort.valid == true) {
383                 pDest->msgInfo.msgPort.dstPort = pSrc->msgInfo.msgPort.dstPort;
384                 pDest->msgInfo.msgPort.srcPort = pSrc->msgInfo.msgPort.srcPort;
385         }
386
387         pDest->msgInfo.bTextSms = pSrc->msgInfo.bTextSms;
388         pDest->msgInfo.dataSize = pSrc->msgInfo.dataSize;
389
390         strncpy(pDest->msgInfo.msgData, pSrc->msgInfo.msgData, MAX_MSG_DATA_LEN);
391
392         if (pDest->msgInfo.bTextSms == true) {
393                 memcpy(pDest->msgInfo.msgText, pSrc->msgInfo.msgText, pDest->msgInfo.dataSize);
394                 pDest->msgInfo.msgText[pDest->msgInfo.dataSize] = '\0';
395         }
396
397         /* Set Sending Info */
398         pDest->sendOptInfo.bSetting = pSrc->sendOptInfo.bSetting;
399
400         if (pDest->sendOptInfo.bSetting == true) {
401                 pDest->sendOptInfo.bDeliverReq = pSrc->sendOptInfo.bDeliverReq;
402                 pDest->sendOptInfo.bKeepCopy = pSrc->sendOptInfo.bKeepCopy;
403
404                 if (pDest->msgInfo.msgType.mainType == MSG_SMS_TYPE) {
405                         pDest->sendOptInfo.option.smsSendOptInfo.bReplyPath = pSrc->sendOptInfo.option.smsSendOptInfo.bReplyPath;
406                 } else if (pDest->msgInfo.msgType.mainType == MSG_MMS_TYPE) {
407                         pDest->sendOptInfo.option.mmsSendOptInfo.priority = pSrc->sendOptInfo.option.mmsSendOptInfo.priority;
408                         pDest->sendOptInfo.option.mmsSendOptInfo.bReadReq = pSrc->sendOptInfo.option.mmsSendOptInfo.bReadReq;
409
410                         pDest->sendOptInfo.option.mmsSendOptInfo.expiryTime.type = pSrc->sendOptInfo.option.mmsSendOptInfo.expiryTime.type;
411                         pDest->sendOptInfo.option.mmsSendOptInfo.expiryTime.time = pSrc->sendOptInfo.option.mmsSendOptInfo.expiryTime.time;
412
413                         pDest->sendOptInfo.option.mmsSendOptInfo.bUseDeliveryCustomTime = pSrc->sendOptInfo.option.mmsSendOptInfo.bUseDeliveryCustomTime;
414                         pDest->sendOptInfo.option.mmsSendOptInfo.deliveryTime.type = pSrc->sendOptInfo.option.mmsSendOptInfo.deliveryTime.type;
415                         pDest->sendOptInfo.option.mmsSendOptInfo.deliveryTime.time = pSrc->sendOptInfo.option.mmsSendOptInfo.deliveryTime.time;
416                 }
417         }
418
419         MSG_END();
420 }
421