forked from quicksilver/1Password-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OnePasswordAction.m
247 lines (204 loc) · 8.23 KB
/
OnePasswordAction.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
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
//
// OnePasswordAction.m
// OnePassword
//
// Created by Patrick Robertson on 15/01/2010.
// Copyright Patrick Roberston 2010. All rights reserved.
//
// This file is part of Quicksilver 1Password Module.
//
// Quicksilver 1Password Module 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.
//
// Quicksilver 1Password Module 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 Quicksilver 1Password Module. If not, see <http://www.gnu.org/licenses/>.
//
#import "OnePasswordAction.h"
#import <QSCore/QSObject_FileHandling.h>
#import "OnePasswordSource.h"
#import "OnePasswordDefines.h"
@implementation OnePasswordAction
- (NSArray *) validActionsForDirectObject:(QSObject *)dObject indirectObject:(QSObject *)iObject
{
// Only allow the 'View in 1Password action to appear if there's only one item (no comma trick)
if ([dObject count] == 1)
{
return [NSArray arrayWithObject:@"viewInOnePwd"];
}
// Else don't show it
return nil;
}
// Method to only show browsers in the 3rd pane for the 'Go & Fill With...' action
- (NSArray *)validIndirectObjectsForAction:(NSString *)action directObject:(QSObject *)dObject{
// only for 'Go & Fill With...' action
if (![action isEqualToString:@"goAndFillWith"]) {
return nil;
}
NSArray *validBrowsers = [NSArray arrayWithObjects:@"org.mozilla.firefox",
@"com.apple.Safari",@"com.google.Chrome",@"org.mozilla.camino",
@"com.omnigroup.omniweb",@"com.ranchero.NetNewsWire",
@"com.fluidapp.Fluid",@"com.devon-technologies.agent",@"de.icab.iCab",@"org.webkit.nightly.WebKit",nil];
NSMutableArray *validIndirects = [NSMutableArray arrayWithCapacity:1];
NSMutableSet *set = [NSMutableSet set];
NSMutableArray *validBrowserPaths = [NSMutableArray arrayWithCapacity:1];
NSWorkspace *ws = [NSWorkspace sharedWorkspace];
for(NSString *browserID in validBrowsers) {
NSString *browserPath = [ws absolutePathForAppBundleWithIdentifier:browserID];
if (browserPath) {
[validBrowserPaths addObject:browserPath];
}
}
// Get the default app for the url
NSURL *appURL = nil;
LSGetApplicationForURL((CFURLRef)[NSURL URLWithString:@"http://"], kLSRolesAll, NULL, (CFURLRef *)&appURL);
// Set the default app to be 1st in the returned list
id preferred = [QSObject fileObjectWithPath:[appURL path]];
if (!preferred) {
preferred = [NSNull null];
}
[appURL release];
[set addObjectsFromArray:validBrowserPaths];
validIndirects = [[QSLibrarian sharedInstance] scoredArrayForString:nil inSet:[QSObject fileObjectsWithPathArray:[set allObjects]]];
return [NSArray arrayWithObjects:preferred, validIndirects, nil];
}
- (QSObject *)goAndFill:(QSObject *)dObject{
[self goAndFill:dObject with:nil];
return nil;
}
- (QSObject *)goAndFill:(QSObject *)dObject with:(QSObject *)iObject {
// for each object - do exactly the same thing as for single objects
// ß61 method
//for (QSObject *goAndFillObject in [dObject splitObjects]) {
// [self writePlistAndFill:goAndFillObject withBrowsers:iObject];
// }
if ([dObject count] > 1) {
for (QSObject *goAndFillObject in [dObject objectForCache:kQSObjectComponents]) {
[self formURLAndFillWith:goAndFillObject andBrowsers:iObject];
}
}
else {
[self formURLAndFillWith:dObject andBrowsers:iObject];
}
return nil;
}
- (QSObject *)viewInOnePwd:(QSObject *)dObject {
// setup the terminal command
NSString *command;
if ([[[OnePasswordSource sharedInstance] bundleID] isEqualToString:kOnePasswordMASBundleID]) {
command = [NSString stringWithFormat:@"defaults write %@ selectedObjects -array %@", kOnePasswordMASBundleID, [dObject identifier]];
}
else {
command = [NSString stringWithFormat:@"defaults write %@ findUUID %@", kOnePasswordOldBundleID, [dObject identifier]];
}
NSLog(@"command: %@",command);
// load the script from a resource by fetching its URL from within our bundle
NSString *path=[[NSBundle bundleForClass:[self class]] pathForResource:@"RevealIn1Pwd" ofType:@"scpt"];
if (path != nil)
{
NSDictionary* scptErrors = [NSDictionary dictionary];
NSAppleScript* appleScript =
[[NSAppleScript alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:&scptErrors];
if (appleScript != nil)
{
// create the parameters
NSAppleEventDescriptor* firstParameter = [NSAppleEventDescriptor descriptorWithString:[dObject name]];
NSAppleEventDescriptor* secondParameter = [NSAppleEventDescriptor descriptorWithString:command];
NSAppleEventDescriptor* thirdParameter = [NSAppleEventDescriptor descriptorWithString:[dObject primaryType]];
// create and populate the list of parameters
NSAppleEventDescriptor* parameters = [NSAppleEventDescriptor listDescriptor];
[parameters insertDescriptor:firstParameter atIndex:1];
[parameters insertDescriptor:secondParameter atIndex:2];
[parameters insertDescriptor:thirdParameter atIndex:3];
// create the AppleEvent target
ProcessSerialNumber psn = {0, kCurrentProcess};
NSAppleEventDescriptor* target =
[NSAppleEventDescriptor
descriptorWithDescriptorType:typeProcessSerialNumber
bytes:&psn
length:sizeof(ProcessSerialNumber)];
// create an NSAppleEventDescriptor with the script's method name to call,
// this is used for the script statement: "on show_message(user_message)"
// Note that the routine name must be in lower case.
NSAppleEventDescriptor* handler =
[NSAppleEventDescriptor descriptorWithString:
[@"reveal_in_1pwd" lowercaseString]];
// create the event for an AppleScript subroutine,
// set the method name and the list of parameters
NSAppleEventDescriptor* event =
[NSAppleEventDescriptor appleEventWithEventClass:kASAppleScriptSuite
eventID:kASSubroutineEvent
targetDescriptor:target
returnID:kAutoGenerateReturnID
transactionID:kAnyTransactionID];
[event setParamDescriptor:handler forKeyword:keyASSubroutineName];
[event setParamDescriptor:parameters forKeyword:keyDirectObject];
// call the event in AppleScript
if (![appleScript executeAppleEvent:event error:&scptErrors])
{
NSLog(@"%@",scptErrors);
// report any errors from 'errors'
}
[appleScript release];
}
else
{
NSLog(@"%@",scptErrors);
// report any errors from 'errors'
}
}
return nil;
}
-(void)formURLAndFillWith:(QSObject *)dObject andBrowsers:(QSObject *)iObject {
// Create the appropriate URL
NSString *appendedString = [NSString stringWithFormat:@"?onepasswdfill=%@",[dObject identifier]];
NSString *URLString = [dObject details];
URLString = [URLString stringByAppendingString:appendedString];
NSURL *URL = [NSURL URLWithString:[URLString URLEncoding]];
NSWorkspace *ws = [NSWorkspace sharedWorkspace];
// Open the URL in the default browser
if(!iObject) {
[ws openURL:URL];
}
else {
for(QSObject *individual in [iObject splitObjects]){
if([individual isApplication]) {
NSString *ident = [[NSBundle bundleWithPath:[individual singleFilePath]] bundleIdentifier];
[ws openURLs:[NSArray arrayWithObject:URL] withAppBundleIdentifier:ident
options:0
additionalEventParamDescriptor:nil
launchIdentifiers:nil];
}
}
}
}
//-(QSObject *)trashForm:(QSObject *)dObject
//{
// NSString *keychainPath= (NSString *)CFPreferencesCopyAppValue((CFStringRef)@"AgileKeychainLocation",(CFStringRef) @"ws.agile.1Password");
// keychainPath = [keychainPath stringByAppendingPathComponent:@"data/default"];
//
// //If there's multiple forms to fill
// if ([[dObject stringValue] isEqualToString:@"combined objects"])
// {
// // for each object - do exactly the same thing as for single objects
// for (QSObject *goAndFillObject in [dObject objectForCache:kQSObjectComponents])
// {
//
// }
// // If we only have one form to fill / one object
// }
// else {
// // single object -- same as for multiple objects
// }
//
// return nil;
//}
//
//}
@end