summary refs log tree commit diff stats
path: root/normalize.c
blob: f8e8dbe288dd18d9888e856900010217f2485f24 (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
#include <ctype.h>
#include <stdlib.h>
#include <string.h>

#include "yuri.h"

static int
_eat(struct uri *u, int index)
{
	int i;
	char **path;

	free(u->path[index]);
	for (i = index+1; i < u->npath; i++)
		u->path[i-1] = u->path[i];
	u->npath--;

	if (u->npath == 0) {
		free(u->path);
		u->path = NULL;
	} else {
		path = realloc(u->path, sizeof(*u->path)*u->npath);
		if (path == NULL)
			return -1;
		u->path = path;
	}

	return 0;
}

int
uri_normalize(struct uri *u)
{
	int i;

	if (u->scheme) {
		for (i = 0; i < strlen(u->scheme); i++) {
			if (isalpha(u->scheme[i]))
				u->scheme[i] = tolower(u->scheme[i]);
		}
	}

	if (u->authority.host) {
		for (i = 0; i < strlen(u->authority.host); i++) {
			if (isalpha(u->authority.host[i]))
				u->authority.host[i] = tolower(u->authority.host[i]);
		}
	}

	for (i = 0; i < u->npath; i++) {
		if (strcmp(u->path[i], ".") == 0) {
			if (_eat(u, i) == -1)
				return -1;
		}
		if (strcmp(u->path[i], "..") == 0) {
			if (u->npath >= 2 && i-1 >= 0) {
				if (_eat(u, i-1) == -1)
					return -1;
				if (_eat(u, i-1) == -1)
					return -1;
			}
		}
	}

	return 0;
}