Skip to content

Instantly share code, notes, and snippets.

@SpringMT
Created November 25, 2019 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SpringMT/8c4d5d590b44080cf2b1691104c1bbc3 to your computer and use it in GitHub Desktop.
Save SpringMT/8c4d5d590b44080cf2b1691104c1bbc3 to your computer and use it in GitHub Desktop.
85,88c85,132
< /*
< * Implement the UserInfo Endpoint
< */
<
---
> if (!__.contains(req.access_token.scope, 'openid')) {
> res.status(403).end();
> return;
> }
>
> var user = req.access_token.user;
> if (!user) {
> res.status(404).end();
> return;
> }
>
> var out = {};
> __.each(req.access_token.scope, function (scope) {
> if (scope == 'openid') {
> __.each(['sub'], function(claim) {
> if (user[claim]) {
> out[claim] = user[claim];
> }
> });
> } else if (scope == 'profile') {
> __.each(['name', 'family_name', 'given_name', 'middle_name', 'nickname', 'preferred_username', 'profile', 'picture', 'website', 'gender', 'birthdate', 'zoneinfo', 'locale', 'updated_at'], function(claim) {
> if (user[claim]) {
> out[claim] = user[claim];
> }
> });
> } else if (scope == 'email') {
> __.each(['email', 'email_verified'], function(claim) {
> if (user[claim]) {
> out[claim] = user[claim];
> }
> });
> } else if (scope == 'address') {
> __.each(['address'], function(claim) {
> if (user[claim]) {
> out[claim] = user[claim];
> }
> });
> } else if (scope == 'phone') {
> __.each(['phone_number', 'phone_number_verified'], function(claim) {
> if (user[claim]) {
> out[claim] = user[claim];
> }
> });
> }
> });
>
> res.status(200).json(out);
> return;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment