Skip to content

Commit 8dd7a80

Browse files
committed
add mac version
1 parent d37265c commit 8dd7a80

File tree

16 files changed

+3944
-4
lines changed

16 files changed

+3944
-4
lines changed

ShadowWeb/shadowsocks-Prefix.pch

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#endif
1010

1111
#ifdef __OBJC__
12-
#import <UIKit/UIKit.h>
12+
// #import <UIKit/UIKit.h>
1313
#import <Foundation/Foundation.h>
1414
#endif
1515

ShadowsocksX/Application.xib

+3,329
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "mac",
5+
"size" : "16x16",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "mac",
10+
"size" : "16x16",
11+
"scale" : "2x"
12+
},
13+
{
14+
"idiom" : "mac",
15+
"size" : "32x32",
16+
"scale" : "1x"
17+
},
18+
{
19+
"idiom" : "mac",
20+
"size" : "32x32",
21+
"scale" : "2x"
22+
},
23+
{
24+
"idiom" : "mac",
25+
"size" : "128x128",
26+
"scale" : "1x"
27+
},
28+
{
29+
"idiom" : "mac",
30+
"size" : "128x128",
31+
"scale" : "2x"
32+
},
33+
{
34+
"idiom" : "mac",
35+
"size" : "256x256",
36+
"scale" : "1x"
37+
},
38+
{
39+
"idiom" : "mac",
40+
"size" : "256x256",
41+
"scale" : "2x"
42+
},
43+
{
44+
"idiom" : "mac",
45+
"size" : "512x512",
46+
"scale" : "1x"
47+
},
48+
{
49+
"idiom" : "mac",
50+
"size" : "512x512",
51+
"scale" : "2x"
52+
}
53+
],
54+
"info" : {
55+
"version" : 1,
56+
"author" : "xcode"
57+
}
58+
}

ShadowsocksX/SWBAppDelegate.h

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//
2+
// SWBAppDelegate.h
3+
// ShadowsocksX
4+
//
5+
// Created by clowwindy on 14-2-19.
6+
// Copyright (c) 2014年 clowwindy. All rights reserved.
7+
//
8+
9+
#import <Cocoa/Cocoa.h>
10+
11+
@interface SWBAppDelegate : NSObject <NSApplicationDelegate>
12+
13+
@property (assign) IBOutlet NSWindow *window;
14+
@property (nonatomic, strong) NSStatusItem* item;
15+
16+
@end

ShadowsocksX/SWBAppDelegate.m

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
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

ShadowsocksX/ShadowsocksX-Info.plist

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>${EXECUTABLE_NAME}</string>
9+
<key>CFBundleIconFile</key>
10+
<string></string>
11+
<key>CFBundleIdentifier</key>
12+
<string>clowwindy.${PRODUCT_NAME:rfc1034identifier}</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>Shadowsocks</string>
17+
<key>CFBundlePackageType</key>
18+
<string>APPL</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>1.0</string>
21+
<key>CFBundleSignature</key>
22+
<string>????</string>
23+
<key>CFBundleVersion</key>
24+
<string>1</string>
25+
<key>LSApplicationCategoryType</key>
26+
<string>public.app-category.utilities</string>
27+
<key>LSMinimumSystemVersion</key>
28+
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
29+
<key>LSUIElement</key>
30+
<true/>
31+
<key>NSHumanReadableCopyright</key>
32+
<string>Copyright © 2014年 clowwindy. All rights reserved.</string>
33+
<key>NSMainNibFile</key>
34+
<string>Application</string>
35+
<key>NSPrincipalClass</key>
36+
<string>NSApplication</string>
37+
</dict>
38+
</plist>

ShadowsocksX/ShadowsocksX-Prefix.pch

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
//
2+
// Prefix header
3+
//
4+
// The contents of this file are implicitly included at the beginning of every source file.
5+
//
6+
7+
#ifdef __OBJC__
8+
#import <Cocoa/Cocoa.h>
9+
#endif

ShadowsocksX/en.lproj/Credits.rtf

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
2+
{\colortbl;\red255\green255\blue255;}
3+
\paperw9840\paperh8400
4+
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural
5+
6+
\f0\b\fs24 \cf0 Engineering:
7+
\b0 \
8+
Some people\
9+
\
10+
11+
\b Human Interface Design:
12+
\b0 \
13+
Some other people\
14+
\
15+
16+
\b Testing:
17+
\b0 \
18+
Hopefully not nobody\
19+
\
20+
21+
\b Documentation:
22+
\b0 \
23+
Whoever\
24+
\
25+
26+
\b With special thanks to:
27+
\b0 \
28+
Mom\
29+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/* Localized versions of Info.plist keys */
2+

ShadowsocksX/lock.png

1.37 KB
Loading

ShadowsocksX/main.m

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//
2+
// main.m
3+
// ShadowsocksX
4+
//
5+
// Created by clowwindy on 14-2-19.
6+
// Copyright (c) 2014年 clowwindy. All rights reserved.
7+
//
8+
9+
#import <Cocoa/Cocoa.h>
10+
11+
int main(int argc, const char * argv[])
12+
{
13+
return NSApplicationMain(argc, argv);
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>${EXECUTABLE_NAME}</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>clowwindy.${PRODUCT_NAME:rfc1034identifier}</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundlePackageType</key>
14+
<string>BNDL</string>
15+
<key>CFBundleShortVersionString</key>
16+
<string>1.0</string>
17+
<key>CFBundleSignature</key>
18+
<string>????</string>
19+
<key>CFBundleVersion</key>
20+
<string>1</string>
21+
</dict>
22+
</plist>

ShadowsocksXTests/ShadowsocksXTests.m

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
//
2+
// ShadowsocksXTests.m
3+
// ShadowsocksXTests
4+
//
5+
// Created by clowwindy on 14-2-19.
6+
// Copyright (c) 2014年 clowwindy. All rights reserved.
7+
//
8+
9+
#import <XCTest/XCTest.h>
10+
11+
@interface ShadowsocksXTests : XCTestCase
12+
13+
@end
14+
15+
@implementation ShadowsocksXTests
16+
17+
- (void)setUp
18+
{
19+
[super setUp];
20+
// Put setup code here. This method is called before the invocation of each test method in the class.
21+
}
22+
23+
- (void)tearDown
24+
{
25+
// Put teardown code here. This method is called after the invocation of each test method in the class.
26+
[super tearDown];
27+
}
28+
29+
- (void)testExample
30+
{
31+
XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
32+
}
33+
34+
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/* Localized versions of Info.plist keys */
2+

0 commit comments

Comments
 (0)