summaryrefslogtreecommitdiffstats
path: root/src/api.c
blob: c5fb0b3ca16dedfdbbcdcf42ba1fe13553b51289 (plain) (blame)
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
#define DC_LOGIN_FORMAT "{\"login\":\"%s\",\"password\":\"%s\",\"undelete\":false," \
	"\"captcha_key\":null,\"login_source\":null,\"gift_code_sku_id\":null}"
#define DC_COMPILE_INFO __VERSION__ " "  __BASE_FILE__ " " __FILE__ " " __TIMESTAMP__
#define DC_STR(x) x
#define DC_USER_AGENT "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) " \
	"Chrome/90.0.4430.212 Safari/537.36" /* this is so we can fool the login system */
#define DC_SERVER_ADDRESS "discord.com"
#define DC_SERVER_PORT 443
#define DC_SERVER_SSL 1
#define DC_SERVER_ORIGIN "https://discord.com"
#define DC_WS_ADDRESS "gateway.discord.gg"
#define DC_WS_PORT DC_SERVER_PORT
#define DC_WS_SSL DC_SERVER_SSL
#define DC_WS_ORIGIN DC_SERVER_ORIGIN
#define DC_WS_PATH "/?encoding=json&v=9"
#define DC_API_PREFIX "/api/v9/"
#define DC_LWS_ABLE_TO_PARSE_HEADERS 1
#define DC_RECONNECT_DELAY 10
#define cJSON_GetObjectItem2(root, name1, name2) (cJSON_GetObjectItem(root, name1) ? /* mazohi=	*/ \
		cJSON_GetObjectItem(cJSON_GetObjectItem(root, name1), name2) : NULL) /* stično!	*/
#define cJSON_GetObjectItem3(root, name1, name2, name3) (cJSON_GetObjectItem2(root, name1, name2) ? \
		cJSON_GetObjectItem(cJSON_GetObjectItem2(root, name1, name2), name3) : NULL)
#define cJSON_GetObjectItem4(ro, na1, na2, na3, na4) (cJSON_GetObjectItem3(ro, na1, na2, na3) ? \
		cJSON_GetObjectItem(cJSON_GetObjectItem3(ro, na1, na2, na3), na4) : NULL)
#define cJSON_GetObjectItem5(r, n1, n2, n3, n4, n5) (cJSON_GetObjectItem4(r, n1, n2, n3, n4) ? \
		cJSON_GetObjectItem(cJSON_GetObjectItem4(r, n1, n2, n3, n4), n5) : NULL)
