-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMacKeychainModule.cpp
86 lines (68 loc) · 2.89 KB
/
MacKeychainModule.cpp
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
#include <node.h>
#include <v8.h>
#include "KeychainUtils.h"
using namespace v8;
using namespace std;
/**
* in javascript: module.getAccountsForHost(hostname)
*/
void getAccountsForHost(const FunctionCallbackInfo<Value>& args) {
Isolate* isolate = Isolate::GetCurrent();
HandleScope scope(isolate);
if (args.Length() < 1) {
isolate->ThrowException(Exception::TypeError(
String::NewFromUtf8(isolate, "Missing host argument")));
return;
}
String::Utf8Value param1(args[0]->ToString());
std::string host(*param1);
vector<KeychainUtils::InternetRecord>* recs = KeychainUtils::getInternetRecordsForService(host.c_str());
if (recs) {
size_t recsCount = recs->size();
Handle<Array> array = Array::New(isolate, recsCount);
if (recsCount > 0) {
int i = 0;
for(vector<KeychainUtils::InternetRecord>::iterator it = recs->begin(); it != recs->end(); ++it) {
KeychainUtils::InternetRecord rec = *it;
Handle<Object> recObj = Object::New(isolate);
recObj->Set(String::NewFromUtf8(isolate, "username"), String::NewFromUtf8(isolate, rec.username.c_str()));
recObj->Set(String::NewFromUtf8(isolate, "server"), String::NewFromUtf8(isolate, rec.server.c_str()));
recObj->Set(String::NewFromUtf8(isolate, "protocol"), String::NewFromUtf8(isolate, rec.protocol.c_str()));
recObj->Set(String::NewFromUtf8(isolate, "path"), String::NewFromUtf8(isolate, rec.path.c_str()));
recObj->Set(String::NewFromUtf8(isolate, "port"), Integer::New(isolate, rec.port));
recObj->Set(String::NewFromUtf8(isolate, "ref"), String::NewFromUtf8(isolate, rec.persistentRef.c_str()));
array->Set(i++, recObj);
}
}
delete recs;
args.GetReturnValue().Set(array);
} else {
args.GetReturnValue().Set(Array::New(isolate, 0));
}
}
/**
* in javascript: module.getPasswordForRef(ref)
*/
void getPasswordForRef(const FunctionCallbackInfo<Value>& args) {
Isolate* isolate = Isolate::GetCurrent();
HandleScope scope(isolate);
if (args.Length() < 1) {
isolate->ThrowException(Exception::TypeError(
String::NewFromUtf8(isolate, "Missing ref argument")));
return;
}
String::Utf8Value param1(args[0]->ToString());
std::string persistentRefB64(*param1);
std::string* password = KeychainUtils::getPasswordForItem(persistentRefB64);
if (password) {
args.GetReturnValue().Set(String::NewFromUtf8(isolate, password->c_str()));
delete password;
} else {
args.GetReturnValue().Set(Null(isolate));
}
}
void init(Handle<Object> target) {
NODE_SET_METHOD(target, "getAccountsForHost", getAccountsForHost);
NODE_SET_METHOD(target, "getPasswordForRef", getPasswordForRef);
}
NODE_MODULE(binding, init);