* Copyright (c) 2023 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.
*/
#ifndef IAM_WIDGET_JSON_H
#define IAM_WIDGET_JSON_H
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
#include "nlohmann/json.hpp"
#include "iam_common_defines.h"
#include "user_auth_common_defines.h"
namespace OHOS {
namespace UserIam {
namespace UserAuth {
AuthType Str2AuthType(const std::string &strAuthType);
std::string AuthType2Str(const AuthType &authType);
std::string WinModeType2Str(const WindowModeType &winModeType);
std::string PinSubType2Str(const PinSubType &subType);
struct WidgetNotice {
std::vector<AuthType> AuthTypeList() const;
uint64_t widgetContextId {0};
std::string event {""};
uint32_t orientation {0};
uint32_t needRotate {0};
uint32_t alreadyLoad {0};
std::string version {""};
std::vector<std::string> typeList {};
bool endAfterFirstFail {false};
AuthIntent authIntent {AuthIntent::DEFAULT};
int32_t tipCode {0};
};
void to_json(nlohmann::json &jsonNotice, const WidgetNotice ¬ice);
void from_json(const nlohmann::json &jsonNotice, WidgetNotice ¬ice);
void LoadConfigJsonBuffer(nlohmann::json &jsonBuf);
bool GetProcessName(nlohmann::json &jsonBuf, std::vector<std::string> &processName);
bool GetFollowCallerList(nlohmann::json &jsonBuf, std::vector<std::string> &processName);
bool GetSceneboardBundleName(nlohmann::json &jsonBuf, std::string &processName);
bool GetSceneboardAbilityName(nlohmann::json &jsonBuf, std::string &processName);
bool GetAlwaysSupportFollowCallerUi(nlohmann::json &jsonBuf, std::vector<std::string> &processName);
struct WidgetCommand {
struct ExtraInfo {
std::string callingBundleName {""};
std::vector<uint8_t> challenge {};
};
struct Cmd {
std::string event {""};
std::string version {""};
std::string type {""};
int32_t result = -1;
int32_t lockoutDuration = -1;
int32_t remainAttempts = -1;
std::string sensorInfo {""};
int32_t tipType = -1;
std::vector<uint8_t> tipInfo;
ExtraInfo extraInfo;
};
uint64_t widgetContextId {0};
std::vector<std::string> typeList {};
std::string title {""};
std::string pinSubType {""};
std::string windowModeType {""};
std::string navigationButtonText {""};
std::vector<Cmd> cmdList {};
int32_t isReload {0};
std::string rotateAuthType {""};
std::string callingAppID {""};
std::string callingProcessName {""};
std::string widgetContextIdStr {""};
int32_t userId {-1};
bool skipLockedBiometricAuth {false};
};
void to_json(nlohmann::json &jsonCommand, const WidgetCommand &command);
struct WidgetCmdParameters {
std::string uiExtensionType {""};
WidgetCommand useriamCmdData {};
std::string uiExtNodeAngle {""};
uint32_t sysDialogZOrder {0};
uint32_t focusState {1};
};
void to_json(nlohmann::json &jsonWidgetCmdParams, const WidgetCmdParameters &widgetCmdParameters);
}
}
}
#endif