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
|
/*
* json formatting routines
*
* Copyright (C) 2018 LastPass.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
*
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*
* See LICENSE.OpenSSL for more details regarding this exception.
*/
#include "blob.h"
#include "util.h"
#include "list.h"
#include "json-format.h"
#define INDENT_SPACES 2
static void json_format(struct json_field *field, int level, bool is_last);
static void print_json_quoted_string(const char *str)
{
const char *ptr = NULL;
putchar ('"');
for (ptr = str; *ptr; ptr++) {
/* escape some characters according to http://www.ietf.org/rfc/rfc4627.txt */
switch (*ptr) {
case '\b': putchar('\\'); putchar('b'); break;
case '\f': putchar('\\'); putchar('f'); break;
case '\n': putchar('\\'); putchar('n'); break;
case '\r': putchar('\\'); putchar('r'); break;
case '\t': putchar('\\'); putchar('t'); break;
case '\\': putchar('\\'); putchar('\\'); break;
case '"': putchar('\\'); putchar('"'); break;
default:
if ((*ptr) < ' ') {
printf("\\u%04x", *ptr);
} else {
putchar(*ptr);
}
break;
}
}
putchar ('"');
}
static void indent(int level)
{
for (int i = 0; i < level * INDENT_SPACES; i++)
putchar(' ');
}
static
void json_format_string(struct json_field *field, int level, bool is_last)
{
indent(level);
if (field->name) {
print_json_quoted_string(field->name);
printf(": ");
}
print_json_quoted_string(field->u.string_value);
printf("%c\n", is_last ? ' ' : ',');
}
static
void json_format_array(struct json_field *field, int level, bool is_last)
{
struct json_field *child;
struct json_field *last;
if (field->type != JSON_ARRAY)
return;
last = list_last_entry_or_null(&field->children, struct json_field,
siblings);
indent(level);
if (field->name) {
print_json_quoted_string(field->name);
printf(": ");
}
printf ("[\n");
list_for_each_entry(child, &field->children, siblings) {
json_format(child, level + 1, child == last);
}
indent(level);
printf ("]%c\n", is_last ? ' ' : ',');
}
static
void json_format_object(struct json_field *field, int level, bool is_last)
{
struct json_field *child;
struct json_field *last;
if (field->type != JSON_OBJECT)
return;
last = list_last_entry_or_null(&field->children, struct json_field,
siblings);
indent(level);
if (field->name) {
print_json_quoted_string(field->name);
printf(": ");
}
printf ("{\n");
list_for_each_entry(child, &field->children, siblings) {
json_format(child, level + 1, child == last);
}
indent(level);
printf ("}%c\n", is_last ? ' ' : ',');
}
static
void json_format(struct json_field *field, int level, bool is_last)
{
switch (field->type) {
case JSON_OBJECT:
json_format_object(field, level, is_last);
break;
case JSON_STRING:
json_format_string(field, level, is_last);
break;
case JSON_ARRAY:
json_format_array(field, level, is_last);
break;
default:
printf("unhandled type: %d\n", field->type);
}
}
static
void json_add_string_field(struct json_field *object,
const char *name, const char *value)
{
if (!value)
return;
struct json_field *field = xmalloc(sizeof(struct json_field));
field->name = name;
field->type = JSON_STRING;
field->u.string_value = value;
list_add_tail(&field->siblings, &object->children);
}
static
void account_to_json_field(struct account *account, struct json_field *obj)
{
obj->name = NULL;
obj->type = JSON_OBJECT;
json_add_string_field(obj, "id", account->id);
json_add_string_field(obj, "name", account->name);
json_add_string_field(obj, "fullname", account->fullname);
json_add_string_field(obj, "username", account->username);
json_add_string_field(obj, "password", account->password);
json_add_string_field(obj, "last_modified_gmt", account->last_modified_gmt);
json_add_string_field(obj, "last_touch", account->last_touch);
if (account->share)
json_add_string_field(obj, "share", account->share->name);
json_add_string_field(obj, "group", account->group);
json_add_string_field(obj, "url", account->url);
json_add_string_field(obj, "note", account->note);
}
static void json_free_account_fields(struct json_field *obj)
{
struct json_field *field, *tmp;
list_for_each_entry_safe(field, tmp, &obj->children, siblings) {
free(field);
}
}
void json_format_account_list(struct list_head *accounts)
{
struct account *account;
struct json_field *child, *tmp;
struct json_field array = {
.type = JSON_ARRAY
};
INIT_LIST_HEAD(&array.children);
list_for_each_entry(account, accounts, match_list) {
struct json_field *object = xmalloc(sizeof(*object));
object->name = NULL;
object->type = JSON_OBJECT;
INIT_LIST_HEAD(&object->children);
account_to_json_field(account, object);
list_add_tail(&object->siblings, &array.children);
}
json_format(&array, 0, true);
list_for_each_entry_safe(child, tmp, &array.children, siblings) {
json_free_account_fields(child);
free(child);
}
}
|