增加换肤功能
This commit is contained in:
172
TUIKit/TUICore/TUILogin.h
Normal file
172
TUIKit/TUICore/TUILogin.h
Normal file
@@ -0,0 +1,172 @@
|
||||
|
||||
// Created by Tencent on 2023/06/09.
|
||||
// Copyright © 2023 Tencent. All rights reserved.
|
||||
/**
|
||||
* TUILogin
|
||||
* This module is mainly responsible for the login logic of IM and TRTC
|
||||
*/
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
typedef void (^TFail)(int code, NSString * __nullable msg);
|
||||
typedef void (^TSucc)(void);
|
||||
typedef NS_ENUM(NSInteger, TUILogLevel) {
|
||||
/**
|
||||
* < Do not output any SDK logs
|
||||
*/
|
||||
TUI_LOG_NONE = 0,
|
||||
/**
|
||||
* < Output logs at the DEBUG, INFO, WARNING, and ERROR levels
|
||||
*/
|
||||
TUI_LOG_DEBUG = 3,
|
||||
/**
|
||||
* < Output logs at the INFO, WARNING, and ERROR levels
|
||||
*/
|
||||
TUI_LOG_INFO = 4,
|
||||
/**
|
||||
* < Output logs at the WARNING and ERROR levels
|
||||
*/
|
||||
TUI_LOG_WARN = 5,
|
||||
/**
|
||||
* < Output logs at the ERROR level
|
||||
*/
|
||||
TUI_LOG_ERROR = 6,
|
||||
};
|
||||
|
||||
/**
|
||||
* Status in different kinds of business scene
|
||||
*/
|
||||
typedef NS_ENUM(NSInteger, TUIBusinessScene) {
|
||||
None = 0,
|
||||
InRecording = 1,
|
||||
InCallingRoom = 2,
|
||||
InMeetingRoom = 3,
|
||||
InLivingRoom = 4,
|
||||
};
|
||||
|
||||
/// Enumeration definition of login account type
|
||||
typedef NS_ENUM(NSInteger, TUILoginAccountType) {
|
||||
TUI_ACCOUNT_TYPE_UNKOWN = 0, ///< Unkown
|
||||
TUI_ACCOUNT_TYPE_IM = 1, ///< IM
|
||||
TUI_ACCOUNT_TYPE_PUSH = 2, ///< Push
|
||||
};
|
||||
|
||||
/**
|
||||
* Notification for init im sdk succeed
|
||||
*/
|
||||
FOUNDATION_EXTERN NSString *const TUIInitSdkSuccessNotification;
|
||||
|
||||
/**
|
||||
* Notification for init im sdk failed
|
||||
*/
|
||||
FOUNDATION_EXTERN NSString *const TUIInitSdkFailNotification;
|
||||
|
||||
/**
|
||||
* Notification for log-in succeed
|
||||
*/
|
||||
FOUNDATION_EXTERN NSString *const TUILoginSuccessNotification;
|
||||
|
||||
/**
|
||||
* Notification for log-in failed
|
||||
*/
|
||||
FOUNDATION_EXTERN NSString *const TUILoginFailNotification;
|
||||
|
||||
/**
|
||||
* Notification for log-out succeed
|
||||
*/
|
||||
FOUNDATION_EXTERN NSString *const TUILogoutSuccessNotification;
|
||||
|
||||
/**
|
||||
* Notification for log-out failed
|
||||
*/
|
||||
FOUNDATION_EXTERN NSString *const TUILogoutFailNotification;
|
||||
|
||||
@protocol TUILoginListener <NSObject>
|
||||
|
||||
/**
|
||||
* Callback that the SDK is connecting to the server
|
||||
*/
|
||||
- (void)onConnecting;
|
||||
|
||||
/**
|
||||
* Callback that the SDK has successfully connected to the server
|
||||
*/
|
||||
- (void)onConnectSuccess;
|
||||
|
||||
/**
|
||||
* Callback for SDK connection to server failure
|
||||
*/
|
||||
- (void)onConnectFailed:(int)code err:(NSString * __nullable)err;
|
||||
|
||||
/**
|
||||
* The callback of the current user being kicked off, the user can be prompted on the UI at this time, and the login() function of V2TIMManager can be called
|
||||
* again to log in again.
|
||||
*/
|
||||
- (void)onKickedOffline;
|
||||
|
||||
/**
|
||||
* The callback of the login credentials expired when online, you need to generate a new userSig and call the login() function of V2TIMManager again to log in
|
||||
* again.
|
||||
*/
|
||||
- (void)onUserSigExpired;
|
||||
|
||||
@end
|
||||
|
||||
@interface TUILoginConfig : NSObject
|
||||
|
||||
@property(nonatomic, assign) TUILogLevel logLevel;
|
||||
|
||||
@property(nonatomic, copy, nullable) void (^onLog)(NSInteger logLevel, NSString * __nullable logContent);
|
||||
|
||||
@property(nonatomic, assign) BOOL initLocalStorageOnly;
|
||||
|
||||
@end
|
||||
|
||||
@interface TUILogin : NSObject
|
||||
|
||||
+ (void)initWithSdkAppID:(int)sdkAppID __attribute__((deprecated("use login:userID:userSig:succ:fail:")));
|
||||
|
||||
+ (void)login:(NSString *)userID
|
||||
userSig:(NSString *)userSig
|
||||
succ:(__nullable TSucc)succ
|
||||
fail:(__nullable TFail)fail __attribute__((deprecated("use login:userID:userSig:succ:fail:")));
|
||||
|
||||
+ (void)login:(int)sdkAppID
|
||||
userID:(NSString *)userID
|
||||
userSig:(NSString *)userSig
|
||||
succ:(__nullable TSucc)succ
|
||||
fail:(__nullable TFail)fail;
|
||||
|
||||
+ (void)login:(int)sdkAppID
|
||||
userID:(NSString *)userID
|
||||
userSig:(NSString *)userSig
|
||||
config:(TUILoginConfig * __nullable)config
|
||||
succ:(__nullable TSucc)succ
|
||||
fail:(__nullable TFail)fail;
|
||||
|
||||
+ (void)logout:(__nullable TSucc)succ
|
||||
fail:(__nullable TFail)fail;
|
||||
|
||||
+ (void)addLoginListener:(id<TUILoginListener>)listener;
|
||||
+ (void)removeLoginListener:(id<TUILoginListener>)listener;
|
||||
|
||||
+ (int)getSdkAppID;
|
||||
+ (BOOL)isUserLogined;
|
||||
|
||||
+ (NSString * __nullable)getUserID;
|
||||
+ (NSString * __nullable)getUserSig;
|
||||
|
||||
+ (NSString * __nullable)getNickName;
|
||||
+ (NSString * __nullable)getFaceUrl;
|
||||
|
||||
/**
|
||||
* No-thread-safe
|
||||
*/
|
||||
+ (void)setCurrentBusinessScene:(TUIBusinessScene)scene;
|
||||
+ (TUIBusinessScene)getCurrentBusinessScene;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user