forked from illusionspaces/WKJavaScriptBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWKJavaScriptBridge.m
More file actions
230 lines (194 loc) · 7.37 KB
/
WKJavaScriptBridge.m
File metadata and controls
230 lines (194 loc) · 7.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
//
// WKJavaScriptBridge.m
// WKJavaScriptBridge-demo
//
// Created by Kevin on 2019/10/22.
// Copyright © 2019 王凯. All rights reserved.
//
#import "WKJavaScriptBridge.h"
#import "WKCommandImpl.h"
#import "WKWeakScriptMessageHandlerDelegate.h"
#import "WKJavaScriptMessageDispatcher.h"
#import "WKJavaScriptBridgePluginAnnotation.h"
#import "WKBasePlugin.h"
#import "WKCommandProtocol.h"
#import "WKPluginSecurityProtocol.h"
static NSString * const WKJSBridge = @"WKJSBridgeMessageName";
@interface WKJavaScriptBridge ()<WKScriptMessageHandler>
@property (nonatomic, strong) WKJavaScriptBridgePluginAnnotation *annotation;//模块注册白名单
@property (nonatomic, strong) WKJavaScriptMessageDispatcher *dispatcher;//插件模块派发
@property (nonatomic, strong) WKCommandImpl *commandDelegate;//插件模块可执行函数实现
@property (nonatomic, strong) NSMutableDictionary *pluginsByName;//插件模块实例对象
@property (nonatomic, weak, readwrite) WKWebView *webView;
//安全相关
@property (nonatomic, strong) id <WKPluginSecurityProtocol>securityPlugin;//白名单插件
@property (nonatomic, strong) NSArray *secInfo;//业务注册的安全信息
@end
@implementation WKJavaScriptBridge
- (void)dealloc {
#ifdef DEBUG
NSLog(@"WKJavaScriptBridge dealloc");
#endif
WKWebView *webView = (WKWebView *)self.webView;
[webView.configuration.userContentController removeScriptMessageHandlerForName:WKJSBridge];
[[self.pluginsByName allValues] makeObjectsPerformSelector:@selector(dispose)];
[self.pluginsByName removeAllObjects];
}
#pragma mark - Public
+ (instancetype)bindBridgeWithWebView:(WKWebView *)webView {
if ([webView isKindOfClass:[WKWebView class]]) {
WKJavaScriptBridge *bridge = [[self alloc] initBridgeWithWebView:webView];
return bridge;
}
[NSException raise:@"BadWebView" format:@"Unknown web view."];
return nil;
}
#pragma mark - Init
- (instancetype)initBridgeWithWebView:(WKWebView *)webView {
if (self = [super init]) {
self.webView = webView;
[self commonInit];
[self setup];
}
return self;
}
- (void)commonInit {
self.secInfo = [NSArray array];
self.dispatcher = [[WKJavaScriptMessageDispatcher alloc] initWithBridge:self];
self.annotation = [[WKJavaScriptBridgePluginAnnotation alloc] initWithBridge:self];
self.commandDelegate = [[WKCommandImpl alloc] initWithBridge:self];
}
#pragma mark - Privite
- (void)setup {
[self setupJSBridge];
[self setupPlugin];
}
- (void)setupJSBridge {
WKWebViewConfiguration *webViewConfiguration = self.webView.configuration;
if (webViewConfiguration && !webViewConfiguration.userContentController) {
self.webView.configuration.userContentController = [WKUserContentController new];
}
// 防止内存泄露
[self.webView.configuration.userContentController addScriptMessageHandler:[[WKWeakScriptMessageHandlerDelegate alloc] initWithDelegate:self] name:WKJSBridge];
}
- (void)setupPlugin {
[self.annotation getAllRegisterPluginName];
}
- (void)registerPlugin:(WKBasePlugin *)plugin {
if ([plugin respondsToSelector:@selector(setCommandDelegate:)]) {
[plugin setCommandDelegate:_commandDelegate];
}
}
- (Class)pluginImplClass:(NSString *)pluginName {
if (pluginName.length > 0) {
return NSClassFromString(pluginName);
}
return nil;
}
- (BOOL)pluginShouldCache:(Class)implClass {
BOOL shouldCache = NO;
if ([[implClass class] respondsToSelector:@selector(shouldCache)]) {
if ([[implClass class] shouldCache]) {
shouldCache = YES;
}
}
return shouldCache;
}
- (void)pluginInstall:(WKBasePlugin *)plugin {
[plugin pluginInitialize];
[self registerPlugin:plugin];
}
#pragma mark - WKJavaScriptBridgeProtocol
- (void)registerSecurityPlugin:(NSString *)name {
id<WKPluginSecurityProtocol>securityPlugin = [self getCommandInstance:name];
if ([securityPlugin isKindOfClass:[WKBasePlugin class]] &&
[securityPlugin conformsToProtocol:@protocol(WKPluginSecurityProtocol)]) {
self.securityPlugin = securityPlugin;
}
}
- (void)registerPluginSecurityInfomation:(NSArray<NSString *>*)secInfo {
self.secInfo = secInfo;
}
- (void)pluginSecurityVerityWithCommand:(WKMsgCommand *)command completionHandler:(void (^)(BOOL passed))completionHandler {
if (self.securityPlugin && [self.securityPlugin respondsToSelector:@selector(applyAuthorityWithService:action:securityInfomation:complete:)]) {
[self.securityPlugin applyAuthorityWithService:command.className action:command.methodName securityInfomation:self.secInfo complete:^(BOOL allowed) {
completionHandler(allowed);
}];
}else {
completionHandler(YES);
}
}
- (id)getCommandInstance:(NSString*)pluginName {
WKBasePlugin <WKPluginProtocol> *plugin = nil;
Class implClass = [self pluginImplClass:pluginName];
BOOL shouldCache = [self pluginShouldCache:implClass];
if (shouldCache) {
plugin = [self.pluginsByName objectForKey:pluginName];
if (plugin) {
return plugin;
}
}
if ([[implClass class] respondsToSelector:@selector(singleton)]) {
if ([[implClass class] singleton]) {
if ([[implClass class] respondsToSelector:@selector(shareInstance)])
plugin = [[implClass class] shareInstance];
else
plugin = [[implClass alloc] init];
if (plugin) {
[self pluginInstall:plugin];
if (shouldCache) {
[self.pluginsByName setObject:plugin forKey:pluginName];
}
}else {
#ifdef DEBUG
NSLog(@"PHJavaScriptBridge Error : 模块: (%@) 不存在。", pluginName);
#endif
}
return plugin;
}
}
plugin = [[implClass alloc] init];
if (plugin) {
[self pluginInstall:plugin];
if (shouldCache) {
[self.pluginsByName setObject:plugin forKey:pluginName];
}
}else {
#ifdef DEBUG
NSLog(@"PHJavaScriptBridge Error : 模块: (%@) 不存在。", pluginName);
#endif
}
return plugin;
}
- (void)evaluateJavaScript:(NSString *)javaScriptString completionHandler:(void (^)(id , NSError *))completionHandler {
WKWebView *webView = (WKWebView *)self.webView;
[webView evaluateJavaScript:javaScriptString completionHandler:^(id obj, NSError * _Nullable error) {
if (completionHandler) {
completionHandler(obj, error);
}
}];
}
#pragma mark - WKScriptMessageHandler
- (void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message {
if ([message.name isEqualToString:WKJSBridge]) {
if ([message.body isKindOfClass:[NSString class]]) {
[self.dispatcher handleMsgCommand:message.body];
}else {
#ifdef DEBUG
NSLog(@"WKJavaScriptBridge Error : 通信参数不合法,请将JS侧参数转为字符串通信。");
#endif
}
}else {
#ifdef DEBUG
NSLog(@"WKJavaScriptBridge Error : 本次调用所使用的JS函数非(WKJavaScriptBridge)注入。请使用(%@)",WKJSBridge);
#endif
}
}
#pragma mark - Set or Get
- (NSMutableDictionary *)pluginsByName {
if (!_pluginsByName) {
_pluginsByName = [[NSMutableDictionary alloc] initWithCapacity:1];
}
return _pluginsByName;
}
@end