FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
code.angularjs.org/1.0.2/angular-cookies.js at master · angular/code.angularjs.org · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Apr 17, 2025. It is now read-only.
angular
/
code.angularjs.org
Public archive
Notifications
You must be signed in to change notification settings
Fork
731
Star
149
Code
Issues
3
Pull requests
10
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
code.angularjs.org
/
1.0.2
/
angular-cookies.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
171 lines (151 loc) · 4.73 KB
Breadcrumbs
code.angularjs.org
/
1.0.2
/
angular-cookies.js
Copy path
File metadata and controls
171 lines (151 loc) · 4.73 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
170
171
/**
*
@license
AngularJS v1.0.2
* (c) 2010-2012 Google, Inc. http://angularjs.org
* License: MIT
*/
(
function
(
window
,
angular
,
undefined
)
{
'use strict'
;
/**
*
@ngdoc
overview
*
@name
ngCookies
*/
angular
.
module
(
'ngCookies'
,
[
'ng'
]
)
.
/**
*
@ngdoc
object
*
@name
ngCookies.$cookies
*
@requires
$browser
*
*
@description
* Provides read/write access to browser's cookies.
*
* Only a simple Object is exposed and by adding or removing properties to/from
* this object, new cookies are created/deleted at the end of current $eval.
*
*
@example
*/
factory
(
'$cookies'
,
[
'$rootScope'
,
'$browser'
,
function
(
$rootScope
,
$browser
)
{
var
cookies
=
{
}
,
lastCookies
=
{
}
,
lastBrowserCookies
,
runEval
=
false
,
copy
=
angular
.
copy
,
isUndefined
=
angular
.
isUndefined
;
//creates a poller fn that copies all cookies from the $browser to service & inits the service
$browser
.
addPollFn
(
function
(
)
{
var
currentCookies
=
$browser
.
cookies
(
)
;
if
(
lastBrowserCookies
!=
currentCookies
)
{
//relies on browser.cookies() impl
lastBrowserCookies
=
currentCookies
;
copy
(
currentCookies
,
lastCookies
)
;
copy
(
currentCookies
,
cookies
)
;
if
(
runEval
)
$rootScope
.
$apply
(
)
;
}
}
)
(
)
;
runEval
=
true
;
//at the end of each eval, push cookies
//TODO: this should happen before the "delayed" watches fire, because if some cookies are not
// strings or browser refuses to store some cookies, we update the model in the push fn.
$rootScope
.
$watch
(
push
)
;
return
cookies
;
/**
* Pushes all the cookies from the service to the browser and verifies if all cookies were stored.
*/
function
push
(
)
{
var
name
,
value
,
browserCookies
,
updated
;
//delete any cookies deleted in $cookies
for
(
name
in
lastCookies
)
{
if
(
isUndefined
(
cookies
[
name
]
)
)
{
$browser
.
cookies
(
name
,
undefined
)
;
}
}
//update all cookies updated in $cookies
for
(
name
in
cookies
)
{
value
=
cookies
[
name
]
;
if
(
!
angular
.
isString
(
value
)
)
{
if
(
angular
.
isDefined
(
lastCookies
[
name
]
)
)
{
cookies
[
name
]
=
lastCookies
[
name
]
;
}
else
{
delete
cookies
[
name
]
;
}
}
else
if
(
value
!==
lastCookies
[
name
]
)
{
$browser
.
cookies
(
name
,
value
)
;
updated
=
true
;
}
}
//verify what was actually stored
if
(
updated
)
{
updated
=
false
;
browserCookies
=
$browser
.
cookies
(
)
;
for
(
name
in
cookies
)
{
if
(
cookies
[
name
]
!==
browserCookies
[
name
]
)
{
//delete or reset all cookies that the browser dropped from $cookies
if
(
isUndefined
(
browserCookies
[
name
]
)
)
{
delete
cookies
[
name
]
;
}
else
{
cookies
[
name
]
=
browserCookies
[
name
]
;
}
updated
=
true
;
}
}
}
}
}
]
)
.
/**
*
@ngdoc
object
*
@name
ngCookies.$cookieStore
*
@requires
$cookies
*
*
@description
* Provides a key-value (string-object) storage, that is backed by session cookies.
* Objects put or retrieved from this storage are automatically serialized or
* deserialized by angular's toJson/fromJson.
*
@example
*/
factory
(
'$cookieStore'
,
[
'$cookies'
,
function
(
$cookies
)
{
return
{
/**
*
@ngdoc
method
*
@name
ngCookies.$cookieStore#get
*
@methodOf
ngCookies.$cookieStore
*
*
@description
* Returns the value of given cookie key
*
*
@param
{
string
} key Id to use for lookup.
*
@returns
{
Object
} Deserialized cookie value.
*/
get
:
function
(
key
)
{
return
angular
.
fromJson
(
$cookies
[
key
]
)
;
}
,
/**
*
@ngdoc
method
*
@name
ngCookies.$cookieStore#put
*
@methodOf
ngCookies.$cookieStore
*
*
@description
* Sets a value for given cookie key
*
*
@param
{
string
} key Id for the `value`.
*
@param
{
Object
} value Value to be stored.
*/
put
:
function
(
key
,
value
)
{
$cookies
[
key
]
=
angular
.
toJson
(
value
)
;
}
,
/**
*
@ngdoc
method
*
@name
ngCookies.$cookieStore#remove
*
@methodOf
ngCookies.$cookieStore
*
*
@description
* Remove given cookie
*
*
@param
{
string
} key Id of the key-value pair to delete.
*/
remove
:
function
(
key
)
{
delete
$cookies
[
key
]
;
}
}
;
}
]
)
;
}
)
(
window
,
window
.
angular
)
;
Back
|
FazBrowse Home
|
New Git URL