Add forgotten server example files
[libisds.git] / client / downloadmessagehash.c
blobb32bf30f4f26a59fc61a0b622f78e0ba6562898b
1 #include "../config.h"
2 #define _XOPEN_SOURCE XOPEN_SOURCE_LEVEL_FOR_STRDUP
3 #include <stdlib.h>
4 #include <stdio.h>
5 #include <locale.h>
6 #include <time.h>
7 #include <string.h>
8 #include <isds.h>
9 #include "common.h"
12 int main(void) {
13 struct isds_ctx *ctx = NULL;
14 isds_error err;
15 char *last_message_id = NULL;
17 setlocale(LC_ALL, "");
19 err = isds_init();
20 if (err) {
21 printf("isds_init() failed: %s\n", isds_strerror(err));
22 exit(EXIT_FAILURE);
25 isds_set_logging(ILF_ALL & ~ILF_HTTP, ILL_ALL);
27 ctx = isds_ctx_create();
28 if (!ctx) {
29 printf("isds_ctx_create() failed");
32 err = isds_set_timeout(ctx, 10000);
33 if (err) {
34 printf("isds_set_timeout() failed: %s\n", isds_strerror(err));
37 err = isds_login(ctx, url, username(), password(), NULL, NULL);
38 if (err) {
39 printf("isds_login() failed: %s: %s\n", isds_strerror(err),
40 isds_long_message(ctx));
41 } else {
42 printf("Logged in :)\n");
47 /* Get list of received messages */
49 struct tm from_time_tm = {
50 .tm_year = 2000 - 1900,
51 .tm_mon = 1 - 1,
52 .tm_mday = 1,
53 .tm_hour = 1,
54 .tm_min = 2,
55 .tm_sec = 3,
56 .tm_isdst = -1
58 time_t from_time_t = mktime(&from_time_tm);
59 struct timeval from_time = {
60 .tv_sec = from_time_t,
61 .tv_usec = 4000
63 unsigned long int number = 0;
64 struct isds_list *messages = NULL, *item;
65 struct isds_message *last_message = NULL;
67 /* TODO: Try different criteria */
68 printf("Getting list of received messages\n");
69 err = isds_get_list_of_received_messages(ctx, &from_time, NULL, NULL,
70 MESSAGESTATE_ANY, 0, &number, &messages);
71 if (err)
72 printf("isds_get_list_of_received_messages() failed: %s: %s\n",
73 isds_strerror(err), isds_long_message(ctx));
74 else {
75 printf("isds_get_list_of_received_messages() succeeded: "
76 "number of messages = %lu:\n", number);
77 for(item = messages; item; item = item->next) {
78 last_message = (struct isds_message *) (item->data);
83 if (last_message) {
84 /*Save last message for latter refference */
85 if (last_message->envelope && last_message->envelope->dmID) {
86 last_message_id = strdup(last_message->envelope->dmID);
90 isds_list_free(&messages);
94 if (last_message_id) {
96 /* Download last message hash */
97 struct isds_hash *hash = NULL;
99 printf("Getting last received message hash with ID: %s\n",
100 last_message_id);
101 err = isds_download_message_hash(ctx, last_message_id, &hash);
102 if (err)
103 printf("isds_download_message_hash() failed: %s: %s\n",
104 isds_strerror(err), isds_long_message(ctx));
105 else {
106 printf("isds_download_message_hash() succeeded: ");
107 print_hash(hash);
110 free(last_message_id);
114 /* Download hash with invalid ID*/
116 struct isds_hash *hash = NULL;
117 char *id = "123456789112345678921";
119 printf("Getting message hash with invalid ID: %s\n", id);
120 err = isds_download_message_hash(ctx, id, &hash);
121 if (err)
122 printf("isds_download_message_hash() failed as assumed: %s: %s\n",
123 isds_strerror(err), isds_long_message(ctx));
124 else {
125 printf("isds_download_message_hash() succeeded. "
126 "This should not happen: ");
127 print_hash(hash);
130 isds_hash_free(&hash);
134 /* Download nonexistent message hash */
136 struct isds_hash *hash = NULL;
137 char *id = "7777777";
139 printf("Getting nonexistent message hash with ID: %s\n", id);
140 err = isds_download_message_hash(ctx, id, &hash);
141 if (err)
142 printf("isds_download_message_hash() failed as assumed: %s: %s\n",
143 isds_strerror(err), isds_long_message(ctx));
144 else {
145 printf("isds_download_message_hash() succeeded. "
146 "This should not happen: ");
147 print_hash(hash);
150 isds_hash_free(&hash);
154 err = isds_logout(ctx);
155 if (err) {
156 printf("isds_logout() failed: %s\n", isds_strerror(err));
160 err = isds_ctx_free(&ctx);
161 if (err) {
162 printf("isds_ctx_free() failed: %s\n", isds_strerror(err));
166 err = isds_cleanup();
167 if (err) {
168 printf("isds_cleanup() failed: %s\n", isds_strerror(err));
171 exit (EXIT_SUCCESS);