|
| 1 | +// |
| 2 | +// SWBAppDelegate.m |
| 3 | +// ShadowsocksX |
| 4 | +// |
| 5 | +// Created by clowwindy on 14-2-19. |
| 6 | +// Copyright (c) 2014年 clowwindy. All rights reserved. |
| 7 | +// |
| 8 | + |
| 9 | +#import <SystemConfiguration/SystemConfiguration.h> |
| 10 | +#import "../ShadowWeb/local.h" |
| 11 | +#import "encrypt.h" |
| 12 | +#import "SWBAppDelegate.h" |
| 13 | +#import "GCDWebServer.h" |
| 14 | + |
| 15 | +@implementation SWBAppDelegate |
| 16 | + |
| 17 | +- (void)applicationDidFinishLaunching:(NSNotification *)aNotification |
| 18 | +{ |
| 19 | + // Insert code here to initialize your application |
| 20 | + dispatch_queue_t proxy = dispatch_queue_create("proxy", NULL); |
| 21 | + dispatch_async(proxy, ^{ |
| 22 | + set_config("106.186.124.182", "8910", "Shadowsocks", "aes-128-cfb"); |
| 23 | + memcpy(shadowsocks_key, "\x45\xd1\xd9\x9e\xbd\xf5\x8c\x85\x34\x55\xdd\x65\x46\xcd\x06\xd3", 16); |
| 24 | + local_main(); |
| 25 | + }); |
| 26 | + |
| 27 | + NSData *pacData = [NSData dataWithContentsOfURL:[[NSBundle mainBundle] URLForResource:@"proxy" withExtension:@"pac"]]; |
| 28 | + GCDWebServer *webServer = [[GCDWebServer alloc] init]; |
| 29 | + [webServer addHandlerForMethod:@"GET" path:@"/proxy.pac" requestClass:[GCDWebServerRequest class] processBlock:^GCDWebServerResponse *(GCDWebServerRequest *request) { |
| 30 | + return [GCDWebServerDataResponse responseWithData:pacData contentType:@"application/x-ns-proxy-autoconfig"]; |
| 31 | + |
| 32 | + } |
| 33 | + ]; |
| 34 | + |
| 35 | + [webServer startWithPort:8090 bonjourName:@"webserver"]; |
| 36 | + |
| 37 | + self.item = [[NSStatusBar systemStatusBar] statusItemWithLength:20]; |
| 38 | + self.item.image = [NSImage imageNamed:@"lock"]; |
| 39 | + self.item.toolTip = @"Mouse Gesture"; |
| 40 | + self.item.highlightMode = YES; |
| 41 | + NSMenu *menu = [[NSMenu alloc] initWithTitle:@"Shadowsocks"]; |
| 42 | + [menu addItemWithTitle:@"Exit" action:@selector(exit) keyEquivalent:@""]; |
| 43 | + self.item.menu = menu; |
| 44 | +// [self.item setTarget:self]; |
| 45 | +// [self.item setAction:@selector(openTheDoor)]; |
| 46 | + [SWBAppDelegate initializeProxy]; |
| 47 | + |
| 48 | +} |
| 49 | + |
| 50 | +-(void)applicationWillTerminate:(NSNotification *)notification { |
| 51 | + NSLog(@"terminating"); |
| 52 | + [SWBAppDelegate toggleSystemProxy:NO]; |
| 53 | +} |
| 54 | + |
| 55 | +- (void)exit { |
| 56 | + [[NSApplication sharedApplication] terminate:nil]; |
| 57 | +} |
| 58 | + |
| 59 | +// From GoAgentX |
| 60 | +// https://github.com/ohdarling/GoAgentX/blob/master/GoAgentX/GAService.m |
| 61 | + |
| 62 | +static NSMutableDictionary *sharedContainer = nil; |
| 63 | + |
| 64 | +static AuthorizationRef authRef; |
| 65 | +static AuthorizationFlags authFlags; |
| 66 | + |
| 67 | ++ (void)initializeProxy { |
| 68 | + authFlags = kAuthorizationFlagDefaults |
| 69 | + | kAuthorizationFlagExtendRights |
| 70 | + | kAuthorizationFlagInteractionAllowed |
| 71 | + | kAuthorizationFlagPreAuthorize; |
| 72 | + OSStatus authErr = AuthorizationCreate(nil, kAuthorizationEmptyEnvironment, authFlags, &authRef); |
| 73 | + if (authErr != noErr) { |
| 74 | + authRef = nil; |
| 75 | + } else { |
| 76 | + [SWBAppDelegate toggleSystemProxy:YES]; |
| 77 | + } |
| 78 | +} |
| 79 | + |
| 80 | ++ (NSString *)proxiesPathOfDevice:(NSString *)devId { |
| 81 | + NSString *path = [NSString stringWithFormat:@"/%@/%@/%@", kSCPrefNetworkServices, devId, kSCEntNetProxies]; |
| 82 | + return path; |
| 83 | +} |
| 84 | + |
| 85 | ++ (void)toggleSystemProxy:(BOOL)useProxy { |
| 86 | + if (authRef == NULL) { |
| 87 | + NSLog(@"No authorization has been granted to modify network configuration"); |
| 88 | + return; |
| 89 | + } |
| 90 | + |
| 91 | + SCPreferencesRef prefRef = SCPreferencesCreateWithAuthorization(nil, CFSTR("ShadowsocksX"), nil, authRef); |
| 92 | + |
| 93 | + NSDictionary *sets = (__bridge NSDictionary *)SCPreferencesGetValue(prefRef, kSCPrefNetworkServices); |
| 94 | + |
| 95 | + NSMutableDictionary *proxies = [[NSMutableDictionary alloc] init]; |
| 96 | + [proxies setObject:[NSNumber numberWithInt:0] forKey:(NSString *)kCFNetworkProxiesHTTPEnable]; |
| 97 | + [proxies setObject:[NSNumber numberWithInt:0] forKey:(NSString *)kCFNetworkProxiesHTTPSEnable]; |
| 98 | + [proxies setObject:[NSNumber numberWithInt:0] forKey:(NSString *)kCFNetworkProxiesProxyAutoConfigEnable]; |
| 99 | + [proxies setObject:[NSNumber numberWithInt:0] forKey:(NSString *)kCFNetworkProxiesSOCKSEnable]; |
| 100 | + |
| 101 | + // 遍历系统中的网络设备列表,设置 AirPort 和 Ethernet 的代理 |
| 102 | + for (NSString *key in [sets allKeys]) { |
| 103 | + NSMutableDictionary *dict = [sets objectForKey:key]; |
| 104 | + NSString *hardware = [dict valueForKeyPath:@"Interface.Hardware"]; |
| 105 | + NSLog(@"%@", hardware); |
| 106 | + if ([hardware isEqualToString:@"AirPort"] || [hardware isEqualToString:@"Wi-Fi"] || [hardware isEqualToString:@"Ethernet"]) { |
| 107 | + if (useProxy) { |
| 108 | + [proxies setObject:@"http://localhost:8090/proxy.pac" forKey:(NSString *)kCFNetworkProxiesProxyAutoConfigURLString]; |
| 109 | + } |
| 110 | + [proxies setObject:[NSNumber numberWithInt:useProxy] forKey:(NSString *)kCFNetworkProxiesProxyAutoConfigEnable]; |
| 111 | + SCPreferencesPathSetValue(prefRef, (__bridge CFStringRef)[self proxiesPathOfDevice:key], (__bridge CFDictionaryRef)proxies); |
| 112 | + } |
| 113 | + } |
| 114 | + |
| 115 | + SCPreferencesCommitChanges(prefRef); |
| 116 | + SCPreferencesApplyChanges(prefRef); |
| 117 | + SCPreferencesSynchronize(prefRef); |
| 118 | +} |
| 119 | + |
| 120 | + |
| 121 | + |
| 122 | +@end |
0 commit comments