1 /* 2 * Copyright (c) 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 #ifndef OS_ACCOUNT_INTERFACES_KITS_NAPI_APPACCOUNT_INCLUDE_NAPI_APP_ACCOUNT_AUTHENTICATOR_CALLBACK_H 17 #define OS_ACCOUNT_INTERFACES_KITS_NAPI_APPACCOUNT_INCLUDE_NAPI_APP_ACCOUNT_AUTHENTICATOR_CALLBACK_H 18 19 #include "iapp_account_authenticator_callback.h" 20 #include "iremote_proxy.h" 21 #include "napi/native_api.h" 22 #include "napi/native_node_api.h" 23 24 namespace OHOS { 25 namespace AccountJsKit { 26 class NapiAppAccountAuthenticatorCallback { 27 public: 28 explicit NapiAppAccountAuthenticatorCallback(const sptr<IRemoteObject> &object); 29 ~NapiAppAccountAuthenticatorCallback(); 30 sptr<IRemoteObject> GetRemoteObject(); 31 static napi_value Init(napi_env env, napi_value exports); 32 33 private: 34 static napi_value JsOnResult(napi_env env, napi_callback_info cbInfo); 35 static napi_value JsOnRequestRedirected(napi_env env, napi_callback_info cbInfo); 36 static napi_value JsOnRequestContinued(napi_env env, napi_callback_info cbInfo); 37 static napi_value JsConstructor(napi_env env, napi_callback_info info); 38 private: 39 sptr<IRemoteObject> object_; 40 }; 41 42 struct CallbackParam { 43 napi_env env; 44 napi_async_work work; 45 int32_t resultCode; 46 AAFwk::WantParams result; 47 AAFwk::Want request; 48 NapiAppAccountAuthenticatorCallback *callback; 49 }; 50 } // namespace AccountJsKit 51 } // namespace OHOS 52 53 #endif // OS_ACCOUNT_INTERFACES_KITS_NAPI_APPACCOUNT_INCLUDE_NAPI_APP_ACCOUNT_AUTHENTICATOR_CALLBACK_H 54