add APIs for getting SIM init status and importing SIM contacts by sim slot no
[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 API int contacts_person_link_person(int base_person_id, int person_id)
26 {
27         int ret;
28         contacts_h contact = NULL;
29
30         ret = ctsvc_client_handle_get_p(&contact);
31         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
32
33         ret = ctsvc_client_person_link_person(contact, base_person_id, person_id);
34
35         return ret;
36 }
37
38 API int contacts_person_unlink_contact(int person_id, int contact_id, int *unlinked_person_id)
39 {
40         int ret;
41         contacts_h contact = NULL;
42
43         ret = ctsvc_client_handle_get_p(&contact);
44         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
45
46         ret = ctsvc_client_person_unlink_contact(contact, person_id, contact_id,
47                         unlinked_person_id);
48
49         return ret;
50
51 }
52
53 API int contacts_person_reset_usage(int person_id, contacts_usage_type_e type)
54 {
55         int ret;
56         contacts_h contact = NULL;
57
58         ret = ctsvc_client_handle_get_p(&contact);
59         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
60
61         ret = ctsvc_client_person_reset_usage(contact, person_id, type);
62
63         return ret;
64 }
65
66 API int contacts_person_set_favorite_order(int person_id, int previous_person_id,
67                 int next_person_id)
68 {
69         int ret;
70         contacts_h contact = NULL;
71
72         ret = ctsvc_client_handle_get_p(&contact);
73         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
74
75         ret = ctsvc_client_person_set_favorite_order(contact, person_id, previous_person_id,
76                         next_person_id);
77
78         return ret;
79 }
80
81 API int contacts_person_set_default_property(contacts_person_property_e property,
82                 int person_id, int id)
83 {
84         int ret;
85         contacts_h contact = NULL;
86
87         ret = ctsvc_client_handle_get_p(&contact);
88         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
89
90         ret = ctsvc_client_person_set_default_property(contact, property, person_id, id);
91
92         return ret;
93 }
94
95 API int contacts_person_get_default_property(contacts_person_property_e property,
96                 int person_id, int *id)
97 {
98         int ret;
99         contacts_h contact = NULL;
100
101         ret = ctsvc_client_handle_get_p(&contact);
102         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
103
104         ret = ctsvc_client_person_get_default_property(contact, property, person_id, id);
105
106         return ret;
107 }
108
109 API int contacts_person_get_aggregation_suggestions(int person_id, int limit, contacts_list_h *out_list)
110 {
111         int ret;
112         contacts_h contact = NULL;
113
114         ret = ctsvc_client_handle_get_p(&contact);
115         RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_client_handle_get_p() Fail(%d)", ret);
116
117         ret = ctsvc_client_person_get_aggregation_suggestions(contact, person_id, limit, out_list);
118
119         return ret;
120 }