summaryrefslogtreecommitdiff
path: root/usr.sbin/afs/src/appl/mac/Arla_Configuration/Controller.m
blob: b0779de05ffd60d7cc0377386c6611c16e4a9440 (plain)
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#import "Controller.h"

@implementation Controller

- (IBAction)addCell:(id)sender
{
    const char *s;

    if ([[newCellName stringValue] length] == 0)
        return;
    s = [[newCellName stringValue] cString];
    if (strchr(s, ' ')) {
        NSBeginAlertSheet(@"Error", @"OK", nil, nil, [tableView window], nil, nil, nil, NULL,
            @"Cell cannot contain spaces");
        return;
    }
    [ dataSource addRowWithAuth: [[NSNumber alloc] initWithInt: NSOnState]
                 show: [[NSNumber alloc] initWithInt: NSOnState]
                 cell: [newCellName stringValue]];
    [ tableView reloadData ];
    [ tableView scrollRowToVisible: ([tableView numberOfRows] - 1)];
}

- (BOOL) isChanged {
    if (authColChanged || showColChanged || confChanged)
        return TRUE;
    else
        return FALSE;
}

- (void) updateSaveButton {
    if ([self isChanged] &&
        !gIsLocked) {
        [saveButton setEnabled: TRUE];
    } else {
        [saveButton setEnabled: FALSE];    
    }
}

- (void) showChanged {
    showColChanged = TRUE;
    [self updateSaveButton];
}

- (void) authChanged {
    authColChanged = TRUE;
    [self updateSaveButton];
}

- (void) confChanged {
    confChanged = TRUE;
    [self updateSaveButton];
}

- (void) setEnabled: (BOOL) status {
    int i;
    NSArray *cols;
    
    cols = [tableView tableColumns];
    for (i = 0; i < [cols count]; i++) {
        [[[cols objectAtIndex: i] dataCell] setEnabled: status];
    }
    [tableView setNeedsDisplay];
    [addButton setEnabled: status];
    [newCellName setEnabled: status];
    [maxBytes setEnabled: status];
    [minBytes setEnabled: status];
    [maxFiles setEnabled: status];
    [minFiles setEnabled: status];
    [defaultButton setEnabled: status];
    [startAtBoot setEnabled: status];
}

- (void) drawAuthState {
    NSImage *lockImage;
    NSBundle *mainBundle;
    NSString *lockImageName;

    mainBundle = [NSBundle mainBundle];
    if (gIsLocked)
	lockImageName = [mainBundle pathForResource: @"lock" ofType: @"tiff"];
    else
	lockImageName = [mainBundle pathForResource: @"unlock" ofType: @"tiff"];

    lockImage = [[NSImage alloc] initWithContentsOfFile: lockImageName];

    if (gIsLocked) {
        [authText setStringValue: @"Click the lock to make changes."];
        [self setEnabled: FALSE];
    } else {
        [authText setStringValue: @"Click the lock to prevent further changes."];
        [self setEnabled: TRUE];
    }
    [self updateSaveButton];
    [authButton setImage: lockImage];
}

- (void) drawDaemonState {
    if (gIsLocked) {
        [statusText setStringValue: @"Status unknown"];
        [startText setStringValue: @"You are unauthenticated"];
        [startButton setTitle: @"Start"];
        [startButton setEnabled: FALSE];
	return;
    }
    if (daemonState == 1) {
        [statusText setStringValue: @"AFS Client On"];
        [startText setStringValue: @"Click Stop to turn off the Arla AFS Client"];
        [startButton setTitle: @"Stop"];
        [startButton setEnabled: TRUE];
    } else {
        [statusText setStringValue: @"AFS Client Off"];
        [startText setStringValue: @"Click Start to turn on the Arla AFS Client"];
        [startButton setTitle: @"Start"];
        [startButton setEnabled: TRUE];
    }
}

- (void) setAuthState: (AuthorizationFlags) flags {
    AuthorizationItem rights[] =
    {	
        { kAuthorizationRightExecute, 0, NULL, 0 }
    };
    AuthorizationRights rightSet = { 1, rights };
    OSStatus 		status;

    status = AuthorizationCopyRights(gAuthorization, &rightSet, kAuthorizationEmptyEnvironment, flags, NULL);
    if (status == errAuthorizationSuccess)
        gIsLocked = false;
    else
        gIsLocked = true;

    [self drawAuthState];
}

