Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
0e8e035f
Commit
0e8e035f
authored
Feb 08, 2017
by
Robert Knight
Committed by
GitHub
Feb 08, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #216 from hypothesis/dont-delete-cached-oauth-access-token
Don't delete cached OAuth access token
parents
480e1bae
dbf5d781
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
18 deletions
+29
-18
oauth-auth.js
src/sidebar/oauth-auth.js
+4
-1
session.js
src/sidebar/session.js
+14
-5
oauth-auth-test.js
src/sidebar/test/oauth-auth-test.js
+0
-12
session-test.js
src/sidebar/test/session-test.js
+11
-0
No files found.
src/sidebar/oauth-auth.js
View file @
0e8e035f
...
@@ -59,8 +59,11 @@ function auth($http, settings) {
...
@@ -59,8 +59,11 @@ function auth($http, settings) {
}
}
}
}
// clearCache() isn't implemented (or needed) yet for OAuth.
// In the future, for example when OAuth-authenticated users can login and
// logout of the client, this clearCache() will need to clear the access
// token and cancel any scheduled refresh token requests.
function
clearCache
()
{
function
clearCache
()
{
cachedToken
=
null
;
}
}
return
{
return
{
...
...
src/sidebar/session.js
View file @
0e8e035f
...
@@ -59,6 +59,16 @@ function session($http, $resource, $rootScope, annotationUI, auth,
...
@@ -59,6 +59,16 @@ function session($http, $resource, $rootScope, annotationUI, auth,
var
lastLoad
;
var
lastLoad
;
var
lastLoadTime
;
var
lastLoadTime
;
// Return the authority from the first service defined in the settings.
// Return null if there are no services defined in the settings.
function
getAuthority
()
{
if
(
Array
.
isArray
(
settings
.
services
)
&&
settings
.
services
.
length
>
0
)
{
return
settings
.
services
[
0
].
authority
;
}
return
null
;
}
/**
/**
* @name session.load()
* @name session.load()
* @description Fetches the session data from the server.
* @description Fetches the session data from the server.
...
@@ -79,10 +89,7 @@ function session($http, $resource, $rootScope, annotationUI, auth,
...
@@ -79,10 +89,7 @@ function session($http, $resource, $rootScope, annotationUI, auth,
// the /app endpoint.
// the /app endpoint.
lastLoadTime
=
Date
.
now
();
lastLoadTime
=
Date
.
now
();
lastLoad
=
retryUtil
.
retryPromiseOperation
(
function
()
{
lastLoad
=
retryUtil
.
retryPromiseOperation
(
function
()
{
var
authority
;
var
authority
=
getAuthority
();
if
(
Array
.
isArray
(
settings
.
services
)
&&
settings
.
services
.
length
>
0
)
{
authority
=
settings
.
services
[
0
].
authority
;
}
if
(
authority
)
{
if
(
authority
)
{
return
store
.
profile
.
read
({
authority
:
authority
}).
then
(
update
);
return
store
.
profile
.
read
({
authority
:
authority
}).
then
(
update
);
}
else
{
}
else
{
...
@@ -138,7 +145,9 @@ function session($http, $resource, $rootScope, annotationUI, auth,
...
@@ -138,7 +145,9 @@ function session($http, $resource, $rootScope, annotationUI, auth,
lastLoadTime
=
Date
.
now
();
lastLoadTime
=
Date
.
now
();
if
(
userChanged
)
{
if
(
userChanged
)
{
if
(
!
getAuthority
())
{
auth
.
clearCache
();
auth
.
clearCache
();
}
$rootScope
.
$broadcast
(
events
.
USER_CHANGED
,
{
$rootScope
.
$broadcast
(
events
.
USER_CHANGED
,
{
initialLoad
:
isInitialLoad
,
initialLoad
:
isInitialLoad
,
...
...
src/sidebar/test/oauth-auth-test.js
View file @
0e8e035f
...
@@ -90,16 +90,4 @@ describe('oauth auth', function () {
...
@@ -90,16 +90,4 @@ describe('oauth auth', function () {
});
});
});
});
});
});
describe
(
'#clearCache'
,
function
()
{
it
(
'should clear cached tokens'
,
function
()
{
return
auth
.
tokenGetter
().
then
(
function
()
{
fakeHttp
.
post
.
reset
();
auth
.
clearCache
();
return
auth
.
tokenGetter
();
}).
then
(
function
()
{
assert
.
calledOnce
(
fakeHttp
.
post
);
});
});
});
});
});
src/sidebar/test/session-test.js
View file @
0e8e035f
...
@@ -263,6 +263,17 @@ describe('session', function () {
...
@@ -263,6 +263,17 @@ describe('session', function () {
id
:
'anne'
,
id
:
'anne'
,
});
});
});
});
it
(
'does not clear the access token when the host page provides a grant token'
,
function
()
{
fakeSettings
.
services
=
[{
authority
:
'publisher.org'
,
grantToken
:
'a.jwt.token'
,
}];
session
.
update
({
userid
:
'different-user'
,
csrf
:
'dummytoken'
});
assert
.
notCalled
(
fakeAuth
.
clearCache
);
});
});
});
describe
(
'#dismissSidebarTutorial()'
,
function
()
{
describe
(
'#dismissSidebarTutorial()'
,
function
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment