[SVACE Issue Fixes]
[platform/core/pim/contacts-service.git] / server / db / ctsvc_db_plugin_nickname_helper.c
1 /*
2  * Contacts Service
3  *
4  * Copyright (c) 2010 - 2015 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19 #include "contacts.h"
20 #include "ctsvc_internal.h"
21 #include "ctsvc_db_schema.h"
22 #include "ctsvc_db_sqlite.h"
23 #include "ctsvc_db_init.h"
24 #include "ctsvc_db_query.h"
25 #include "ctsvc_db_plugin_nickname_helper.h"
26 #include "ctsvc_record.h"
27 #include "ctsvc_notification.h"
28
29
30 int ctsvc_db_nickname_get_value_from_stmt(cts_stmt stmt, contacts_record_h *record, int start_count)
31 {
32         int ret;
33         char *temp;
34         ctsvc_nickname_s *nickname;
35
36         ret = contacts_record_create(_contacts_nickname._uri, (contacts_record_h*)&nickname);
37         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "contacts_record_create Fail(%d)", ret);
38
39         nickname->id = ctsvc_stmt_get_int(stmt, start_count++);
40         nickname->contact_id = ctsvc_stmt_get_int(stmt, start_count++);
41         start_count++;
42         start_count++;
43         start_count++;
44         temp = ctsvc_stmt_get_text(stmt, start_count++);
45         nickname->nickname = SAFE_STRDUP(temp);
46
47         *record = (contacts_record_h)nickname;
48         return CONTACTS_ERROR_NONE;
49 }
50
51 int ctsvc_db_nickname_insert(contacts_record_h record, int contact_id, bool is_my_profile, int *id)
52 {
53         int ret;
54         cts_stmt stmt = NULL;
55         char query[CTS_SQL_MAX_LEN] = {0};
56         ctsvc_nickname_s *nickname = (ctsvc_nickname_s*)record;
57
58         RETV_IF(NULL == nickname->nickname, CONTACTS_ERROR_NONE);
59         RETVM_IF(contact_id <= 0, CONTACTS_ERROR_INVALID_PARAMETER,
60                         "contact_id(%d) is mandatory field to insert nickname record ", nickname->contact_id);
61         RETVM_IF(0 < nickname->id, CONTACTS_ERROR_INVALID_PARAMETER,
62                         "id(%d), This record is already inserted", nickname->id);
63
64         snprintf(query, sizeof(query),
65                         "INSERT INTO "CTS_TABLE_DATA"(contact_id, is_my_profile, datatype, data1, data2, data3) "
66                         "VALUES(%d, %d, %d, %d, ?, ?)",
67                         contact_id, is_my_profile, CONTACTS_DATA_TYPE_NICKNAME, nickname->type);
68
69         ret = ctsvc_query_prepare(query, &stmt);
70         RETVM_IF(NULL == stmt, ret, "ctsvc_query_prepare() Fail(%d)", ret);
71
72         if (nickname->label)
73                 ctsvc_stmt_bind_text(stmt, 1, nickname->label);
74         if (nickname->nickname)
75                 ctsvc_stmt_bind_text(stmt, 2, nickname->nickname);
76
77         ret = ctsvc_stmt_step(stmt);
78         if (CONTACTS_ERROR_NONE != ret) {
79                 /* LCOV_EXCL_START */
80                 ERR("ctsvc_stmt_step() Fail(%d)", ret);
81                 ctsvc_stmt_finalize(stmt);
82                 return ret;
83                 /* LCOV_EXCL_STOP */
84         }
85
86         /* nickname->id = ctsvc_db_get_last_insert_id(); */
87         if (id)
88                 *id = ctsvc_db_get_last_insert_id();
89         ctsvc_stmt_finalize(stmt);
90
91         if (false == is_my_profile)
92                 ctsvc_set_nickname_noti();
93         return CONTACTS_ERROR_NONE;
94 }
95
96 int ctsvc_db_nickname_update(contacts_record_h record, bool is_my_profile)
97 {
98         int id;
99         int ret = CONTACTS_ERROR_NONE;
100         char *set = NULL;
101         GSList *bind_text = NULL;
102         GSList *cursor = NULL;
103         ctsvc_nickname_s *nickname = (ctsvc_nickname_s*)record;
104         char query[CTS_SQL_MAX_LEN] = {0};
105
106         RETVM_IF(0 == nickname->id, CONTACTS_ERROR_INVALID_PARAMETER, "nickname of contact has no ID.");
107         RETVM_IF(CTSVC_PROPERTY_FLAG_DIRTY != (nickname->base.property_flag & CTSVC_PROPERTY_FLAG_DIRTY), CONTACTS_ERROR_NONE, "No update");
108
109         snprintf(query, sizeof(query),
110                         "SELECT id FROM "CTS_TABLE_DATA" WHERE id = %d", nickname->id);
111         ret = ctsvc_query_get_first_int_result(query, &id);
112         RETV_IF(ret != CONTACTS_ERROR_NONE, ret);
113
114         do {
115                 if (CONTACTS_ERROR_NONE != (ret = ctsvc_db_create_set_query(record, &set, &bind_text))) break;
116                 if (CONTACTS_ERROR_NONE != (ret = ctsvc_db_update_record_with_set_query(set, bind_text, CTS_TABLE_DATA, nickname->id))) break;
117                 if (false == is_my_profile)
118                         ctsvc_set_nickname_noti();
119         } while (0);
120
121         CTSVC_RECORD_RESET_PROPERTY_FLAGS((ctsvc_record_s*)record);
122         free(set);
123
124         if (bind_text) {
125                 for (cursor = bind_text; cursor; cursor = cursor->next) {
126                         free(cursor->data);
127                         cursor->data = NULL;
128                 }
129                 g_slist_free(bind_text);
130         }
131         return ret;
132 }
133
134 int ctsvc_db_nickname_delete(int id, bool is_my_profile)
135 {
136         int ret;
137         char query[CTS_SQL_MIN_LEN] = {0};
138
139         snprintf(query, sizeof(query), "DELETE FROM "CTS_TABLE_DATA" WHERE id = %d AND datatype = %d",
140                         id, CONTACTS_DATA_TYPE_NICKNAME);
141
142         ret = ctsvc_query_exec(query);
143         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_query_exec() Fail(%d)", ret);
144
145         if (false == is_my_profile)
146                 ctsvc_set_nickname_noti();
147
148         return CONTACTS_ERROR_NONE;
149 }
150