- (void) destroyAuthState {
    OSStatus 		status;

    status = AuthorizationFree(gAuthorization, kAuthorizationFlagDestroyRights);
    status = AuthorizationCreate(NULL, kAuthorizationEmptyEnvironment, kAuthorizationFlagDefaults, &gAuthorization);
    gIsLocked = true;
    [self drawAuthState];
}

- (void) setBytesMeter: (int) current max: (int) max {
    [currentBytesMeter setMaxValue: max];
    [currentBytesMeter setDoubleValue: current];
    [currentBytesText setStringValue: [NSString stringWithFormat: @"%d megabytes", current]];
    [maxBytesText setIntValue: max];
}

- (void) setFilesMeter: (int) current max: (int) max {
    [currentFilesMeter setMaxValue: max];
    [currentFilesMeter setDoubleValue: current];
    [currentFilesText setStringValue: [NSString stringWithFormat: @"%d files", current]];
    [maxFilesText setIntValue: max];
}

- (void) initCacheValues {
    int maxbytes, curbytes, maxfiles, curfiles, minbytes, minfiles;

    [dataSource getCache: gAuthorization
		maxBytes: &maxbytes minBytes: &minbytes
		maxFiles: &maxfiles minFiles: &minfiles
		curBytes: &curbytes curFiles: &curfiles];

    [self setBytesMeter: curbytes / (1024*1024) max: maxbytes / (1024*1024)];
    [self setFilesMeter: curfiles max: maxfiles];

    if (!confChanged) {
	[maxBytes setIntValue: maxbytes / (1024*1024)];
	[minBytes setIntValue: minbytes / (1024*1024)];
	[maxFiles setIntValue: maxfiles];
	[minFiles setIntValue: minfiles];
    }
}

- (void) awakeFromNib {
    AuthorizationFlags 	flags;
    OSStatus 		status;

    flags = kAuthorizationFlagDefaults;

    status = AuthorizationCreate(NULL, kAuthorizationEmptyEnvironment, flags, &gAuthorization);

    if (status == errAuthorizationSuccess) {     
        [self setAuthState: flags];
    } else {
        gIsLocked = true;
        [self drawAuthState];
    }
    authColChanged = FALSE;
    showColChanged = FALSE;
    confChanged = FALSE;
    if (gIsLocked) {
	daemonState = -1;
	[self drawDaemonState];
	[startAtBoot setIntValue: 0];
    } else {
	daemonState = [DataSource getDaemonStatus: gAuthorization];
	[self drawDaemonState];
	[startAtBoot setIntValue: [dataSource getStartAtBoot: gAuthorization]];
	[self initCacheValues];
    }
}

- (IBAction)startButton: (id) sender {
    BOOL newDaemonState;

    [self setAuthState: kAuthorizationFlagDefaults];

    if (gIsLocked)
        return;

    if (daemonState == 1)
        [DataSource stopDaemon: gAuthorization];
    else {
        [DataSource startDaemon: gAuthorization];
        [self initCacheValues];
    }

    newDaemonState = [DataSource getDaemonStatus: gAuthorization];
    if ((newDaemonState == daemonState) || (newDaemonState == -1)) {
        if (daemonState)
            NSBeginAlertSheet(@"Error", @"OK", nil, nil, mainWindow, nil, nil, nil, NULL,
                @"Cannot stop Arla");
        else
            NSBeginAlertSheet(@"Error", @"OK", nil, nil, mainWindow, nil, nil, nil, NULL,
                @"Cannot start Arla");
    }
    daemonState = newDaemonState;
    [self drawDaemonState];
}

- (IBAction)auth:(id)sender {
    AuthorizationFlags 	flags;

    flags = kAuthorizationFlagInteractionAllowed | kAuthorizationFlagExtendRights;

    [self setAuthState: kAuthorizationFlagDefaults];

    if (gIsLocked) {
        [self setAuthState: flags];
	if (gIsLocked)
	    return;
	daemonState = [DataSource getDaemonStatus: gAuthorization];
	[self drawDaemonState];
	[self initCacheValues];
	[startAtBoot setIntValue: [dataSource getStartAtBoot: gAuthorization]];
    } else {
        [self destroyAuthState];
	daemonState = -1;
	[self drawDaemonState];
	[self initCacheValues];
	[startAtBoot setIntValue: 0];
    }
}


