forked from SelfControlApp/selfcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HostFileBlocker.m
executable file
·111 lines (83 loc) · 3.59 KB
/
HostFileBlocker.m
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
//
// HostFileBlocker.m
// SelfControl
//
// Created by Charlie Stigler on 4/28/09.
// Copyright 2009 Eyebeam.
// This file is part of SelfControl.
//
// SelfControl is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#import "HostFileBlocker.h"
NSString* const kHostFileBlockerPath = @"/etc/hosts";
NSString* const kHostFileBlockerSelfControlHeader = @"# BEGIN SELFCONTROL BLOCK";
NSString* const kHostFileBlockerSelfControlFooter = @"# END SELFCONTROL BLOCK";
@implementation HostFileBlocker
- (HostFileBlocker*)init {
if(self = [super init]) {
newFileContents = [NSMutableString stringWithContentsOfFile: kHostFileBlockerPath usedEncoding: &stringEnc error: NULL];
if(!newFileContents)
return nil;
}
return self;
}
- (BOOL)revertFileContentsToDisk {
newFileContents = [NSMutableString stringWithContentsOfFile: kHostFileBlockerPath usedEncoding: &stringEnc error: NULL];
if(newFileContents) return YES;
else return NO;
}
- (BOOL)writeNewFileContents {
return [newFileContents writeToFile: kHostFileBlockerPath atomically: YES encoding: stringEnc error: NULL];
}
- (BOOL)createBackupHostsFile {
NSFileManager* fileMan = [NSFileManager defaultManager];
if(![fileMan isReadableFileAtPath: @"/etc/hosts"] || [fileMan fileExistsAtPath: @"/etc/hosts.bak"])
return NO;
return [fileMan copyPath: @"/etc/hosts" toPath: @"/etc/hosts.bak" handler: nil];
}
- (BOOL)deleteBackupHostsFile {
NSFileManager* fileMan = [NSFileManager defaultManager];
if(![fileMan isDeletableFileAtPath: @"/etc/hosts.bak"])
return NO;
return [fileMan removeFileAtPath: @"/etc/hosts.bak" handler: nil];
}
- (BOOL)restoreBackupHostsFile {
NSFileManager* fileMan = [NSFileManager defaultManager];
if(![fileMan removeFileAtPath: @"/etc/hosts" handler: nil])
return NO;
if(![fileMan isReadableFileAtPath: @"/etc/hosts.bak"] || ![fileMan movePath: @"/etc/hosts.bak" toPath: @"/etc/hosts" handler: nil])
return NO;
return YES;
}
- (void)addSelfControlBlockHeader {
[newFileContents appendString: @"\n"];
[newFileContents appendString: kHostFileBlockerSelfControlHeader];
[newFileContents appendString: @"\n"];
}
- (void)addSelfControlBlockFooter {
[newFileContents appendString: kHostFileBlockerSelfControlFooter];
[newFileContents appendString: @"\n"];
}
- (void)addRuleBlockingDomain:(NSString*)domainName {
[newFileContents appendString: [NSString stringWithFormat: @"0.0.0.0\t%@\n", domainName]];
}
- (BOOL)containsSelfControlBlock {
return ([newFileContents rangeOfString: kHostFileBlockerSelfControlHeader].location != NSNotFound);
}
- (void)removeSelfControlBlock {
if(![self containsSelfControlBlock])
return;
NSRange startRange = [newFileContents rangeOfString: kHostFileBlockerSelfControlHeader];
NSRange endRange = [newFileContents rangeOfString: kHostFileBlockerSelfControlFooter];
NSRange deleteRange = NSMakeRange(startRange.location - 1, ((endRange.location + endRange.length) - startRange.location) + 2);
[newFileContents deleteCharactersInRange: deleteRange];
}
@end