#define cJSON_GSV cJSON_GetStringValue
#define cJSON_GNV cJSON_GetNumberValue
#define cJSON_GAS cJSON_GetArraySize
#define cJSON_GOI cJSON_GetObjectItem
#define cJSON_GOI2 cJSON_GetObjectItem2
#define cJSON_GOI3 cJSON_GetObjectItem3
#define cJSON_GOI4 cJSON_GetObjectItem4
#define cJSON_GOI5 cJSON_GetObjectItem5
#define cJSON_GSV cJSON_GetStringValue
#define cJSON_IN cJSON_IsNumber
#define cJSON_AFE cJSON_ArrayForEach
unsigned char dc_api_identify_u[] = {
#include <identify.xxd>
};
char * dc_api_identify = (char *) dc_api_identify_u;
/* libwebsockets information: libwebsockets works with event loops and discord.c primary targets debian for building (it must work on debian), but debian does not ship libwebsockets with glib or libevent event loop support, so loops are implemented in the classic poll() style. this reduces performance probably. if you use discord.c API with support for a platform specific event loop, you may rewrite LWS to do things differently. currently calls into API (dc_api_i and dc_api_o) will both do LWS stuff. */
void dc_api_stack (struct dc_api_io i) { /* stack output struct to be delivered via dc_api_o 2usr */
	DC_MR(i.program->api_ios);
	assert((i.program->api_ios[i.program->api_ios_length] = malloc(sizeof(i))));
	*(i.program->api_ios[i.program->api_ios_length++]) = i;
	return;
}
unsigned long long int dc_calculate_permissions (struct dc_user * u, struct dc_channel * c) {
	unsigned long long int p = 0; /* note: this is NOT according to server's implementation of */
	struct dc_role ** role = &c->guild->role; /* perm parsing, but should suffice 4 most cases */
	if (!*role) /* see struct dc_guild: if NULL then assume all permissions - a DM guild */
		return DC_ALL_PERMISSIONS;
	while (*role) {
		if (DC_ROLE_EVERYONE(*role)
				|| dc_find_user((*role)->users, (*role)->users_length, u->id))
			p |= (*role)->permissions;
		role = &(*role)->next;
	}
	if (p & DC_ADMIN)
		return DC_ALL_PERMISSIONS;
	for (size_t i = 0; i < c->permissions_length; i++)
		if (c->permissions[i]->user
			? c->permissions[i]->user == u
			: dc_find_user(c->permissions[i]->role->users,
							c->permissions[i]->role->users_length, u->id)
				|| DC_ROLE_EVERYONE(c->permissions[i]->role)) {
			p &= ~c->permissions[i]->deny;
			p |= c->permissions[i]->allow;
			if (p & DC_ADMIN)
				return DC_ALL_PERMISSIONS;
		}
	return p;
}
struct dc_user * dc_parse_user (struct dc_user * dst, const cJSON * src) {
	char * cp;
	if (!dst)
		dst = dc_user_init();
	if ((cp = cJSON_GSV(cJSON_GOI(src, "username"))))
		dst->username = strdup(cp);
	if ((cp = cJSON_GSV(cJSON_GOI(src, "discriminator"))))
		dst->discriminator = atoi(cp);
	if ((cp = cJSON_GSV(cJSON_GOI(src, "id"))))
		dst->id = strtoull(cp, NULL, 10);
	if (!dst->username || dst->discriminator == -1) { /* it's quite useless to store only ids */
		dc_user_free(dst, DC_UNSET);
		return NULL;
	}
	return dst;
}
static int dc_lws_cb (struct lws * wsi, enum lws_callback_reasons rs, void * us, void * in, size_t len) {
	struct dc_lws_pass * pass = (struct dc_lws_pass *) us;
	unsigned char buf[LWS_PRE+DC_LWS_BUF+1]; /* whooh, boy, this is more than a meg of stack! */
	switch (rs) {
		case LWS_CALLBACK_CLIENT_CONNECTION_ERROR: /* TODO: handle and report somehow */
			if (pass) {
				pass->api_io.status = DC_NET_ERROR;
				pass->wsi = NULL;
				pass->api_io.status |= DC_FROM_LWS;
				dc_api_i(pass->api_io);
				pass->api_io.status &= ~DC_FROM_LWS;
			}
			lwsl_err("CLIENT_CONNECTION_ERROR: %s\n", in ? (char *) in : "(null)");
			break;
		case LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER: /* lws gives us len space after *in */
			;
			unsigned char ** p = (unsigned char **) in, * end = (*p)+len;
			for (int i = 0; i < DC_LWS_HEADERS_LENGTH; i++)
				if (pass->headers[i][0])
					if (lws_add_http_header_by_name(wsi, (const unsigned char *) dc_lws_headers[i], (const unsigned char *) pass->headers[i], strlen(pass->headers[i]), p, end))
						return -1;
			char slen[32];
			snprintf(slen, 32, "%u", pass->body_length);
			if (lws_add_http_header_by_name(wsi, (const unsigned char *) "Content-Length:", (const unsigned char *) slen, strlen(slen), p, end))
				return -1;
			if (!lws_http_is_redirected_to_get(wsi)) {
				lwsl_user("doing POST flow\n");
				lws_client_http_body_pending(wsi, 1);
				lws_callback_on_writable(wsi);
			} else
				lwsl_user("doing GET flow, got redirected - this is a bug, report!\n");
			break;
		case LWS_CALLBACK_CLIENT_HTTP_WRITEABLE: /* see minimal post example on how to send */
			if (lws_http_is_redirected_to_get(wsi)) {
				fprintf(stderr, "http is redirected to get\n");
				break;	/* for setting avatar pictures or uploading files. Yecch */
			}
			fprintf(stderr, "LWS_CALLBACK_CLIENT_HTTP_WRITABLE, %d\n", pass->api_io.status);
			if (lws_write(wsi, (unsigned char *) pass->body, pass->body_length, LWS_WRITE_HTTP_FINAL) != (int) pass->body_length) { /* TODO: fix to allow sending large bodies */
				fprintf(stderr, "lws_write can't write that much!\n");
				return 1;
			}
			lws_client_http_body_pending(wsi, 0);
			pass->body_length = 0;
			break;
		case LWS_CALLBACK_ESTABLISHED_CLIENT_HTTP:
			pass->status = lws_http_client_http_response(wsi); /* 200 OK, 404 Not Found,...*/
			fprintf(stderr, "Connected with server response: %d\n", pass->status);
#ifdef DC_LWS_ABLE_TO_PARSE_HEADERS
			/* how to query custom headers (http 1.x only at the moment) */
			for (int i = 0; i < DC_LWS_HEADERS_LENGTH; i++) {
				pass->headers[i][0] = '\0'; /* to clear any headers we requested with */
				int n = lws_hdr_custom_length(wsi, dc_lws_headers[i], strlen(dc_lws_headers[i]));
				if (n < -1)
					lwsl_notice("Error with header %s.\n", dc_lws_headers[i]);
				else
					if (lws_hdr_custom_copy(wsi, pass->headers[i], DC_LWS_MAX_HEADER_LENGTH, dc_lws_headers[i], strlen(dc_lws_headers[i])) < 0)
						lwsl_notice("Header %s too long or non existent.\n", dc_lws_headers[i]);
					else
						lwsl_notice("%s %s\n", dc_lws_headers[i], pass->headers[i]);
			}
#endif
			break;
		case LWS_CALLBACK_RECEIVE_CLIENT_HTTP_READ: /* chunked body, without headers */
			fprintf(stderr, "RECEIVE_CLIENT_HTTP_READ: read %d, current pass->body_length %d\n", len, pass->body_length);
			pass->body = realloc(pass->body, pass->body_length + len + 1);
			memcpy(pass->body+pass->body_length, in, len);
			pass->body[(pass->body_length += len)] = '\0';
			fprintf(stderr, "contents of pass->body: %s\n", pass->body);
			return 0; /* don't pass to lws_callback_http_dummy */
		case LWS_CALLBACK_RECEIVE_CLIENT_HTTP: /* uninterpreted http content */
			;
			char * ptr = (char *) buf + LWS_PRE; /* see, BEFORE the pointer - lower addr */
			int len2 /* DC_LWS_BUF again */ = sizeof(buf) - LWS_PRE;
			if (lws_http_client_read(wsi, &ptr, &len2) < 0) {
				fprintf(stderr, "lws_http_client_read -1\n");
				return -1;
			}
			return 0; /* don't pass to lws_callback_http_dummy */
		case LWS_CALLBACK_COMPLETED_CLIENT_HTTP:
			lwsl_user("LWS_CALLBACK_COMPLETED_CLIENT_HTTP\n");
			break;
		case LWS_CALLBACK_CLOSED_CLIENT_HTTP:
			lwsl_user("LWS_CALLBACK_CLOSED_CLIENT_HTTP\n");
			break;
		case LWS_CALLBACK_WSI_DESTROY: /* this is allways received */
			if (pass->api_io.pass != pass)
				fprintf(stderr, "[!!!] REPORT BUG: pass->api_io.pass != pass\n");
			if (pass->api_io.status & DC_DESTROY_CB) {
				pass->api_io.status |= DC_FROM_LWS;
				dc_api_i(pass->api_io);
				pass->api_io.status &= ~DC_FROM_LWS;
			}
			DC_API_IO_GC(pass->api_io); /* frees all unfinished parsing objects */
			pass->api_io.client->pass = NULL;
			dc_lws_pass_free(pass, DC_UNSET); /* called last time us ptr & wsi r still */
			break;
		case LWS_CALLBACK_WSI_CREATE: /* first - outermost - call with wsi present */
			if (pass->api_io.client) {
				if (pass->api_io.status & DC_SET_PASS) {
					fprintf(stderr, "pass->api_io.client->pass = pass\n");
					pass->api_io.client->pass = pass;
				}
				if (pass->api_io.status & DC_SET_WS_ACTIVE) /* how to see if ws */
					pass->api_io.client->status |= DC_WS_ACTIVE; /* or http? */
			}
			break;
		case LWS_CALLBACK_CLIENT_ESTABLISHED: /* websocket established */
			fprintf(stderr, "LWS_CALLBACK_CLIENT_ESTABLISHED\n");
			pass->api_io.status = DC_OK;
			pass->wsi = wsi;
			pass->api_io.status |= DC_FROM_LWS;
			dc_api_i(pass->api_io);
			pass->api_io.status &= ~DC_FROM_LWS;
			break;
		case LWS_CALLBACK_WS_PEER_INITIATED_CLOSE:
			pass->reason = 0;
			if (len < 2)
				fprintf(stderr, "SERVER CLOSED CONNECTION W/O PROIVIDING REASON!\n");
			else
				pass->reason = ntohs(*(uint16_t *) in /* i hope this is legal */);
			fprintf(stderr, "SERVER CLOSED CONNECTION WITH REASON %d\n", pass->reason);
			if (len > 2)
				fprintf(stderr, "with additional msg: %.*s\n", len-2, (char *) in+2);
			break;
		case LWS_CALLBACK_CLIENT_CLOSED: /* websocket closed */
			pass->api_io.client->disconnect_time = time(NULL);
			DC_API_IO_GC(pass->api_io); /* frees all unfinished parsing objects */
			pass->api_io.status = DC_NET_ERROR;
			pass->wsi = NULL;
			pass->api_io.status |= DC_FROM_LWS;
			dc_api_i(pass->api_io);
			pass->api_io.status &= ~DC_FROM_LWS;
			break;
		case LWS_CALLBACK_CLIENT_RECEIVE: /* websocket receive, pass to json parser ? */
			if (getenv("DC_N")) /* output received network to stdout */
				fprintf(stdout, "%.*s", len, (const unsigned char *) in);
			char * serialized = dc_json(pass->json, in, len);
			while (serialized) {
				cJSON * ob, * obj, * obje, * json = cJSON_Parse(serialized);
				char * st;
				if (getenv("DC_J")) {
					st = cJSON_Print(json);
					printf("%s\n", st);
					cJSON_free(st);
				}
#define DC_PTYP(t) ((st = cJSON_GSV(cJSON_GOI(json, "t"))) && !strcmp(st, t))
				if (DC_PTYP("READY") && getenv("DC_R")) {
					printf("%s\n", (st = cJSON_Print(json)));
					cJSON_free(st);
				}
				if ((st = cJSON_GSV(cJSON_GOI(json, "t"))))
					fprintf(stderr, "t: %s\n", st);
				pass->api_io.client->last_packet = cJSON_GNV(cJSON_GOI(json, "s"));
				if (cJSON_GNV(cJSON_GOI(json, "op")) == DC_PING) {
					pass->api_io.client->last_ping = 0;
					dc_handle_ping(pass->api_io, NULL);
				}
				if (cJSON_IN((obj = cJSON_GOI2(json, "d", "heartbeat_interval")))) {
					pass->api_io.client->ping_interval = cJSON_GNV(obj)/1000-1;
					pass->api_io.client->last_ping = 1;
				}
#define DC_PARSEOBJ(w, object, also) if ((obj = object)) { \
					struct dc_##w * w; \
					if ((w = dc_parse_##w(NULL, obj))) \
						w = dc_addr_##w(pass->api_io.program, \
							DC_ISAE(pass->api_io.program->w##s), w, \
							DC_MAY_FREE | DC_REPLACE | DC_INCOMPLETE);\
					also \
				}
				DC_PARSEOBJ(user, cJSON_GOI2(json, "d", "user"),
						if (!pass->api_io.client->user)
							pass->api_io.client->user = user;
					)
				DC_PARSEOBJ(user, cJSON_GOI3(json, "d", "member", "user"),)
				DC_PARSEOBJ(user, cJSON_GOI2(json, "d", "author"),)
				DC_PARSEOBJ(user, cJSON_GOI3(json,
							"d", "referenced_message", "author"),)
#define DC_PARSEARR(what, arr, also) cJSON_AFE(obj, arr) { \
					struct dc_##what * what = dc_parse_##what(NULL, obj); \
					if (!what) \
						continue; \
					dc_addr_##what(pass->api_io.program, \
							DC_ISAE(pass->api_io.program->what##s), \
							what, DC_MAY_FREE|DC_REPLACE|DC_INCOMPLETE);\
					also \
				}
				DC_PARSEARR(user, cJSON_GOI2(json, "d", "users"),)
				DC_PARSEARR(user, cJSON_GOI2(json, "d", "mentions"),)
				DC_PARSEARR(user, cJSON_GOI3(json,
							"d", "referenced_message", "mentions"),)
				cJSON_AFE(obj, cJSON_GOI2(json, "d", "private_channels")) {
					if (/* !cJSON_GAS(cJSON_GOI(obj, "recipient_ids")) || */
	/* commented. DMs with 0 members're shown /\ */	!cJSON_GSV(cJSON_GOI(obj, "id")) ||
							!DC_CHANNEL_SUPPORTED(
	/* cJSON is called many times here but I don't care */	cJSON_GNV(cJSON_GOI(obj, "type"))))
						continue;
					struct dc_channel * ch = dc_channel_init();
					if ((st = cJSON_GSV(cJSON_GOI(obj, "name"))))
						ch->name = strdup(st);
					ch->type = cJSON_GNV(cJSON_GOI(obj, "type"));
					ch->id = strtoull(cJSON_GSV(cJSON_GOI(obj, "id")), NULL, 10);
					cJSON_AFE(obje, cJSON_GOI(obj, "recipient_ids")) {
						if (!(st = cJSON_GSV(obje)))
							continue;
						struct dc_user * part = dc_user_init();
						part->id = strtoull(st, NULL, 10);
						part = dc_add_user(
								DC_ISAE(pass->api_io.program->users),
	/* no replace here. stored user can be better. */	part, DC_MAY_FREE);
						DC_MR(ch->users); /* needn't dc_add here coz start */
						ch->users[ch->users_length++] = part; /* empty ch. */
					}
					ch = dc_addr_channel(pass->api_io.program,
							DC_ISAE(pass->api_io.program->channels), ch,
	/* replace here. ours is better - fresher. */	DC_MAY_FREE | DC_REPLACE | DC_INCOMPLETE);
					ch->guild = pass->api_io.client->guilds[0];
				}
				cJSON_AFE(ob, cJSON_GOI2(json, "d", "merged_members")) {
					obj = cJSON_GetArrayItem(ob, 0);
					if (!cJSON_GAS(cJSON_GOI(obj, "roles")))
						continue;
					struct dc_user * user = dc_user_init();
					user->id = strtoull(cJSON_GSV(cJSON_GOI(obj, "user_id")),
							NULL, 10);
					user = dc_addr_user(
						DC_ISAE(pass->api_io.program->users), user,
	/* again, no replace here, only ID */	DC_MAY_FREE);
					cJSON_AFE(obje, cJSON_GOI(obj, "roles")) {
						if (!(st = cJSON_GSV(obje)))
							continue;
						struct dc_role * role = dc_role_init();
						role->id = strtoull(st, NULL, 10);
						role = dc_addr_role(
								DC_ISAE(pass->api_io.program->roles),
								role, DC_MAY_FREE);
	/* role may have users. NO FREE! */	dc_add_user(DC_ISAE(role->users), user, DC_UNSET);
					}
				}
				cJSON_Delete(json);
				json = NULL;
				serialized = dc_json(pass->json, NULL, 0);
			}
			break;
		case LWS_CALLBACK_CLIENT_WRITEABLE: /* invoke w/ lws_callback_on_writeable(wsi)4ws */
			if (!pass->api_io.client) /* we empty all payloads from 0 to finish */
				break;
			for (size_t i = 0; i < pass->api_io.client->payloads_length; i++) {
				char * body = pass->api_io.client->payloads[i]->body;
				size_t length = pass->api_io.client->payloads[i]->length;
				fprintf(stderr, "going to write to ws: %.*s\n", length, body);
				if (lws_write(wsi, (unsigned char *) body, length, LWS_WRITE_BINARY) != (int) length) { /* body already has LWS_PRE bytes allocated before it */
					fprintf(stderr, "ws lws_write failed!\n");
					return -1;
				}
				dc_payload_free(pass->api_io.client->payloads[i], DC_UNSET);
				pass->api_io.client->payloads[i] = NULL; /* THIS MUST BE DONE, otherws */
			} /* _free function will double free, because it frees till _sizeof */
			pass->api_io.client->payloads_length = 0;
			break;
		default:
			break;
	}
	return lws_callback_http_dummy(wsi, rs, us, in, len);
}
void dc_api_i (struct dc_api_io i) { /* this function does not call attached functions, only output does that */
	struct lws_client_connect_info info;
	struct dc_lws_pass * pass;
	assert(i.program);
	if (i.program->lws_context && !(i.status & DC_FROM_LWS))
		lws_service(i.program->lws_context, -1); /* DO NOT CALL THIS FROM _cb! */
	switch (i.type) {
		case DC_API_MESSAGE:
			break;
		case DC_API_CHANNEL:
			break;
		case DC_API_GUILD:
			break;
		case DC_API_LOGIN: /* TODO: library currently only works for a single client */
			if (!i.program->clients_length) /* already attempted login */
				DC_MR(i.program->clients);
			i.program->clients[0] = i.client;
			i.program->clients_length = 1;
			memset(&info, 0, sizeof(info));
			info.context = i.program->lws_context;
#if DC_SERVER_SSL
			info.ssl_connection = LCCSCF_USE_SSL;
#endif
			info.port = DC_SERVER_PORT;
			info.address = DC_SERVER_ADDRESS;
			info.path = DC_API_PREFIX "auth/login";
			info.host = info.address;
			/* info.origin = DC_SERVER_ORIGIN; */ /* just don't send it */
			info.method = "POST";
			pass = dc_lws_pass_init(); /* cb frees */
			fprintf(stderr, "allocated pass at %p\n", (void *) pass);
			i.status |= DC_DESTROY_CB; /* so that lws_cb will call api on destroy - fin rq */
			pass->body_length = asprintf(&pass->body, DC_LOGIN_FORMAT, i.client->email, i.client->password);
			fprintf(stderr, "length: %u string: %s\n", pass->body_length, pass->body);
			i.type = DC_API_LOGIN_CB;
			i.status &= ~DC_SET_PASS; /* this is a HTTP request, pass is for websockets */
			memcpy(&pass->api_io, &i, sizeof(i));
			pass->api_io.pass = pass;
			strcpy(pass->headers[DC_LWS_CONTENT_TYPE], "application/json");
			info.userdata = pass;
#if DC_LWS_ABLE_TO_PARSE_HEADERS
			info.alpn = "http/1.1";
#endif
			info.protocol = dc_lws_protocols[0].name;
			if (i.client->authorization) /* attempt cookie login without user/pass */
				strcpy(pass->headers[DC_LWS_AUTHORIZATION], i.client->authorization);
			i.status = DC_UNSET /* we clear the status */;
			lws_client_connect_via_info(&info);
			break;
		case DC_API_LOGIN_CB:
#define DC_STACK_RETURN(x) do { i.client->status = x; dc_api_stack(i); return; } while (0)
			i.type = DC_API_LOGIN;
			i.status &= ~DC_OK;
			if (!i.pass->body) {
				i.client->status |= DC_REQUEST_FAILED;
				dc_api_stack(i);
				break;
			}
			fprintf(stderr, "DEBUG: %s\n", i.pass->body);
			if (strstr(i.pass->body, "INVALID_LOGIN"))
				DC_STACK_RETURN(DC_BAD_LOGIN);
			if (strstr(i.pass->body, "captcha-required"))
				DC_STACK_RETURN(DC_CAPTCHA_NEEDED);
			if (strstr(i.pass->body, "ACCOUNT_LOGIN_VERIFICATION_EMAIL"))
				DC_STACK_RETURN(DC_VERIFICATION_NEEDED);
			char * cp, * c2;
#define DC_LTS "\"token\": \""
			if ((size_t) (cp = strstr(i.pass->body, DC_LTS)+strlen(DC_LTS))
					== strlen(DC_LTS) || !(c2 = strchr(cp+strlen(DC_LTS), '"')))
				DC_STACK_RETURN(DC_ERROR);
			c2[0] = '\0'; /* body is on heap, we can edit it */
			free(i.client->authorization); /* in case we set it previously */
			i.client->authorization = strdup(cp);
			fprintf(stderr, "got token %s\n", i.client->authorization);
			i.client->status |= DC_OK | DC_INCOMPLETE;
			dc_api_stack(i);
			/* we now have to connect to the websocket */
			goto ws; /* we could call dc_api_i but that just fills stack */
			break;
		case DC_API_WS:
			fprintf(stderr, "DC_API_WS called\n");
			ws:
			memset(&info, 0, sizeof(info));
			info.context = i.program->lws_context;
			if (!info.context)
				fprintf(stderr, "[BUG] !!! !info.context\n");
			info.port = DC_WS_PORT;
			info.address = DC_WS_ADDRESS;
			info.path = DC_WS_PATH;
			info.host = info.address;
			info.origin = DC_WS_ORIGIN;
#if DC_WS_SSL
			info.ssl_connection = LCCSCF_USE_SSL;
#endif
			info.protocol = dc_lws_protocols[0].name;
			info.local_protocol_name = info.protocol;
			pass = dc_lws_pass_init();
			i.type = DC_API_WS_CB;
			i.status |= DC_SET_PASS | DC_SET_WS_ACTIVE;
			i.status &= ~DC_DESTROY_CB; /* this is only for http requests */
			memcpy(&pass->api_io, &i, sizeof(i));
			pass->api_io.pass = pass;
			info.userdata = pass;
			if (i.client->authorization) /* attempt cookie login without user/pass */
				strcpy(pass->headers[DC_LWS_AUTHORIZATION], i.client->authorization);
			fprintf(stderr, "starting websocket session\n");
			i.status = DC_UNSET; /* we clear the status */
			if (!lws_client_connect_via_info(&info)) {
				i.client->status = DC_NET_ERROR;
				dc_api_stack(i);
			}
			break;
		case DC_API_WS_CB:
			i.client->status &= ~(DC_NET_ERROR | DC_OK);
			i.client->status |= i.status;
			if (i.status & DC_NET_ERROR) { /* pass and pass->body were freed on _DESTROY */
				fprintf(stderr, "websocket connection was closed by the remote host\n");
				i.pass = NULL; /* pass was/will be freed on _DESTROY, discard it! */
			} else if (!i.client->authorization) {
				fprintf(stderr, "what the fuck?! DC_API_WS_CB called without token!\n");
			} else { /* commerce identify */
				struct dc_payload * p = calloc(1, sizeof(struct dc_payload));
				p->length = asprintf(&p->body, dc_api_identify, i.client->authorization); /* body buffer to identify packet */
				dc_ws_stack(i.client, p, DC_NO_WRITE);
				p = calloc(1, sizeof(struct dc_payload)); /* official client sends a */
				p->length = asprintf(&p->body, DC_WS_PING_FORMAT, (unsigned long long int) 0);
				dc_ws_stack(i.client, p, DC_UNSET); /* right after identify. */
			}	
			dc_api_stack(i); /* cl.stat is either NET_ERROR 4 closed or error or OK 4 esta */
			break;
		case DC_API_USER:
			break;
		case DC_API_REGISTER:
			break;
		case DC_API_STATUS:
			break;
		case DC_API_ROLE:
			break;
		case DC_API_NONE:
			break;
		case DC_API_ATTACH:
			DC_MR(i.program->attached_functions); /* makes room for at least one */
			i.program->attached_functions[i.program->attached_functions_length++] = i.attached_function; /* is on heap */
			break;
	}
}
struct dc_api_io dc_api_o (struct dc_api_io i /* for ->program */) {
	if (!i.program) {
		i.type = DC_API_STATUS;
		i.status = DC_USER_ERROR;
		return i;
	}
	if (i.program->lws_context)
		lws_service(i.program->lws_context, -1); /* with -1 this takes ~0 time */
	for (size_t x = 0; x < i.program->clients_length; x++) {
		if (i.program->clients[x]->status & DC_WS_ACTIVE && !i.program->clients[x]->pass
				&& i.program->clients[x]->disconnect_time+DC_RECONNECT_DELAY<time(NULL)) {
			fprintf(stderr, "reconnecting client %u\n", x);
			i.client = i.program->clients[x];
			i.client->status &= ~DC_WS_ACTIVE; /* because we create a new WSI */
			i.type = DC_API_WS;
			dc_api_i(i);
		}
	}
	struct dc_api_io o = {
		.type = DC_API_NONE,
		.program = i.program
	};
	/* dc_api_stack pop: */
	if (i.program->api_ios_length) {
		memcpy(&o, (i.program->api_ios[--i.program->api_ios_length]), sizeof(o));
		dc_api_io_free(i.program->api_ios[i.program->api_ios_length], DC_UNSET);
		i.program->api_ios[i.program->api_ios_length] = NULL;

	}
	int is_broken = 0;
	for (size_t j = 0; j < i.program->attached_functions_length; j++) { /* call attached functions */
		if (i.program->attached_functions[j]->type != DC_API_TIMEOUT) {
			if (i.program->attached_functions[j]->type == o.type && !is_broken)
				if (i.program->attached_functions[j]->function(o, i.program->attached_functions[j]->user_data) & DC_BREAK)
					is_broken++;
		} else
			if (i.program->attached_functions[j]->last + i.program->attached_functions[j]->every < time(NULL))
				if (!(i.program->attached_functions[j]->function(o, i.program->attached_functions[j]->user_data) & DC_RETRY))
					i.program->attached_functions[j]->last = time(NULL);
	}
	return o;
}