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
|
#define _XOPEN_SOURCE 500
#include <stdlib.h>
#include <stdio.h>
#include <locale.h>
#include <time.h>
#include <string.h>
#include <isds.h>
#include "common.h"
int main(int argc, char **argv) {
struct isds_ctx *ctx = NULL;
isds_error err;
struct isds_DbOwnerInfo *db_owner_info = NULL;
setlocale(LC_ALL, "");
err = isds_init();
if (err) {
printf("isds_init() failed: %s\n", isds_strerror(err));
exit(EXIT_FAILURE);
}
isds_set_logging(ILF_ALL & ~ILF_HTTP, ILL_ALL);
ctx = isds_ctx_create();
if (!ctx) {
printf("isds_ctx_create() failed");
}
err = isds_set_timeout(ctx, 10000);
if (err) {
printf("isds_set_timeout() failed: %s\n", isds_strerror(err));
}
err = isds_login(ctx, url, username(), password(), NULL, NULL);
if (err) {
printf("isds_login() failed: %s: %s\n", isds_strerror(err),
isds_long_message(ctx));
} else {
printf("Logged in :)\n");
}
{
printf("Getting info about my box:\n");
err = isds_GetOwnerInfoFromLogin(ctx, &db_owner_info);
if (err) {
printf("isds_GetOwnerInfoFromLogin() failed: %s: %s\n",
isds_strerror(err), isds_long_message(ctx));
} else {
printf("isds_GetOwnerInfoFromLogin() succeeded\n");
}
print_DbOwnerInfo(db_owner_info);
}
{
/* Current server implementation (2009-11-17) does not allow to find
* myself. Previous version allowed it. */
struct isds_list *boxes = NULL, *item;
printf("Searching for my own box:\n");
err = isds_FindDataBox(ctx, db_owner_info, &boxes);
if (err == IE_SUCCESS || err == IE_2BIG) {
if (err == IE_2BIG)
printf("isds_FindDataBox() results truncated\n");
printf("isds_FindDataBox() succeeded:\n");
for(item = boxes; item; item = item->next) {
printf("List item:\n");
print_DbOwnerInfo(item->data);
}
} else {
printf("isds_FindDataBox() failed: %s: %s\n",
isds_strerror(err), isds_long_message(ctx));
}
isds_list_free(&boxes);
}
/* Get box delivery info */
if (db_owner_info) {
long int box_status = 0;
printf("Getting status of my box with ID `%s'\n", db_owner_info->dbID);
err = isds_CheckDataBox(ctx, db_owner_info->dbID, &box_status);
if (err)
printf("isds_CheckDataBox() failed: %s: %s\n",
isds_strerror(err), isds_long_message(ctx));
else {
printf("isds_CheckDataBox() succeeded: status = ");
print_DbState(box_status);
}
}
/* Get info all users of this box */
if (db_owner_info) {
struct isds_list *users = NULL, *item;
printf("Getting users of my box with ID `%s':\n", db_owner_info->dbID);
err = isds_GetDataBoxUsers(ctx, db_owner_info->dbID, &users);
if (err) {
printf("isds_GetDataBoxUsers() failed: %s: %s\n",
isds_strerror(err), isds_long_message(ctx));
} else {
printf("isds_GetDataBoxUsers() succeeded\n");
for(item = users; item; item = item->next) {
printf("List item:\n");
print_DbUserInfo(item->data);
}
}
isds_list_free(&users);
}
isds_DbOwnerInfo_free(&db_owner_info);
{
/* Get info about my account */
struct isds_DbUserInfo *db_user_info = NULL;
printf("Getting info about my account:\n");
err = isds_GetUserInfoFromLogin(ctx, &db_user_info);
if (err) {
printf("isds_GetUserInfoFromLogin() failed: %s: %s\n",
isds_strerror(err), isds_long_message(ctx));
} else {
printf("isds_GetUserInfoFromLogin() succeeded\n");
print_DbUserInfo(db_user_info);
}
isds_DbUserInfo_free(&db_user_info);
}
{
/* Get password expiration time */
struct timeval *expiration = NULL;
printf("Getting password expiration time\n");
err = isds_get_password_expiration(ctx, &expiration);
if (err)
printf("isds_get_password_expiration() failed: %s: %s\n",
isds_strerror(err), isds_long_message(ctx));
else {
printf("isds_get_password_expiration() succeeded: "
"Password expires at: ");
if (expiration)
print_timeval(expiration);
else
printf("<Never>\n");
}
free(expiration);
}
err = isds_logout(ctx);
if (err) {
printf("isds_logout() failed: %s\n", isds_strerror(err));
}
err = isds_ctx_free(&ctx);
if (err) {
printf("isds_ctx_free() failed: %s\n", isds_strerror(err));
}
err = isds_cleanup();
if (err) {
printf("isds_cleanup() failed: %s\n", isds_strerror(err));
}
exit (EXIT_SUCCESS);
}
|