aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/URLEncode.cpp
blob: cdf38dd26777b7deb6fae62273a810f6f8c86f37 (plain)
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
/* Copyright 2011, Range Networks, Inc. */

#include <URLEncode.h>
#include <string>
#include <string.h>
#include <ctype.h>

using namespace std;

//based on javascript encodeURIComponent()
string URLEncode(const string &c)
{
	static const char *digits = "01234567890ABCDEF";
	string retVal="";
	for (size_t i=0; i<c.length(); i++)
	{
		const char ch = c[i];
		if (isalnum(ch) || strchr("-_.!~'()",ch)) {
			retVal += ch;
		} else {
			retVal += '%';
			retVal += digits[(ch>>4) & 0x0f];
			retVal += digits[ch & 0x0f];
		}
	}
	return retVal;
}