зеркало из https://github.com/nextcloud/talk-ios.git
157 строки
4.8 KiB
Objective-C
157 строки
4.8 KiB
Objective-C
/**
|
|
* @copyright Copyright (c) 2020 Ivan Sein <ivan@nextcloud.com>
|
|
*
|
|
* @author Ivan Sein <ivan@nextcloud.com>
|
|
*
|
|
* @license GNU GPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "WebRTC/RTCIceCandidate.h"
|
|
#import "WebRTC/RTCSessionDescription.h"
|
|
|
|
extern NSString *const kRoomTypeVideo;
|
|
extern NSString *const kRoomTypeScreen;
|
|
|
|
typedef enum {
|
|
kNCSignalingMessageTypeUnknown,
|
|
kNCSignalingMessageTypeCandidate,
|
|
kNCSignalingMessageTypeOffer,
|
|
kNCSignalingMessageTypeAnswer,
|
|
kNCSignalingMessageTypeUnshareScreen,
|
|
kNCSignalingMessageTypeControl,
|
|
kNCSignalingMessageTypeMute,
|
|
kNCSignalingMessageTypeUnmute,
|
|
kNCSignalingMessageTypeNickChanged,
|
|
kNCSignalingMessageTypeRaiseHand,
|
|
kNCSignalingMessageTypeRecording
|
|
} NCSignalingMessageType;
|
|
|
|
|
|
@interface NCSignalingMessage : NSObject
|
|
|
|
@property(nonatomic, readonly) NSString *from;
|
|
@property(nonatomic, readonly) NSString *to;
|
|
@property(nonatomic, readonly) NSString *sid;
|
|
@property(nonatomic, readonly) NSString *type;
|
|
@property(nonatomic, readonly) NSDictionary *payload;
|
|
@property(nonatomic, readonly) NSString *roomType;
|
|
|
|
+ (NCSignalingMessage *)messageFromJSONString:(NSString *)jsonString;
|
|
+ (NCSignalingMessage *)messageFromJSONDictionary:(NSDictionary *)jsonDict;
|
|
+ (NCSignalingMessage *)messageFromExternalSignalingJSONDictionary:(NSDictionary *)jsonDict;
|
|
+ (NSString *)getMessageSid;
|
|
- (NSDictionary *)messageDict;
|
|
- (NSDictionary *)functionDict;
|
|
- (NCSignalingMessageType)messageType;
|
|
|
|
@end
|
|
|
|
@interface NCICECandidateMessage : NCSignalingMessage
|
|
|
|
@property(nonatomic, readonly) RTCIceCandidate *candidate;
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
- (instancetype)initWithCandidate:(RTCIceCandidate *)candidate
|
|
from:(NSString *)from
|
|
to:(NSString *)to
|
|
sid:(NSString *)sid
|
|
roomType:(NSString *)roomType;
|
|
|
|
@end
|
|
|
|
@interface NCSessionDescriptionMessage : NCSignalingMessage
|
|
|
|
@property(nonatomic, readonly) RTCSessionDescription *sessionDescription;
|
|
@property(nonatomic, readonly) NSString *nick;
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
- (instancetype)initWithSessionDescription:(RTCSessionDescription *)sessionDescription
|
|
from:(NSString *)from
|
|
to:(NSString *)to
|
|
sid:(NSString *)sid
|
|
roomType:(NSString *)roomType
|
|
nick:(NSString *)nick;
|
|
|
|
|
|
@end
|
|
|
|
@interface NCUnshareScreenMessage : NCSignalingMessage
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
|
|
@end
|
|
|
|
@interface NCControlMessage : NCSignalingMessage
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
|
|
@end
|
|
|
|
@interface NCMuteMessage : NCSignalingMessage
|
|
|
|
- (instancetype)initWithFrom:(NSString *)from
|
|
sendTo:(NSString *)to
|
|
withPayload:(NSDictionary *)payload
|
|
forRoomType:(NSString *)roomType;
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
|
|
@end
|
|
|
|
@interface NCUnmuteMessage : NCSignalingMessage
|
|
|
|
- (instancetype)initWithFrom:(NSString *)from
|
|
sendTo:(NSString *)to
|
|
withPayload:(NSDictionary *)payload
|
|
forRoomType:(NSString *)roomType;
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
|
|
@end
|
|
|
|
@interface NCNickChangedMessage : NCSignalingMessage
|
|
|
|
- (instancetype)initWithFrom:(NSString *)from
|
|
sendTo:(NSString *)to
|
|
withPayload:(NSDictionary *)payload
|
|
forRoomType:(NSString *)roomType;
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
|
|
@end
|
|
|
|
@interface NCRaiseHandMessage : NCSignalingMessage
|
|
|
|
- (instancetype)initWithFrom:(NSString *)from
|
|
sendTo:(NSString *)to
|
|
withPayload:(NSDictionary *)payload
|
|
forRoomType:(NSString *)roomType;
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
|
|
@end
|
|
|
|
@interface NCRecordingMessage : NCSignalingMessage
|
|
|
|
@property(nonatomic, readonly) NSInteger status;
|
|
|
|
- (instancetype)initWithValues:(NSDictionary *)values;
|
|
|
|
@end
|