public async Task <AmlResult> PerformCheck(IHttpRequester httpRequester, IAmlProfile amlProfile, Dictionary <string, string> headers, string apiUrl, string endpoint, byte[] httpContent) { if (amlProfile == null) { throw new ArgumentNullException("amlProfile"); } try { HttpMethod httpMethod = HttpMethod.Post; Response response = await httpRequester.DoRequest( new HttpClient(), httpMethod, new Uri(apiUrl + endpoint), headers, httpContent); if (!response.Success) { CreateExceptionFromStatusCode(response); } var amlResult = Newtonsoft.Json.JsonConvert.DeserializeObject <AmlResult>(response.Content); return(amlResult); } catch (Exception ex) { if (ex is AmlException) { throw; } throw new AmlException( string.Format( "Inner exception:{0}{1}", Environment.NewLine, ex.Message), ex); } }
/// <summary> /// Asynchronously request a <see cref="ActivityDetails"/> using the encrypted token provided by yoti during the login process. /// </summary> /// <param name="encryptedToken">The encrypted returned by Yoti after successfully authenticating.</param> /// <returns>The account details of the logged in user as a <see cref="ActivityDetails"/>. </returns> public async Task <ActivityDetails> GetActivityDetailsAsync(string encryptedConnectToken, string sdkId, AsymmetricCipherKeyPair keyPair, string apiUrl) { string token = CryptoEngine.DecryptToken(encryptedConnectToken, keyPair); string path = "profile"; byte[] httpContent = null; HttpMethod httpMethod = HttpMethod.Get; string endpoint = EndpointFactory.CreateProfileEndpoint(httpMethod, path, token, sdkId); Dictionary <string, string> headers = CreateHeaders(keyPair, httpMethod, endpoint, httpContent, contentType: YotiConstants.ContentTypeJson); Response response = await _httpRequester.DoRequest( new HttpClient(), HttpMethod.Get, new Uri( apiUrl + endpoint), headers, httpContent); if (response.Success) { return(_activity.HandleSuccessfulResponse(keyPair, response)); } else { ActivityOutcome outcome = ActivityOutcome.Failure; switch (response.StatusCode) { case (int)HttpStatusCode.NotFound: { outcome = ActivityOutcome.ProfileNotFound; } break; } return(new ActivityDetails { Outcome = outcome }); } }
/// <summary> /// Asynchronously request a <see cref="ActivityDetails"/> using the encrypted token provided by yoti during the login process. /// </summary> /// <param name="encryptedToken">The encrypted returned by Yoti after successfully authenticating.</param> /// <returns>The account details of the logged in user as a <see cref="ActivityDetails"/>. </returns> public async Task <ActivityDetails> GetActivityDetailsAsync(string encryptedConnectToken, string sdkId, AsymmetricCipherKeyPair keyPair) { // query parameters var token = DecryptToken(encryptedConnectToken, keyPair); var nonce = CryptoEngine.GenerateNonce(); var timestamp = GetTimestamp(); // create http endpoint var endpoint = GetEndpoint(token, nonce, timestamp, sdkId); // create request headers var authKey = GetAuthKey(keyPair); var authDigest = GetAuthDigest(endpoint, keyPair); Dictionary <string, string> headers = new Dictionary <string, string>(); headers.Add("X-Yoti-Auth-Key", authKey); headers.Add("X-Yoti-Auth-Digest", authDigest); var response = await _httpRequester.DoRequest(new Uri(_apiUrl + endpoint), headers); if (response.Success) { var parsedResponse = JsonConvert.DeserializeObject <ProfileDO>(response.Content); if (parsedResponse.receipt == null) { return(new ActivityDetails { Outcome = ActivityOutcome.Failure }); } else if (parsedResponse.receipt.sharing_outcome != "SUCCESS") { return(new ActivityDetails { Outcome = ActivityOutcome.SharingFailure }); } else { var receipt = parsedResponse.receipt; var attributes = DecryptCurrentUserReceipt(parsedResponse.receipt, keyPair); var profile = new YotiUserProfile { Id = parsedResponse.receipt.remember_me_id }; foreach (var attribute in attributes.Attributes) { var data = attribute.Value.ToByteArray(); switch (attribute.Name) { case "selfie": switch (attribute.ContentType) { case ContentType.Jpeg: profile.Selfie = new Image { Type = ImageType.Jpeg, Data = data }; break; case ContentType.Png: profile.Selfie = new Image { Type = ImageType.Png, Data = data }; break; } break; case "given_names": profile.GivenNames = Conversion.BytesToUtf8(data); break; case "family_name": profile.FamilyName = Conversion.BytesToUtf8(data); break; case "phone_number": profile.MobileNumber = Conversion.BytesToUtf8(data); break; case "email_address": profile.EmailAddress = Conversion.BytesToUtf8(data); break; case "date_of_birth": { DateTime date; if (DateTime.TryParseExact(Conversion.BytesToUtf8(data), "yyyy-MM-dd", CultureInfo.InvariantCulture, System.Globalization.DateTimeStyles.None, out date)) { profile.DateOfBirth = date; } } break; case "postal_address": profile.Address = Conversion.BytesToUtf8(data); break; case "gender": profile.Gender = Conversion.BytesToUtf8(data); break; case "nationality": profile.Nationality = Conversion.BytesToUtf8(data); break; default: switch (attribute.ContentType) { case ContentType.Date: profile.OtherAttributes.Add(attribute.Name, new YotiAttributeValue(YotiAttributeValue.TypeEnum.Date, data)); break; case ContentType.String: profile.OtherAttributes.Add(attribute.Name, new YotiAttributeValue(YotiAttributeValue.TypeEnum.Text, data)); break; case ContentType.Jpeg: profile.OtherAttributes.Add(attribute.Name, new YotiAttributeValue(YotiAttributeValue.TypeEnum.Jpeg, data)); break; case ContentType.Png: profile.OtherAttributes.Add(attribute.Name, new YotiAttributeValue(YotiAttributeValue.TypeEnum.Png, data)); break; case ContentType.Undefined: // do not return attributes with undefined content types break; default: break; } break; } } return(new ActivityDetails { Outcome = ActivityOutcome.Success, UserProfile = profile }); } } else { ActivityOutcome outcome = ActivityOutcome.Failure; switch (response.StatusCode) { case (int)HttpStatusCode.NotFound: { outcome = ActivityOutcome.ProfileNotFound; } break; } return(new ActivityDetails { Outcome = outcome }); } }