forked from FormidableLabs/react-native-app-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
162 lines (145 loc) · 4.68 KB
/
App.js
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
import React, { useState, useCallback, useMemo } from 'react';
import { UIManager, Alert } from 'react-native';
import { authorize, refresh, revoke, prefetchConfiguration } from 'react-native-app-auth';
import { Page, Button, ButtonContainer, Form, FormLabel, FormValue, Heading } from './components';
const configs = {
identityserver: {
issuer: 'https://demo.identityserver.io',
clientId: 'interactive.public',
redirectUrl: 'io.identityserver.demo:/oauthredirect',
additionalParameters: {},
scopes: ['openid', 'profile', 'email', 'offline_access'],
// serviceConfiguration: {
// authorizationEndpoint: 'https://demo.identityserver.io/connect/authorize',
// tokenEndpoint: 'https://demo.identityserver.io/connect/token',
// revocationEndpoint: 'https://demo.identityserver.io/connect/revoke'
// }
},
auth0: {
// From https://openidconnect.net/
issuer: 'https://samples.auth0.com',
clientId: 'kbyuFDidLLm280LIwVFiazOqjO3ty8KH',
redirectUrl: 'https://openidconnect.net/callback',
additionalParameters: {},
scopes: ['openid', 'profile', 'email', 'phone', 'address'],
// serviceConfiguration: {
// authorizationEndpoint: 'https://samples.auth0.com/authorize',
// tokenEndpoint: 'https://samples.auth0.com/oauth/token',
// revocationEndpoint: 'https://samples.auth0.com/oauth/revoke'
// }
}
};
const defaultAuthState = {
hasLoggedInOnce: false,
provider: '',
accessToken: '',
accessTokenExpirationDate: '',
refreshToken: ''
};
const App = () => {
const [authState, setAuthState] = useState(defaultAuthState);
React.useEffect(() => {
prefetchConfiguration({
warmAndPrefetchChrome: true,
...configs.identityserver
});
}, []);
const handleAuthorize = useCallback(
async provider => {
try {
const config = configs[provider];
const newAuthState = await authorize(config);
setAuthState({
hasLoggedInOnce: true,
provider: provider,
...newAuthState
});
} catch (error) {
Alert.alert('Failed to log in', error.message);
}
},
[authState]
);
const handleRefresh = useCallback(async () => {
try {
const config = configs[authState.provider];
const newAuthState = await refresh(config, {
refreshToken: authState.refreshToken
});
setAuthState(current => ({
...current,
...newAuthState,
refreshToken: newAuthState.refreshToken || current.refreshToken
}))
} catch (error) {
Alert.alert('Failed to refresh token', error.message);
}
}, [authState]);
const handleRevoke = useCallback(async () => {
try {
const config = configs[authState.provider];
await revoke(config, {
tokenToRevoke: authState.accessToken,
sendClientId: true
});
setAuthState({
provider: '',
accessToken: '',
accessTokenExpirationDate: '',
refreshToken: ''
});
} catch (error) {
Alert.alert('Failed to revoke token', error.message);
}
}, [authState]);
const showRevoke = useMemo(() => {
if (authState.accessToken) {
const config = configs[authState.provider];
if (config.issuer || config.serviceConfiguration.revocationEndpoint) {
return true;
}
}
return false;
}, [authState]);
return (
<Page>
{!!authState.accessToken ? (
<Form>
<FormLabel>accessToken</FormLabel>
<FormValue>{authState.accessToken}</FormValue>
<FormLabel>accessTokenExpirationDate</FormLabel>
<FormValue>{authState.accessTokenExpirationDate}</FormValue>
<FormLabel>refreshToken</FormLabel>
<FormValue>{authState.refreshToken}</FormValue>
<FormLabel>scopes</FormLabel>
<FormValue>{authState.scopes.join(', ')}</FormValue>
</Form>
) : (
<Heading>{authState.hasLoggedInOnce ? 'Goodbye.' : 'Hello, stranger.'}</Heading>
)}
<ButtonContainer>
{!authState.accessToken ? (
<>
<Button
onPress={() => handleAuthorize('identityserver')}
text="Authorize IdentityServer"
color="#DA2536"
/>
<Button
onPress={() => handleAuthorize('auth0')}
text="Authorize Auth0"
color="#DA2536"
/>
</>
) : null}
{!!authState.refreshToken ? (
<Button onPress={handleRefresh} text="Refresh" color="#24C2CB" />
) : null}
{showRevoke ? (
<Button onPress={handleRevoke} text="Revoke" color="#EF525B" />
) : null}
</ButtonContainer>
</Page>
);
}
export default App;