-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathkeys.dart
184 lines (163 loc) · 4.96 KB
/
keys.dart
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
import 'package:typesense/typesense.dart';
import 'package:logging/logging.dart';
import 'util.dart';
import 'collections.dart' as collections;
import 'documents.dart' as documents;
final log = Logger('Keys');
Future<void> runExample(Client client) async {
logInfoln(log, '--Keys example--');
await init(client);
final response = await createUnscopedSearchOnlyApiKey(client),
// Save the key returned, since this will be the only time the full API
// Key is returned, for security purposes.
unscopedSearchOnlyApiKey = response['value'],
unscopedSearchOnlyApiKeyId = response['id'];
await retrieveMetadata(client, unscopedSearchOnlyApiKeyId);
await retrieveAllMetadata(client);
final scopedSearchOnlyApiKey =
await createScopedSearchOnlyApiKey(client, unscopedSearchOnlyApiKey),
// Swap out the unscoped key.
scopedClient =
Client(client.config.copyWith(apiKey: scopedSearchOnlyApiKey));
await searchInScope(scopedClient);
await searchOutOfScope(scopedClient);
await delete(client, unscopedSearchOnlyApiKeyId);
await collections.delete(client, 'users');
}
final _schema = Schema(
'users',
{
Field('company_id', type: Type.int32),
Field('user_name', type: Type.string),
Field('login_count', type: Type.int32),
Field('country', type: Type.string, isFacetable: true),
},
defaultSortingField: Field('company_id', type: Type.int32),
);
final _documents = [
{
'company_id': 124,
'user_name': 'Hilary Bradford',
'login_count': 10,
'country': 'USA'
},
{
'company_id': 124,
'user_name': 'Nile Carty',
'login_count': 100,
'country': 'USA'
},
{
'company_id': 126,
'user_name': 'Tahlia Maxwell',
'login_count': 1,
'country': 'France'
},
{
'company_id': 126,
'user_name': 'Karl Roy',
'login_count': 2,
'country': 'Germany'
}
];
Future<void> init(Client client) async {
await collections.create(client, _schema);
await documents.importDocs(client, 'users', _documents);
}
Future<Map<String, dynamic>> createUnscopedSearchOnlyApiKey(
Client client) async {
Map<String, dynamic>? response;
try {
logInfoln(log, 'Creating unscoped search-only api key.');
response = await client.keys.create(
{
'description': 'Search-only key.',
'actions': ['documents:search'],
'collections': ['*']
},
);
log.fine(response);
await writePropagationDelay();
} on RequestException catch (e, stackTrace) {
log.severe(e.message, e, stackTrace);
} catch (e, stackTrace) {
log.severe(e, stackTrace);
}
return response ?? {};
}
Future<void> retrieveAllMetadata(Client client) async {
try {
logInfoln(log, 'Retrieving metadata of all keys.');
log.fine(await client.keys.retrieve());
} on RequestException catch (e, stackTrace) {
log.severe(e.message, e, stackTrace);
} catch (e, stackTrace) {
log.severe(e, stackTrace);
}
}
Future<void> retrieveMetadata(Client client, int id) async {
try {
logInfoln(log, 'Retrieving metadata of api key "$id".');
log.fine(await client.key(id).retrieve());
} on RequestException catch (e, stackTrace) {
log.severe(e.message, e, stackTrace);
} catch (e, stackTrace) {
log.severe(e, stackTrace);
}
}
Future<String> createScopedSearchOnlyApiKey(
Client client, String unscopedSearchOnlyApiKey) async {
String? key;
try {
logInfoln(log, 'Creating scoped search-only api key.');
key = client.keys.generateScopedSearchKey(
unscopedSearchOnlyApiKey,
{'filter_by': 'company_id:124'},
);
log.fine(key);
} on RequestException catch (e, stackTrace) {
log.severe(e.message, e, stackTrace);
} catch (e, stackTrace) {
log.severe(e, stackTrace);
}
return key ?? '';
}
Future<void> searchInScope(Client scopedClient) async {
try {
logInfoln(
log, 'Searching for data that is "in scope" of the scoped client.');
log.fine(await scopedClient
.collection('users')
.documents
.search({'q': 'Hilary', 'query_by': 'user_name'}));
} on RequestException catch (e, stackTrace) {
log.severe(e.message, e, stackTrace);
} catch (e, stackTrace) {
log.severe(e, stackTrace);
}
}
Future<void> searchOutOfScope(Client scopedClient) async {
try {
logInfoln(
log, 'Searching for data that is "out of scope" of the scoped client.');
log.fine(await scopedClient
.collection('users')
.documents
.search({'q': 'Maxwell', 'query_by': 'user_name'}));
} on RequestException catch (e, stackTrace) {
log.severe(e.message, e, stackTrace);
} catch (e, stackTrace) {
log.severe(e, stackTrace);
}
}
Future<void> delete(Client client, int id) async {
try {
logInfoln(log, 'Deleting key "$id".');
log.fine(await client.key(id).delete());
await writePropagationDelay();
} on RequestException catch (e, stackTrace) {
log.severe(e.message, e, stackTrace);
} catch (e, stackTrace) {
log.severe(e, stackTrace);
}
}