- (IBAction)save:(id)sender {
    OSStatus status;

    [self setAuthState: kAuthorizationFlagDefaults];

    if (gIsLocked)
        return;
    
    if (authColChanged) {
        status = [dataSource saveAuthData: gAuthorization];
        if (status != noErr) {
            return;
        }
        authColChanged = FALSE;
    }
    
    if (showColChanged) {
        status = [dataSource saveShowData: gAuthorization];
        if (status != noErr) {
            return;
        }
        showColChanged = FALSE;
    }

    if (confChanged) {
	if ([maxBytes intValue] == 0) {
	    NSBeginAlertSheet(@"Error", @"OK", nil, nil, mainWindow,
			      nil, nil, nil, NULL,
			      @"Maximum bytes must be non-zero");
	    return;
	}
	if ([minBytes intValue] == 0) {
	    NSBeginAlertSheet(@"Error", @"OK", nil, nil, mainWindow,
			      nil, nil, nil, NULL,
			      @"Minimum bytes must be non-zero");
	    return;
	}
	if ([maxFiles intValue] == 0) {
	    NSBeginAlertSheet(@"Error", @"OK", nil, nil, mainWindow,
			      nil, nil, nil, NULL,
			      @"Maximum files must be non-zero");
	    return;
	}
	if ([minFiles intValue] == 0) {
	    NSBeginAlertSheet(@"Error", @"OK", nil, nil, mainWindow,
			      nil, nil, nil, NULL,
			      @"Minimum files must be non-zero");
	    return;
	}
        status = [dataSource saveConfData: gAuthorization
			     maxBytes: [maxBytes intValue] * 1024 * 1024
			     minBytes: [minBytes intValue] * 1024 * 1024
			     maxFiles: [maxFiles intValue]
			     minFiles: [minFiles intValue]
			     startAtBoot: [startAtBoot intValue]
	];
        if (status != noErr) {
            return;
        }
        confChanged = FALSE;
        [self initCacheValues];
    }
    [self updateSaveButton];
}

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication {
    return YES;
}

- (void)windowWillClose:(NSNotification *)aNotification {
    mainWindow = nil;
}

- (void)willEndCloseSheet:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo {
    NSWindow *window = contextInfo;

    if (returnCode == NSAlertAlternateReturn) {         /* "Don't Save" */
        [window close];
        [NSApp replyToApplicationShouldTerminate:YES];
    }
}

- (void)didEndCloseSheet:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo {
    NSWindow *window = contextInfo;

    if (returnCode == NSAlertDefaultReturn) {           /* "Save" */
        [self save: self];
        [window close];
        [NSApp replyToApplicationShouldTerminate:YES];
    } else if (returnCode == NSAlertOtherReturn) {      /* "Cancel" */
        [NSApp replyToApplicationShouldTerminate:NO];
    }
}

- (BOOL) windowShouldClose: (id) sender {
    [self setAuthState: kAuthorizationFlagDefaults];

    if ([self isChanged] && !gIsLocked) {
        NSBeginAlertSheet(@"Close", @"Save", @"Don't save", @"Cancel", sender, self,
            @selector(willEndCloseSheet:returnCode:contextInfo:),
            @selector(didEndCloseSheet:returnCode:contextInfo:),
            sender,
            @"Do you want to save changes before closing?");
        return NO;
    } else {
        [NSApp replyToApplicationShouldTerminate:YES];
        return YES;
    }
}

- (NSApplicationTerminateReply) applicationShouldTerminate: (NSApplication *) app {
    if (mainWindow != nil) {
        [mainWindow performClose: self];
        return NSTerminateLater;
    } else
        return NSTerminateNow;
}

- (IBAction)defaultButton:(id) sender {
    [maxBytes abortEditing];
    [maxBytes setIntValue: 100];
    [minBytes abortEditing];
    [minBytes setIntValue: 90];
    [maxFiles abortEditing];
    [maxFiles setIntValue: 4000];
    [minFiles abortEditing];
    [minFiles setIntValue: 3000];
    [self confChanged];
}

- (IBAction)confChanged:(id) sender {
    [self confChanged];
}

@end