This repository has been archived by the owner on Apr 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
add is memory token property to sessions #2004
Merged
vladikoff
merged 1 commit into
mozilla:master
from
udaraweerasinghege:add-last-sync-available-property-to-sessions
Jul 19, 2017
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -470,7 +470,8 @@ module.exports = ( | |
uaBrowserVersion: mergedInfo.uaBrowserVersion, | ||
uaOS: mergedInfo.uaOS, | ||
uaOSVersion: mergedInfo.uaOSVersion, | ||
uaDeviceType: mergedInfo.uaDeviceType | ||
uaDeviceType: mergedInfo.uaDeviceType, | ||
isMemoryToken: mergedInfo.isMemoryToken || false | ||
} | ||
}) | ||
}) | ||
|
@@ -526,7 +527,8 @@ module.exports = ( | |
uaOSVersion: token.uaOSVersion, | ||
uaDeviceType: token.uaDeviceType, | ||
lastAccessTime: token.lastAccessTime, | ||
createdAt: token.createdAt | ||
createdAt: token.createdAt, | ||
isMemoryToken: true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @udaraweerasinghege we also need to update the response schemas for /sessions and /devices, to handle this optional property. I'm hoping API.md will auto update with this |
||
}] | ||
let sessionTokens = [] | ||
// get the array of session tokens associated with the given uid | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With appologies for the late drive-by comment, this seems like it's piercing a layer of abstraction - it's taking an internal implementation detail of the server and exposing it in the API for consumption by the client. To display the correct information, the content-server needs to know that the auth-server sometimes stores tokens in redis, and that these tokens are the only ones that are up-to-date.
I wonder if a better abstraction here would involve us sending two separate timestamps:
lastAccessTime
: the value from redis, but it might benull
if we don't have a correct value to showcreatedTime
: the "started syncing" timestamp which we know we can always get from the dbThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah we had that idea earlier, but I Think @philbooth wanted to keep the fields from redis and mysql consistent (to avoid confusion, etc)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from mtg:
lastAccessTimeFormatted
- redis tokencreatedTimeFormatted
- created token