Commit summary:
[platform/core/security/suspicious-activity-monitor.git] / daemon / servicerequest.cpp
1 /**
2  * Samsung Ukraine R&D Center (SRK under a contract between)
3  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
4  * Copyright (C) 2018 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  * @file   servicerequest.h
20  * @brief  Miscellaneous server requests
21  * @date   Created Apr 16, 2018
22  * @author Mail to: <A HREF="mailto:d.lomtev@samsung.com">Dmytro Lomtev, d.lomtev@samsung.com</A>
23  */
24 #include <jsoncpp/json/value.h>
25 #include <thread>
26 #include "settings.h"
27 #include "sysinfo.h"
28 #include "servicerequest.h"
29 #include "logging.h"
30 #include "samonitor_tag.h"
31
32 namespace agent
33 {
34
35 void ServiceRequest::registerDevice(communication::Connection& conn)
36 {
37     Json::Value data;
38     data["sn"] = SysInfo::tizenId();
39     data["model"] = SysInfo::model();
40     data["type"] = SysInfo::type();
41     data["sw"] = SysInfo::swVersion();
42     data["osname"] = SysInfo::osName();
43     data["osver"] = SysInfo::osVersion();
44     bool ok = false;
45     auto& settings = Settings::instance();
46
47     do {
48         try {
49             settings.setDeviceId(conn.registerDevice(data));
50             settings.save();
51             ok = true;
52         } catch (std::exception& e) {
53             LOG_E(TAG, "Failed to register the device: %s", e.what());
54             std::this_thread::sleep_for(settings.getKeepAliveTimeout());
55         }
56     } while (!ok && conn.isAllowed());
57 }
58
59 } // namespace agent