-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.ts
222 lines (187 loc) · 7.85 KB
/
task.ts
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
import { Static, Type, TSchema } from '@sinclair/typebox';
import type Lambda from 'aws-lambda';
import type { InputFeatureCollection } from '@tak-ps/etl'
import ETL, { TaskLayer, Event, SchemaType, handler as internal, local, DataFlowType, InvocationType } from '@tak-ps/etl';
import EsriDump, {
EsriDumpConfigInput,
EsriDumpConfigApproach
} from 'esri-dump';
const IncomingInput = Type.Object({
ARCGIS_URL: Type.String(),
ARCGIS_QUERY: Type.Optional(Type.String()),
ARCGIS_PARAMS: Type.Optional(Type.Array(Type.Object({
Key: Type.String(),
Value: Type.String()
}))),
ARCGIS_PORTAL: Type.Optional(Type.String()),
ARCGIS_USERNAME: Type.Optional(Type.String()),
ARCGIS_PASSWORD: Type.Optional(Type.String()),
})
const OutgoingInput = Type.Object({
ARCGIS_PORTAL: Type.String(),
ARCGIS_USERNAME: Type.String(),
ARCGIS_PASSWORD: Type.String(),
ARCGIS_POINTS_URL: Type.Optional(Type.String()),
ARCGIS_LINES_URL: Type.Optional(Type.String()),
ARCGIS_POLYS_URL: Type.Optional(Type.String()),
ARCGIS_SCHEMA: Type.Array(Type.Object({
Type: Type.String(),
Column: Type.String(),
Mapping: Type.String(),
}))
});
export default class Task extends ETL {
static name = 'etl-arcgis';
static flow = [ DataFlowType.Incoming, DataFlowType.Outgoing ];
static invocation = [ InvocationType.Schedule ];
async schema(
type: SchemaType = SchemaType.Input,
flow: DataFlowType = DataFlowType.Incoming
): Promise<TSchema> {
if (flow === DataFlowType.Incoming && type === SchemaType.Input) {
return IncomingInput;
} else if (flow === DataFlowType.Incoming && type === SchemaType.Output) {
const task = new Task();
const layer = await task.fetchLayer();
if (!layer.incoming) {
return Type.Object({});
} else {
const env = await this.env(IncomingInput);
if (!env.ARCGIS_URL) {
return Type.Object({});
} else {
const config: EsriDumpConfigInput = {
approach: EsriDumpConfigApproach.ITER,
headers: {},
params: {}
};
const dumper = await task.dumper(config, layer);
const schema = await dumper.schema();
return schema as TSchema;
}
}
} else if (flow === DataFlowType.Outgoing && type === SchemaType.Input) {
return OutgoingInput;
} else if (flow === DataFlowType.Outgoing && type === SchemaType.Output) {
return Type.Object({});
}
}
async outgoing(event: Lambda.SQSEvent): Promise<boolean> {
await this.env(OutgoingInput, DataFlowType.Outgoing);
const pool: Array<Promise<unknown>> = [];
for (const record of event.Records) {
pool.push(
(async (record: Lambda.SQSRecord) => {
try {
const req = JSON.parse(record.body);
console.error(req);
} catch (err) {
console.error(err, 'Record:', record.body);
}
})(record)
)
}
await Promise.allSettled(pool);
return true;
}
/**
* Return a configured instance of ESRI Dump
*/
async dumper(config: EsriDumpConfigInput, layer: Static<typeof TaskLayer>): Promise<EsriDump> {
const env = await this.env(IncomingInput);
if (
(layer.incoming.ephemeral.ARCGIS_TOKEN && layer.incoming.ephemeral.ARCGIS_EXPIRES)
|| (env.ARCGIS_USERNAME && env.ARCGIS_PASSWORD)
) {
if (
!layer.incoming.ephemeral.ARCGIS_TOKEN
|| !layer.incoming.ephemeral.ARCGIS_REFERER
|| Number(layer.incoming.ephemeral.ARCGIS_EXPIRES) < +new Date() + 1000 * 5 // Token expires in under 5 minutes
) {
console.log('ok - POST http://localhost:5001/api/esri')
const res: object = await this.fetch('/api/esri', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: env.ARCGIS_PORTAL || env.ARCGIS_URL,
username: env.ARCGIS_USERNAME,
password: env.ARCGIS_PASSWORD
})
});
if ('auth' in res && typeof res.auth === 'object') {
layer.incoming.ephemeral.ARCGIS_TOKEN = String('token' in res.auth ? res.auth.token : '');
layer.incoming.ephemeral.ARCGIS_EXPIRES = String('expires' in res.auth ? res.auth.expires : '');
layer.incoming.ephemeral.ARCGIS_REFERER = String('referer' in res.auth ? res.auth.referer : '');
console.log(`ok - PATCH http://localhost:5001/api/layer/${layer.id}`)
await this.setEphemeral({
ARCGIS_TOKEN: layer.incoming.ephemeral.ARCGIS_TOKEN,
ARCGIS_EXPIRES: layer.incoming.ephemeral.ARCGIS_EXPIRES,
ARCGIS_REFERER: layer.incoming.ephemeral.ARCGIS_REFERER,
});
}
}
config.params.token = layer.incoming.ephemeral.ARCGIS_TOKEN;
config.headers.Referer = layer.incoming.ephemeral.ARCGIS_REFERER;
}
return new EsriDump(env.ARCGIS_URL, config);
}
async control(): Promise<void> {
const layer = await this.fetchLayer();
const env = await this.env(IncomingInput);
if (!env.ARCGIS_URL) throw new Error('No ArcGIS_URL Provided');
const config: EsriDumpConfigInput = {
approach: EsriDumpConfigApproach.ITER,
headers: {},
params: {}
};
if (env.ARCGIS_QUERY) {
config.params.where = env.ARCGIS_QUERY;
}
if (env.ARCGIS_PARAMS && env.ARCGIS_PARAMS.length) {
for (const param of env.ARCGIS_PARAMS) {
config.params[param.Key] = param.Value;
}
}
const dumper = await this.dumper(config, layer);
dumper.fetch();
const fc: Static<typeof InputFeatureCollection> = {
type: 'FeatureCollection',
features: []
};
await new Promise<void>((resolve, reject) => {
dumper.on('feature', (feature) => {
feature.id = `layer-${layer.id}-${feature.id}`
feature.properties = {
metadata: feature.properties
};
if (feature.geometry.type.startsWith('Multi')) {
feature.geometry.coordinates.forEach((coords: any, idx: number) => {
fc.features.push({
id: feature.id + '-' + idx,
type: 'Feature',
properties: feature.properties,
geometry: {
type: feature.geometry.type.replace('Multi', ''),
coordinates: coords
}
});
});
} else {
fc.features.push(feature)
}
}).on('error', (err) => {
reject(err);
}).on('done', () => {
return resolve();
});
});
console.log(`ok - obtained ${fc.features.length} features`);
await this.submit(fc);
}
}
await local(new Task(import.meta.url), import.meta.url);
export async function handler(event: Event = {}) {
return await internal(new Task(import.meta.url), event);
}