1 /*
2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "ans_notification.h"
17 #include "ans_inner_errors.h"
18
19 namespace OHOS {
20 namespace Notification {
21
SetNotificationsEnabledForSpecifiedBundle(const NotificationBundleOption & bundleOption,const std::string & deviceId,bool enabled)22 ErrCode AnsNotification::SetNotificationsEnabledForSpecifiedBundle(
23 const NotificationBundleOption &bundleOption, const std::string &deviceId, bool enabled)
24 {
25 if (bundleOption.GetBundleName() == "gg") {
26 return ERR_OK;
27 } else {
28 return ERR_ANS_SERVICE_NOT_CONNECTED;
29 }
30 }
31
GetTargetDeviceStatus(const std::string & deviceType,int32_t & status)32 ErrCode AnsNotification::GetTargetDeviceStatus(const std::string &deviceType, int32_t &status)
33 {
34 if (deviceType == "phone") {
35 return ERR_OK;
36 } else {
37 return ERR_ANS_SERVICE_NOT_CONNECTED;
38 }
39 }
40
SetTargetDeviceStatus(const std::string & deviceType,const uint32_t status,const std::string deveiceId)41 ErrCode AnsNotification::SetTargetDeviceStatus(const std::string &deviceType, const uint32_t status,
42 const std::string deveiceId)
43 {
44 if (deviceType == "phone") {
45 return ERR_OK;
46 } else {
47 return ERR_ANS_SERVICE_NOT_CONNECTED;
48 }
49 }
50
SetSmartReminderEnabled(const std::string & deviceType,const bool enabled)51 ErrCode AnsNotification::SetSmartReminderEnabled(const std::string &deviceType, const bool enabled)
52 {
53 if (deviceType == "phone") {
54 return ERR_OK;
55 } else {
56 return ERR_ANS_SERVICE_NOT_CONNECTED;
57 }
58 }
59
SetDistributedEnabledByBundle(const NotificationBundleOption & bundleOption,const std::string & deviceType,const bool enabled)60 ErrCode AnsNotification::SetDistributedEnabledByBundle(const NotificationBundleOption &bundleOption,
61 const std::string &deviceType, const bool enabled)
62 {
63 if (deviceType == "phone") {
64 return ERR_OK;
65 } else {
66 return ERR_ANS_SERVICE_NOT_CONNECTED;
67 }
68 }
69
SetDistributedBundleOption(const std::vector<DistributedBundleOption> & bundles,const std::string & deviceType)70 ErrCode AnsNotification::SetDistributedBundleOption(
71 const std::vector<DistributedBundleOption> &bundles, const std::string &deviceType)
72 {
73 if (deviceType == "phone") {
74 return ERR_OK;
75 } else {
76 return ERR_ANS_SERVICE_NOT_CONNECTED;
77 }
78 }
79
SetDistributedEnabledBySlot(const NotificationConstant::SlotType & slotType,const std::string & deviceType,const bool enabled)80 ErrCode AnsNotification::SetDistributedEnabledBySlot(
81 const NotificationConstant::SlotType &slotType, const std::string &deviceType, const bool enabled)
82 {
83 if (deviceType == "phone") {
84 return ERR_OK;
85 } else {
86 return ERR_ANS_SERVICE_NOT_CONNECTED;
87 }
88 }
89 } // namespace Notification
90 } // namespace OHOS