/* * Copyright (c) 2021-2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "reminder_helper.h" #include "ans_log_wrapper.h" #include "ans_notification.h" #include "notification_helper.h" #include "singleton.h" namespace OHOS { namespace Notification { ErrCode ReminderHelper::PublishReminder(ReminderRequest &reminder) { ANSR_LOGI("PublishReminder start"); NotificationHelper::AddSlotByType(reminder.GetSlotType()); return DelayedSingleton<AnsNotification>::GetInstance()->PublishReminder(reminder); } ErrCode ReminderHelper::CancelReminder(const int32_t reminderId) { ANSR_LOGI("CancelReminder start"); return DelayedSingleton<AnsNotification>::GetInstance()->CancelReminder(reminderId); } ErrCode ReminderHelper::CancelAllReminders() { ANSR_LOGI("CancelAllReminders start"); return DelayedSingleton<AnsNotification>::GetInstance()->CancelAllReminders(); } ErrCode ReminderHelper::GetValidReminders(std::vector<sptr<ReminderRequest>> &validReminders) { ANSR_LOGI("GetValidReminders start"); return DelayedSingleton<AnsNotification>::GetInstance()->GetValidReminders(validReminders); } ErrCode ReminderHelper::AddNotificationSlot(const NotificationSlot &slot) { ANSR_LOGI("AddNotificationSlot start"); return DelayedSingleton<AnsNotification>::GetInstance()->AddNotificationSlot(slot); } ErrCode ReminderHelper::RemoveNotificationSlot(const NotificationConstant::SlotType &slotType) { ANSR_LOGI("RemoveNotificationSlot start"); return DelayedSingleton<AnsNotification>::GetInstance()->RemoveNotificationSlot(slotType); } ErrCode ReminderHelper::AddExcludeDate(const int32_t reminderId, const uint64_t date) { ANSR_LOGI("AddExcludeDate start"); return DelayedSingleton<AnsNotification>::GetInstance()->AddExcludeDate(reminderId, date); } ErrCode ReminderHelper::DelExcludeDates(const int32_t reminderId) { ANSR_LOGI("DelExcludeDates start"); return DelayedSingleton<AnsNotification>::GetInstance()->DelExcludeDates(reminderId); } ErrCode ReminderHelper::GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) { ANSR_LOGI("GetExcludeDates start"); return DelayedSingleton<AnsNotification>::GetInstance()->GetExcludeDates(reminderId, dates); } } }