2017-06-07 15:50:30 +00:00
|
|
|
/*
|
2021-01-13 13:48:29 +00:00
|
|
|
* Copyright @ 2017-present 8x8, Inc.
|
2017-06-07 15:50:30 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-01-13 13:48:29 +00:00
|
|
|
#import "ExternalAPI.h"
|
2017-06-10 00:17:01 +00:00
|
|
|
#import "JitsiMeetView+Private.h"
|
2017-06-07 15:50:30 +00:00
|
|
|
|
2021-01-13 13:48:29 +00:00
|
|
|
// Events
|
2021-01-20 12:06:45 +00:00
|
|
|
static NSString * const hangUpAction = @"org.jitsi.meet.HANG_UP";
|
|
|
|
static NSString * const setAudioMutedAction = @"org.jitsi.meet.SET_AUDIO_MUTED";
|
|
|
|
static NSString * const sendEndpointTextMessageAction = @"org.jitsi.meet.SEND_ENDPOINT_TEXT_MESSAGE";
|
2021-01-21 12:07:00 +00:00
|
|
|
static NSString * const toggleScreenShareAction = @"org.jitsi.meet.TOGGLE_SCREEN_SHARE";
|
2021-02-04 12:26:35 +00:00
|
|
|
static NSString * const retrieveParticipantsInfoAction = @"org.jitsi.meet.RETRIEVE_PARTICIPANTS_INFO";
|
2021-02-17 14:26:40 +00:00
|
|
|
static NSString * const openChatAction = @"org.jitsi.meet.OPEN_CHAT";
|
|
|
|
static NSString * const closeChatAction = @"org.jitsi.meet.CLOSE_CHAT";
|
|
|
|
static NSString * const sendChatMessageAction = @"org.jitsi.meet.SEND_CHAT_MESSAGE";
|
2021-03-23 13:30:17 +00:00
|
|
|
static NSString * const setVideoMutedAction = @"org.jitsi.meet.SET_VIDEO_MUTED";
|
2017-06-07 15:50:30 +00:00
|
|
|
|
|
|
|
@implementation ExternalAPI
|
|
|
|
|
2021-02-04 12:26:35 +00:00
|
|
|
static NSMapTable<NSString*, void (^)(NSArray* participantsInfo)> *participantInfoCompletionHandlers;
|
|
|
|
|
|
|
|
__attribute__((constructor))
|
|
|
|
static void initializeViewsMap() {
|
2021-02-09 16:03:25 +00:00
|
|
|
participantInfoCompletionHandlers = [NSMapTable strongToStrongObjectsMapTable];
|
2021-02-04 12:26:35 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 15:50:30 +00:00
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
|
2021-01-13 13:48:29 +00:00
|
|
|
- (NSDictionary *)constantsToExport {
|
|
|
|
return @{
|
2021-01-20 12:06:45 +00:00
|
|
|
@"HANG_UP": hangUpAction,
|
|
|
|
@"SET_AUDIO_MUTED" : setAudioMutedAction,
|
2021-01-21 12:07:00 +00:00
|
|
|
@"SEND_ENDPOINT_TEXT_MESSAGE": sendEndpointTextMessageAction,
|
2021-02-04 12:26:35 +00:00
|
|
|
@"TOGGLE_SCREEN_SHARE": toggleScreenShareAction,
|
2021-02-17 14:26:40 +00:00
|
|
|
@"RETRIEVE_PARTICIPANTS_INFO": retrieveParticipantsInfoAction,
|
|
|
|
@"OPEN_CHAT": openChatAction,
|
|
|
|
@"CLOSE_CHAT": closeChatAction,
|
2021-03-23 13:30:17 +00:00
|
|
|
@"SEND_CHAT_MESSAGE": sendChatMessageAction,
|
|
|
|
@"SET_VIDEO_MUTED" : setVideoMutedAction
|
2021-01-13 13:48:29 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-05-17 11:38:59 +00:00
|
|
|
/**
|
2018-05-21 00:01:59 +00:00
|
|
|
* Make sure all methods in this module are invoked on the main/UI thread.
|
2018-05-17 11:38:59 +00:00
|
|
|
*/
|
|
|
|
- (dispatch_queue_t)methodQueue {
|
|
|
|
return dispatch_get_main_queue();
|
|
|
|
}
|
|
|
|
|
2021-01-13 13:48:29 +00:00
|
|
|
+ (BOOL)requiresMainQueueSetup {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSArray<NSString *> *)supportedEvents {
|
2021-02-04 12:26:35 +00:00
|
|
|
return @[ hangUpAction,
|
|
|
|
setAudioMutedAction,
|
|
|
|
sendEndpointTextMessageAction,
|
|
|
|
toggleScreenShareAction,
|
2021-02-17 14:26:40 +00:00
|
|
|
retrieveParticipantsInfoAction,
|
|
|
|
openChatAction,
|
|
|
|
closeChatAction,
|
2021-03-23 13:30:17 +00:00
|
|
|
sendChatMessageAction,
|
|
|
|
setVideoMutedAction
|
2021-02-17 14:26:40 +00:00
|
|
|
];
|
2021-01-13 13:48:29 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 15:50:30 +00:00
|
|
|
/**
|
|
|
|
* Dispatches an event that occurred on JavaScript to the view's delegate.
|
|
|
|
*
|
2017-06-10 08:34:11 +00:00
|
|
|
* @param name The name of the event.
|
|
|
|
* @param data The details/specifics of the event to send determined
|
2017-10-01 06:35:19 +00:00
|
|
|
* by/associated with the specified `name`.
|
2017-06-10 08:34:11 +00:00
|
|
|
* @param scope
|
2017-06-07 15:50:30 +00:00
|
|
|
*/
|
2017-06-10 00:17:01 +00:00
|
|
|
RCT_EXPORT_METHOD(sendEvent:(NSString *)name
|
|
|
|
data:(NSDictionary *)data
|
|
|
|
scope:(NSString *)scope) {
|
|
|
|
// The JavaScript App needs to provide uniquely identifying information to
|
|
|
|
// the native ExternalAPI module so that the latter may match the former
|
|
|
|
// to the native JitsiMeetView which hosts it.
|
|
|
|
JitsiMeetView *view = [JitsiMeetView viewForExternalAPIScope:scope];
|
|
|
|
|
|
|
|
if (!view) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
id delegate = view.delegate;
|
2017-06-07 15:50:30 +00:00
|
|
|
|
2017-06-10 00:17:01 +00:00
|
|
|
if (!delegate) {
|
2017-06-07 15:50:30 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-02-04 12:26:35 +00:00
|
|
|
|
|
|
|
if ([name isEqual: @"PARTICIPANTS_INFO_RETRIEVED"]) {
|
|
|
|
[self onParticipantsInfoRetrieved: data];
|
|
|
|
return;
|
|
|
|
}
|
2017-06-07 15:50:30 +00:00
|
|
|
|
2017-09-06 18:00:34 +00:00
|
|
|
SEL sel = NSSelectorFromString([self methodNameFromEventName:name]);
|
2017-06-10 00:17:01 +00:00
|
|
|
|
2017-09-06 18:00:34 +00:00
|
|
|
if (sel && [delegate respondsToSelector:sel]) {
|
|
|
|
[delegate performSelector:sel withObject:data];
|
2017-06-07 15:50:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 12:26:35 +00:00
|
|
|
- (void) onParticipantsInfoRetrieved:(NSDictionary *)data {
|
|
|
|
NSArray *participantsInfoArray = [data objectForKey:@"participantsInfo"];
|
|
|
|
NSString *completionHandlerId = [data objectForKey:@"requestId"];
|
|
|
|
|
|
|
|
void (^completionHandler)(NSArray*) = [participantInfoCompletionHandlers objectForKey:completionHandlerId];
|
|
|
|
completionHandler(participantsInfoArray);
|
|
|
|
[participantInfoCompletionHandlers removeObjectForKey:completionHandlerId];
|
|
|
|
}
|
|
|
|
|
2017-09-06 18:00:34 +00:00
|
|
|
/**
|
|
|
|
* Converts a specific event name i.e. redux action type description to a
|
|
|
|
* method name.
|
|
|
|
*
|
|
|
|
* @param eventName The event name to convert to a method name.
|
2017-10-01 06:35:19 +00:00
|
|
|
* @return A method name constructed from the specified `eventName`.
|
2017-09-06 18:00:34 +00:00
|
|
|
*/
|
|
|
|
- (NSString *)methodNameFromEventName:(NSString *)eventName {
|
|
|
|
NSMutableString *methodName
|
|
|
|
= [NSMutableString stringWithCapacity:eventName.length];
|
|
|
|
|
|
|
|
for (NSString *c in [eventName componentsSeparatedByString:@"_"]) {
|
|
|
|
if (c.length) {
|
|
|
|
[methodName appendString:
|
|
|
|
methodName.length ? c.capitalizedString : c.lowercaseString];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[methodName appendString:@":"];
|
|
|
|
|
|
|
|
return methodName;
|
|
|
|
}
|
|
|
|
|
2021-01-13 13:48:29 +00:00
|
|
|
- (void)sendHangUp {
|
2021-01-20 12:06:45 +00:00
|
|
|
[self sendEventWithName:hangUpAction body:nil];
|
2021-01-13 13:48:29 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 12:06:45 +00:00
|
|
|
- (void)sendSetAudioMuted:(BOOL)muted {
|
2021-01-13 13:48:29 +00:00
|
|
|
NSDictionary *data = @{ @"muted": [NSNumber numberWithBool:muted]};
|
|
|
|
|
2021-01-20 12:06:45 +00:00
|
|
|
[self sendEventWithName:setAudioMutedAction body:data];
|
|
|
|
}
|
|
|
|
|
2021-02-19 08:40:45 +00:00
|
|
|
- (void)sendEndpointTextMessage:(NSString*)message :(NSString*)to {
|
2021-02-17 14:26:40 +00:00
|
|
|
NSMutableDictionary *data = [[NSMutableDictionary alloc] init];
|
|
|
|
data[@"to"] = to;
|
|
|
|
data[@"message"] = message;
|
2021-01-20 12:06:45 +00:00
|
|
|
|
|
|
|
[self sendEventWithName:sendEndpointTextMessageAction body:data];
|
2021-01-13 13:48:29 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 12:24:17 +00:00
|
|
|
- (void)toggleScreenShare:(BOOL)enabled {
|
|
|
|
NSMutableDictionary *data = [[NSMutableDictionary alloc] init];
|
|
|
|
data[@"enabled"] = [NSNumber numberWithBool:enabled];
|
|
|
|
|
|
|
|
[self sendEventWithName:toggleScreenShareAction body:data];
|
2021-01-21 12:07:00 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 12:26:35 +00:00
|
|
|
- (void)retrieveParticipantsInfo:(void (^)(NSArray*))completionHandler {
|
|
|
|
NSString *completionHandlerId = [[NSUUID UUID] UUIDString];
|
|
|
|
NSDictionary *data = @{ @"requestId": completionHandlerId};
|
|
|
|
|
2021-02-09 16:03:25 +00:00
|
|
|
[participantInfoCompletionHandlers setObject:[completionHandler copy] forKey:completionHandlerId];
|
2021-02-04 12:26:35 +00:00
|
|
|
|
|
|
|
[self sendEventWithName:retrieveParticipantsInfoAction body:data];
|
|
|
|
}
|
2021-02-17 14:26:40 +00:00
|
|
|
|
|
|
|
- (void)openChat:(NSString*)to {
|
|
|
|
NSMutableDictionary *data = [[NSMutableDictionary alloc] init];
|
|
|
|
data[@"to"] = to;
|
|
|
|
|
|
|
|
[self sendEventWithName:openChatAction body:data];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)closeChat {
|
|
|
|
[self sendEventWithName:closeChatAction body:nil];
|
|
|
|
}
|
|
|
|
|
2021-02-19 08:40:45 +00:00
|
|
|
- (void)sendChatMessage:(NSString*)message :(NSString*)to {
|
2021-02-17 14:26:40 +00:00
|
|
|
NSMutableDictionary *data = [[NSMutableDictionary alloc] init];
|
|
|
|
data[@"to"] = to;
|
|
|
|
data[@"message"] = message;
|
|
|
|
|
|
|
|
[self sendEventWithName:sendChatMessageAction body:data];
|
|
|
|
}
|
|
|
|
|
2021-03-23 13:30:17 +00:00
|
|
|
- (void)sendSetVideoMuted:(BOOL)muted {
|
|
|
|
NSDictionary *data = @{ @"muted": [NSNumber numberWithBool:muted]};
|
|
|
|
|
|
|
|
[self sendEventWithName:setVideoMutedAction body:data];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-07 15:50:30 +00:00
|
|
|
@end
|