This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-iOS/Pod/Classes/Plugin/DoricNotificationPlugin.m

98 lines
3.5 KiB
Mathematica
Raw Normal View History

2020-01-09 09:54:08 +08:00
/*
* Copyright [2019] [Doric.Pub]
*
* 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.
*/
//
// Created by pengfei.zhou on 2020/1/8.
//
#import <DoricCore/Doric.h>
2020-01-09 09:54:08 +08:00
#import "DoricNotificationPlugin.h"
2020-01-09 11:50:49 +08:00
@interface DoricNotificationPlugin ()
2021-06-29 18:22:48 +08:00
@property(nonatomic, strong) NSDictionary<NSString *, id> *observers;
2020-01-09 11:50:49 +08:00
@end
2020-01-09 09:54:08 +08:00
@implementation DoricNotificationPlugin
- (NSDictionary *)observers {
2020-01-09 11:50:49 +08:00
if (!_observers) {
_observers = [NSDictionary new];
2020-01-09 11:50:49 +08:00
}
return _observers;
}
2020-01-09 09:54:08 +08:00
- (void)publish:(NSDictionary *)dic withPromise:(DoricPromise *)promise {
NSString *biz = [dic optString:@"biz"];
NSString *name = [dic optString:@"name"];
2020-01-09 11:50:49 +08:00
if (biz) {
name = [NSString stringWithFormat:@"__doric__%@#%@", biz, name];
}
NSString *data = [dic optString:@"data"];
2020-01-09 09:54:08 +08:00
NSDictionary *dataDic = nil;
if (data) {
NSData *jsonData = [data dataUsingEncoding:NSUTF8StringEncoding];
NSError *err;
dataDic = [NSJSONSerialization JSONObjectWithData:jsonData
options:NSJSONReadingMutableContainers
error:&err];
}
2020-01-09 11:50:49 +08:00
[[NSNotificationCenter defaultCenter] postNotificationName:name object:nil userInfo:dataDic];
[promise resolve:nil];
2020-01-09 09:54:08 +08:00
}
- (void)subscribe:(NSDictionary *)dic withPromise:(DoricPromise *)promise {
NSString *biz = [dic optString:@"biz"];
NSString *name = [dic optString:@"name"];
2020-01-09 11:50:49 +08:00
if (biz) {
name = [NSString stringWithFormat:@"__doric__%@#%@", biz, name];
}
NSString *callbackId = [dic optString:@"callback"];
2020-01-09 11:50:49 +08:00
__weak typeof(self) _self = self;
id observer = [[NSNotificationCenter defaultCenter]
addObserverForName:name
object:nil
queue:[NSOperationQueue mainQueue]
usingBlock:^(NSNotification *note) {
__strong typeof(_self) self = _self;
DoricPromise *currentPromise = [[DoricPromise alloc] initWithContext:self.doricContext callbackId:callbackId];
[currentPromise resolve:note.userInfo];
}];
NSMutableDictionary *mutableDictionary = [self.observers mutableCopy];
mutableDictionary[callbackId] = observer;
self.observers = mutableDictionary;
2020-01-09 11:50:49 +08:00
[promise resolve:callbackId];
}
2020-01-09 09:54:08 +08:00
2020-01-09 11:50:49 +08:00
- (void)unsubscribe:(NSString *)subscribeId withPromise:(DoricPromise *)promise {
id observer = self.observers[subscribeId];
if (observer) {
[[NSNotificationCenter defaultCenter] removeObserver:observer];
NSMutableDictionary *mutableDictionary = [self.observers mutableCopy];
[mutableDictionary removeObjectForKey:subscribeId];
self.observers = mutableDictionary;
2020-01-09 11:50:49 +08:00
}
[promise resolve:nil];
2020-01-09 09:54:08 +08:00
}
2020-01-09 11:50:49 +08:00
- (void)dealloc {
NSDictionary *dictionary = self.observers;
[dictionary enumerateKeysAndObjectsUsingBlock:^(NSString *key, id obj, BOOL *stop) {
2020-01-09 11:50:49 +08:00
[[NSNotificationCenter defaultCenter] removeObserver:obj];
}];
}
2020-01-09 09:54:08 +08:00
2020-01-09 11:50:49 +08:00
@end