Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit f0172a2

Browse files
committed
base.ts - Renamed fields and added comments to IPermissionScope.
auth.ts - Removed setting of the scope.requested field. That value is UI driven. scopes-dialog.component - Removed setScopesEnabledTarget, no longer used. Renamed fields on IPermissionScope. Properly filter the set of requested scopes
1 parent 2e70311 commit f0172a2

File tree

4 files changed

+57
-44
lines changed

4 files changed

+57
-44
lines changed

src/app/authentication/auth.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ export function initAuth(options: IExplorerOptions, apiService: GraphService, ch
9090
const scopes = getScopes();
9191
scopes.push('openid');
9292
for (const scope of PermissionScopes) {
93-
scope.enabled = scope.enabledTarget = scopes.indexOf(scope.name.toLowerCase()) !== -1;
93+
// scope.consented indicates that the user or admin has previously consented to the scope.
94+
scope.consented = scopes.indexOf(scope.name.toLowerCase()) !== -1;
9495
}
9596
}
9697
});
@@ -190,7 +191,7 @@ export function haveValidAccessToken(): boolean {
190191
return session && session.access_token && session.expires > currentTime;
191192
}
192193

193-
window['tokenPlease'] = function() {
194+
window['tokenPlease'] = function () {
194195
const authResponse = hello('msft').getAuthResponse();
195196
if (authResponse) {
196197
return authResponse.access_token;

src/app/base.ts

+32-12
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,39 @@ export type AuthenticationStatus = 'anonymous' | 'authenticating' | 'authenticat
3232

3333
export type RequestType = 'GET' | 'PUT' | 'POST' | 'GET_BINARY' | 'POST' | 'PATCH' | 'DELETE';
3434

35+
/***
36+
* Represents a scope.
37+
*/
3538
export interface IPermissionScope {
36-
name: string;
37-
description: string;
38-
longDescription: string;
39-
preview: boolean;
40-
admin: boolean;
41-
42-
enabled?: boolean;
43-
44-
/**
45-
* Used in the scopes dialog for checking/unchecking before scope is actually enabled in the token.
46-
*/
47-
enabledTarget?: boolean;
39+
/**
40+
* The scope name.
41+
*/
42+
name: string;
43+
/**
44+
* A short description of the scope.
45+
*/
46+
description: string;
47+
/**
48+
* A long description of the scope.
49+
*/
50+
longDescription: string;
51+
/**
52+
* Specifies whether the scope is currently in preview.
53+
*/
54+
preview: boolean;
55+
/**
56+
* Specifies whether the property is only consent-able via admin consent.
57+
*/
58+
admin: boolean;
59+
/**
60+
* Specifies whether the user has already consented to the scope.
61+
*/
62+
consented?: boolean;
63+
/**
64+
* Specifies whether the user wants to request this scope. Used in the scopes
65+
* dialog for checking/unchecking before scope is actually enabled in the token.
66+
*/
67+
requested?: boolean;
4868
}
4969

5070
export interface IGraphApiCall {

src/app/scopes-dialog/scopes-dialog.component.html

+8-9
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,17 @@
1414
<td class="scopeRow">
1515
<div class="c-checkbox">
1616
<label class="c-label">
17-
<input
18-
type="checkbox"
19-
[disabled]="scope.enabled"
20-
(change)="toggleScopeEnabled(scope)"
21-
name="checkboxId1"
22-
value="value1"
17+
<!-- scope.consented indicates that the user or admin has previously consented to the scope.-->
18+
<input type="checkbox"
19+
[disabled]="scope.consented"
20+
(change)="toggleRequestScope(scope)"
21+
name="checkboxId1"
22+
value="value1"
2323
[attr.aria-label]="getScopeLabel(scope.name)"
2424
[tabindex]=""
25-
>
26-
25+
>
2726
<span aria-hidden="true" [title]="scope.description">{{scope.name}}
28-
<i class="consented-label" *ngIf="scope.enabled">{{getStr('Consented')}}</i>
27+
<i class="consented-label" *ngIf="scope.consented">{{getStr('Consented')}}</i>
2928
<i class="preview-label" *ngIf="scope.preview">{{getStr('Preview')}}</i>
3029
</span>
3130
</label>

src/app/scopes-dialog/scopes-dialog.component.ts

+14-21
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
5454

5555
public ngAfterViewInit(): void {
5656
this.sortScopesList();
57-
ScopesDialogComponent.setScopesEnabledTarget();
5857
(window as any).launchPermissionsDialog = ScopesDialogComponent.showDialog;
5958
this.scopesListTableHeight = window
6059
.getComputedStyle(this.scopesTableList.nativeElement, null).getPropertyValue('height');
@@ -75,7 +74,7 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
7574
public scopeListIsDirty(): boolean {
7675

7776
// Determine whether the scope list has changed. The scope list has changed if isDirty = true.
78-
const isDirty = PermissionScopes.filter((s) => s.enabled !== s.enabledTarget).length > 0;
77+
const isDirty = PermissionScopes.filter((s) => s.requested === true).length > 0;
7978

8079
// Reduce the size of the scopes table list by the size of the message bar. We only want to make this
8180
// Change the first time that the selected scope list is changed.
@@ -104,9 +103,9 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
104103
*/
105104
public requestingAdminScopes(): boolean {
106105

107-
// Determine whether a scope that requires admin consent has been selected. An admin consent scope has been
106+
// Determine whether a scope that requires admin consent has been requested. An admin consent scope has been
108107
// Selected if isDirty = true.
109-
const isDirty = PermissionScopes.filter((s) => s.admin && s.enabledTarget).length > 0;
108+
const isDirty = PermissionScopes.filter((s) => s.admin && s.requested).length > 0;
110109

111110
// Reduce the size of the scopes table list by the size of the message bar. We only want to make this
112111
// Change the first time that the selected scope list is changed.
@@ -132,18 +131,18 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
132131
}
133132

134133
/**
135-
* Toggles whether the scope has been targeted to be enabled. This will be used to determine whether we
136-
* need to request consent for this scope.
134+
* Toggles whether the scope will be requested. This occurs in the Modify Permissions UI by selecting a checkbox.
135+
* This will be used to determine whether we will request consent for this scope.
137136
* @param scope The scope to toggle its enabled state.
138137
*/
139-
public toggleScopeEnabled(scope: IPermissionScope) {
140-
scope.enabledTarget = !scope.enabledTarget;
138+
public toggleRequestScope(scope: IPermissionScope) {
139+
scope.requested = !scope.requested;
141140

142141
// Track whether we have any admin scopes selected in the UI to be enabled for the user.
143-
if (scope.admin && scope.enabledTarget) {
142+
if (scope.admin && scope.requested) {
144143
this.selectedTargetedAdminScopes.push(scope);
145144
this.hasSelectedAdminScope = true;
146-
} else if (scope.admin && !scope.enabledTarget) {
145+
} else if (scope.admin && !scope.requested) {
147146
this.selectedTargetedAdminScopes = this.selectedTargetedAdminScopes.filter((e) => e !== scope);
148147
if (this.selectedTargetedAdminScopes.length === 0) {
149148
this.hasSelectedAdminScope = false;
@@ -169,15 +168,17 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
169168
response_type: 'token',
170169
nonce: 'graph_explorer',
171170
prompt: 'select_account',
172-
// This, login_hint: AppComponent.explorerValues.authentication.user.emailAddress, // breaks MSA login
173-
scope: PermissionScopes.filter((scope) => scope.enabledTarget).map((scope) => scope.name).join(' '),
171+
/* Login hint not applied via AppComponent.explorerValues.authentication.user.emailAddress
172+
/* as it breaks MSA login. */
173+
scope: PermissionScopes.filter((scope) => scope.requested && !scope.consented)
174+
.map((scope) => scope.name)
175+
.join(' '),
174176
};
175177

176178
hello('msft').login(loginProperties);
177179
}
178180

179181
public static showDialog() { // tslint:disable-line
180-
ScopesDialogComponent.setScopesEnabledTarget();
181182

182183
const el = document.querySelector('#scopes-dialog');
183184
const fabricDialog = new fabric.Dialog(el);
@@ -187,12 +188,4 @@ export class ScopesDialogComponent extends GraphExplorerComponent implements Aft
187188
component: mwf.Checkbox,
188189
}]);
189190
}
190-
191-
public static setScopesEnabledTarget() { // tslint:disable-line
192-
// Populate enabledTarget
193-
for (const scope of PermissionScopes) {
194-
scope.enabledTarget = scope.enabled;
195-
}
196-
}
197-
198191
}

0 commit comments

Comments
 (0)