-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathPersistentCognitoIdentityProvider_JsonFileImpl.cpp
310 lines (269 loc) · 9.5 KB
/
PersistentCognitoIdentityProvider_JsonFileImpl.cpp
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/identity-management/auth/PersistentCognitoIdentityProvider.h>
#include <aws/core/platform/FileSystem.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <aws/core/utils/logging/LogMacros.h>
#include <fstream>
using namespace Aws::Auth;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
static const char* IDENTITY_ID = "IdentityId";
static const char* LOGINS = "Logins";
static const char* ACCESS_TOKEN = "AccessToken";
static const char* LONG_TERM_TOKEN = "LongTermToken";
static const char* EXPIRY = "Expiry";
static const char* FILENAME = ".identities";
static const char* DIR = ".aws";
static const char* LOG_TAG = "PersistentCognitoIdentityProvider_JsonFileImpl";
PersistentCognitoIdentityProvider_JsonFileImpl::PersistentCognitoIdentityProvider_JsonFileImpl(const Aws::String& identityPoolId, const Aws::String& accountId, bool disableCaching) :
m_identityPoolId(identityPoolId),
m_accountId(accountId),
m_disableCaching(disableCaching)
{
Aws::String identitiesDir = Aws::FileSystem::GetHomeDirectory() + DIR;
if (Aws::FileSystem::CreateDirectoryIfNotExists(identitiesDir.c_str()))
{
m_identityFilePath = identitiesDir + Aws::FileSystem::PATH_DELIM + FILENAME;
}
if(!m_disableCaching)
{
LoadAndParseDoc();
}
}
PersistentCognitoIdentityProvider_JsonFileImpl::PersistentCognitoIdentityProvider_JsonFileImpl(const Aws::String& identityPoolId, bool disableCaching) :
m_identityPoolId(identityPoolId),
m_disableCaching(disableCaching)
{
Aws::String identitiesDir = Aws::FileSystem::GetHomeDirectory() + DIR;
if (Aws::FileSystem::CreateDirectoryIfNotExists(identitiesDir.c_str()))
{
m_identityFilePath = identitiesDir + Aws::FileSystem::PATH_DELIM + FILENAME;
}
if(!m_disableCaching)
{
LoadAndParseDoc();
}
}
PersistentCognitoIdentityProvider_JsonFileImpl::PersistentCognitoIdentityProvider_JsonFileImpl(const Aws::String& identityPoolId,
const Aws::String& accountId,
const char* identitiesFilePath,
bool disableCaching) :
m_identityPoolId(identityPoolId),
m_accountId(accountId),
m_identityFilePath(identitiesFilePath),
m_disableCaching(disableCaching)
{
if(!m_disableCaching)
{
LoadAndParseDoc();
}
}
void PersistentCognitoIdentityProvider_JsonFileImpl::PersistIdentityId(const Aws::String& identityId)
{
{
std::lock_guard<std::mutex> locker(m_docMutex);
m_identityId = identityId;
auto jsonDoc = LoadJsonDocFromFile();
JsonValue identityNode;
if (jsonDoc.View().ValueExists(m_identityPoolId))
{
identityNode = jsonDoc.View().GetObject(m_identityPoolId).Materialize();
}
identityNode.WithString(IDENTITY_ID, m_identityId);
jsonDoc.WithObject(m_identityPoolId, std::move(identityNode));
PersistChangesToFile(jsonDoc);
}
if (m_identityIdUpdatedCallback)
{
m_identityIdUpdatedCallback(*this);
}
}
void PersistentCognitoIdentityProvider_JsonFileImpl::PersistLogins(const Aws::Map<Aws::String, LoginAccessTokens>& logins)
{
{
std::lock_guard<std::mutex> locker(m_docMutex);
m_logins = logins;
auto jsonDoc = LoadJsonDocFromFile();
JsonValue identityNode;
if (jsonDoc.View().ValueExists(m_identityPoolId))
{
identityNode = jsonDoc.View().GetObject(m_identityPoolId).Materialize();
}
JsonValue loginsNode;
for (auto& login : m_logins)
{
JsonValue loginNode;
loginNode.WithString(ACCESS_TOKEN, login.second.accessToken);
loginNode.WithString(LONG_TERM_TOKEN, login.second.longTermToken);
loginNode.WithInt64(EXPIRY, login.second.longTermTokenExpiry);
loginsNode.WithObject(login.first, std::move(loginNode));
}
identityNode.WithObject(LOGINS, loginsNode);
jsonDoc.WithObject(m_identityPoolId, std::move(identityNode));
PersistChangesToFile(jsonDoc);
}
if (m_loginsUpdatedCallback)
{
m_loginsUpdatedCallback(*this);
}
}
JsonValue PersistentCognitoIdentityProvider_JsonFileImpl::LoadJsonDocFromFile() const
{
std::ifstream infile(m_identityFilePath.c_str());
if (infile.is_open() && infile.good())
{
return JsonValue(infile);
}
else
{
AWS_LOGSTREAM_ERROR(LOG_TAG, "Failed reading from file " << m_identityFilePath);
}
return JsonValue();
}
void PersistentCognitoIdentityProvider_JsonFileImpl::PersistChangesToFile(const JsonValue& jsonValue) const
{
//the assumption here is that we've already created the directory by the time we make it here.
Aws::String identitiesFile = m_identityFilePath;
std::ofstream outfile(identitiesFile.c_str(), std::ios_base::trunc | std::ios_base::out);
if (outfile.is_open() && outfile.good())
{
outfile << jsonValue.View().WriteReadable();
outfile.flush();
outfile.close();
}
else
{
AWS_LOGSTREAM_ERROR(LOG_TAG, "Failed persisting changes to file.");
}
}
void PersistentCognitoIdentityProvider_JsonFileImpl::LoadAndParseDoc()
{
auto jsonDoc = LoadJsonDocFromFile();
auto docView = jsonDoc.View();
if (docView.ValueExists(m_identityPoolId))
{
auto identityNode = docView.GetObject(m_identityPoolId);
m_identityId = identityNode.GetString(IDENTITY_ID);
if (identityNode.ValueExists(LOGINS))
{
auto logins = identityNode.GetObject(LOGINS).GetAllObjects();
BuildLoginsMap(logins, m_logins);
}
}
}
bool PersistentCognitoIdentityProvider_JsonFileImpl::HasIdentityId() const
{
if(m_disableCaching)
{
auto jsonDoc = LoadJsonDocFromFile();
auto docView = jsonDoc.View();
if (docView.ValueExists(m_identityPoolId))
{
auto identityNode = docView.GetObject(m_identityPoolId);
return !identityNode.GetString(IDENTITY_ID).empty();
}
return false;
}
else
{
return !m_identityId.empty();
}
}
bool PersistentCognitoIdentityProvider_JsonFileImpl::HasLogins() const
{
if(m_disableCaching)
{
auto jsonDoc = LoadJsonDocFromFile();
auto docView = jsonDoc.View();
if (docView.ValueExists(m_identityPoolId))
{
auto identityNode = docView.GetObject(m_identityPoolId);
if (identityNode.ValueExists(LOGINS))
{
auto logins = identityNode.GetObject(LOGINS).GetAllObjects();
return logins.size() > 0;
}
}
return false;
}
else
{
return !m_logins.empty();
}
}
Aws::String PersistentCognitoIdentityProvider_JsonFileImpl::GetIdentityId() const
{
if(m_disableCaching)
{
auto jsonDoc = LoadJsonDocFromFile();
auto docView = jsonDoc.View();
if (docView.ValueExists(m_identityPoolId))
{
auto identityNode = docView.GetObject(m_identityPoolId);
return identityNode.GetString(IDENTITY_ID);
}
return "";
}
else
{
return m_identityId;
}
}
Aws::Map<Aws::String, LoginAccessTokens> PersistentCognitoIdentityProvider_JsonFileImpl::GetLogins()
{
if(m_disableCaching)
{
Aws::Map<Aws::String, LoginAccessTokens> logins;
auto jsonDoc = LoadJsonDocFromFile();
auto docView = jsonDoc.View();
if (docView.ValueExists(m_identityPoolId))
{
auto identityNode = docView.GetObject(m_identityPoolId);
if (identityNode.ValueExists(LOGINS))
{
auto loginsJsonMap = identityNode.GetObject(LOGINS).GetAllObjects();
BuildLoginsMap(loginsJsonMap, logins);
}
}
return logins;
}
else
{
return m_logins;
}
}
void PersistentCognitoIdentityProvider_JsonFileImpl::BuildLoginsMap(Aws::Map<Aws::String, Aws::Utils::Json::JsonView> loginJsonMap, Aws::Map<Aws::String, LoginAccessTokens>& logins)
{
for (auto& login : loginJsonMap)
{
auto& loginTokens = login.second;
LoginAccessTokens loginAccessTokens;
/*this block is for backwards compatibility with the previous implementation.
This used to be a string: string mapping, if access token is not a member,
then fallback and assign the value to the accessToken field. Now, next time
it will save it in the new format.*/
if(loginTokens.IsString())
{
loginAccessTokens.accessToken = loginTokens.AsString();
}
else
{
if (loginTokens.ValueExists(ACCESS_TOKEN))
{
loginAccessTokens.accessToken = loginTokens.GetString(ACCESS_TOKEN);
}
if (loginTokens.ValueExists(LONG_TERM_TOKEN))
{
loginAccessTokens.longTermToken = loginTokens.GetString(LONG_TERM_TOKEN);
}
if (loginTokens.ValueExists(EXPIRY))
{
loginAccessTokens.longTermTokenExpiry = loginTokens.GetInt64(EXPIRY);
}
}
logins[login.first] = loginAccessTokens;
}
}