Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
JSON-java/Cookie.java at master · SooLFaa/JSON-java · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
SooLFaa
/
JSON-java
Public
forked from
stleary/JSON-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
JSON-java
/
Cookie.java
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
executable file
·
169 lines (156 loc) · 6.38 KB
master
Breadcrumbs
JSON-java
/
Cookie.java
Copy path
Top
File metadata and controls
Code
Blame
executable file
·
169 lines (156 loc) · 6.38 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package
org
.
json
;
/*
Copyright (c) 2002 JSON.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/**
* Convert a web browser cookie specification to a JSONObject and back.
* JSON and Cookies are both notations for name/value pairs.
* @author JSON.org
* @version 2014-05-03
*/
public
class
Cookie
{
/**
* Produce a copy of a string in which the characters '+', '%', '=', ';'
* and control characters are replaced with "%hh". This is a gentle form
* of URL encoding, attempting to cause as little distortion to the
* string as possible. The characters '=' and ';' are meta characters in
* cookies. By convention, they are escaped using the URL-encoding. This is
* only a convention, not a standard. Often, cookies are expected to have
* encoded values. We encode '=' and ';' because we must. We encode '%' and
* '+' because they are meta characters in URL encoding.
* @param string The source string.
* @return The escaped result.
*/
public
static
String
escape
(
String
string
) {
char
c
;
String
s
=
string
.
trim
();
int
length
=
s
.
length
();
StringBuilder
sb
=
new
StringBuilder
(
length
);
for
(
int
i
=
0
;
i
<
length
;
i
+=
1
) {
c
=
s
.
charAt
(
i
);
if
(
c
<
' '
||
c
==
'+'
||
c
==
'%'
||
c
==
'='
||
c
==
';'
) {
sb
.
append
(
'%'
);
sb
.
append
(
Character
.
forDigit
((
char
)((
c
>>>
4
) &
0x0f
),
16
));
sb
.
append
(
Character
.
forDigit
((
char
)(
c
&
0x0f
),
16
));
}
else
{
sb
.
append
(
c
);
}
}
return
sb
.
toString
();
}
/**
* Convert a cookie specification string into a JSONObject. The string
* will contain a name value pair separated by '='. The name and the value
* will be unescaped, possibly converting '+' and '%' sequences. The
* cookie properties may follow, separated by ';', also represented as
* name=value (except the secure property, which does not have a value).
* The name will be stored under the key "name", and the value will be
* stored under the key "value". This method does not do checking or
* validation of the parameters. It only converts the cookie string into
* a JSONObject.
* @param string The cookie specification string.
* @return A JSONObject containing "name", "value", and possibly other
* members.
* @throws JSONException
*/
public
static
JSONObject
toJSONObject
(
String
string
)
throws
JSONException
{
String
name
;
JSONObject
jo
=
new
JSONObject
();
Object
value
;
JSONTokener
x
=
new
JSONTokener
(
string
);
jo
.
put
(
"name"
,
x
.
nextTo
(
'='
));
x
.
next
(
'='
);
jo
.
put
(
"value"
,
x
.
nextTo
(
';'
));
x
.
next
();
while
(
x
.
more
()) {
name
=
unescape
(
x
.
nextTo
(
"=;"
));
if
(
x
.
next
() !=
'='
) {
if
(
name
.
equals
(
"secure"
)) {
value
=
Boolean
.
TRUE
;
}
else
{
throw
x
.
syntaxError
(
"Missing '=' in cookie parameter."
);
}
}
else
{
value
=
unescape
(
x
.
nextTo
(
';'
));
x
.
next
();
}
jo
.
put
(
name
,
value
);
}
return
jo
;
}
/**
* Convert a JSONObject into a cookie specification string. The JSONObject
* must contain "name" and "value" members.
* If the JSONObject contains "expires", "domain", "path", or "secure"
* members, they will be appended to the cookie specification string.
* All other members are ignored.
* @param jo A JSONObject
* @return A cookie specification string
* @throws JSONException
*/
public
static
String
toString
(
JSONObject
jo
)
throws
JSONException
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
escape
(
jo
.
getString
(
"name"
)));
sb
.
append
(
"="
);
sb
.
append
(
escape
(
jo
.
getString
(
"value"
)));
if
(
jo
.
has
(
"expires"
)) {
sb
.
append
(
";expires="
);
sb
.
append
(
jo
.
getString
(
"expires"
));
}
if
(
jo
.
has
(
"domain"
)) {
sb
.
append
(
";domain="
);
sb
.
append
(
escape
(
jo
.
getString
(
"domain"
)));
}
if
(
jo
.
has
(
"path"
)) {
sb
.
append
(
";path="
);
sb
.
append
(
escape
(
jo
.
getString
(
"path"
)));
}
if
(
jo
.
optBoolean
(
"secure"
)) {
sb
.
append
(
";secure"
);
}
return
sb
.
toString
();
}
/**
* Convert <code>%</code><i>hh</i> sequences to single characters, and
* convert plus to space.
* @param string A string that may contain
* <code>+</code> <small>(plus)</small> and
* <code>%</code><i>hh</i> sequences.
* @return The unescaped string.
*/
public
static
String
unescape
(
String
string
) {
int
length
=
string
.
length
();
StringBuilder
sb
=
new
StringBuilder
(
length
);
for
(
int
i
=
0
;
i
<
length
; ++
i
) {
char
c
=
string
.
charAt
(
i
);
if
(
c
==
'+'
) {
c
=
' '
;
}
else
if
(
c
==
'%'
&&
i
+
2
<
length
) {
int
d
=
JSONTokener
.
dehexchar
(
string
.
charAt
(
i
+
1
));
int
e
=
JSONTokener
.
dehexchar
(
string
.
charAt
(
i
+
2
));
if
(
d
>=
0
&&
e
>=
0
) {
c
= (
char
)(
d
*
16
+
e
);
i
+=
2
;
}
}
sb
.
append
(
c
);
}
return
sb
.
toString
();
}
}
You can’t perform that action at this time.