Add db integrity check
[platform/core/pim/contacts-service.git] / client / ctsvc_client_person.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
20 #include "contacts.h"
21 #include "ctsvc_internal.h"
22 #include "ctsvc_client_handle.h"
23 #include "ctsvc_client_person_helper.h"
24
25 EXPORT_API int contacts_person_link_person(int base_person_id, int person_id)
26 {
27         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
28         int ret;
29         contacts_h contact = NULL;
30
31         ret = ctsvc_client_handle_get_p(&contact);
32         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
33
34         ret = ctsvc_client_person_link_person(contact, base_person_id, person_id);
35
36         return ret;
37 }
38
39 EXPORT_API int contacts_person_unlink_contact(int person_id, int contact_id, int *unlinked_person_id)
40 {
41         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
42         int ret;
43         contacts_h contact = NULL;
44
45         ret = ctsvc_client_handle_get_p(&contact);
46         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
47
48         ret = ctsvc_client_person_unlink_contact(contact, person_id, contact_id,
49                         unlinked_person_id);
50
51         return ret;
52
53 }
54
55 EXPORT_API int contacts_person_reset_usage(int person_id, contacts_usage_type_e type)
56 {
57         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
58         int ret;
59         contacts_h contact = NULL;
60
61         ret = ctsvc_client_handle_get_p(&contact);
62         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
63
64         ret = ctsvc_client_person_reset_usage(contact, person_id, type);
65
66         return ret;
67 }
68
69 EXPORT_API int contacts_person_set_favorite_order(int person_id, int previous_person_id,
70                 int next_person_id)
71 {
72         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
73         int ret;
74         contacts_h contact = NULL;
75
76         ret = ctsvc_client_handle_get_p(&contact);
77         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
78
79         ret = ctsvc_client_person_set_favorite_order(contact, person_id, previous_person_id,
80                         next_person_id);
81
82         return ret;
83 }
84
85 EXPORT_API int contacts_person_set_default_property(contacts_person_property_e property,
86                 int person_id, int id)
87 {
88         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
89         int ret;
90         contacts_h contact = NULL;
91
92         ret = ctsvc_client_handle_get_p(&contact);
93         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
94
95         ret = ctsvc_client_person_set_default_property(contact, property, person_id, id);
96
97         return ret;
98 }
99
100 EXPORT_API int contacts_person_get_default_property(contacts_person_property_e property,
101                 int person_id, int *id)
102 {
103         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
104         int ret;
105         contacts_h contact = NULL;
106
107         ret = ctsvc_client_handle_get_p(&contact);
108         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
109
110         ret = ctsvc_client_person_get_default_property(contact, property, person_id, id);
111
112         return ret;
113 }
114
115 EXPORT_API int contacts_person_get_aggregation_suggestions(int person_id, int limit, contacts_list_h *out_list)
116 {
117         CHECK_CONTACT_SUPPORTED(CONTACT_FEATURE);
118         int ret;
119         contacts_h contact = NULL;
120
121         ret = ctsvc_client_handle_get_p(&contact);
122         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
123
124         ret = ctsvc_client_person_get_aggregation_suggestions(contact, person_id, limit, out_list);
125
126         return ret;
127 }