Пример #1
0
        public string Run(
            [ActivityTrigger] IDurableActivityContext functionContext,
            ILogger logger
            )
        {
            log = logger;
            log.LogInformation($"SendSms activity running");

            var data         = functionContext.GetInput <string>();
            var registration = JsonSerializer.Deserialize <UserRegistration>(data);

            var url = String.Format(
                System.Environment.GetEnvironmentVariable("SmsVerifyUrl"),
                functionContext.InstanceId
                );

            log.LogInformation($"Sending Sms");

            Exception sendEx = null;

            if (smsClient.TrySendSms(registration.UserPhone, $"Verify your phone number: {url}", out sendEx))
            {
                registration.PhoneLastVerified = DateTime.Now;
                telemetry.TrackEvent(
                    "RegistrationSmsSent",
                    new Dictionary <string, string>()
                {
                    { "UserName", registration.UserName },
                    { "UserPhone", registration.UserPhone }
                }
                    );
            }
            else
            {
                log.LogError(sendEx, $"SMS client threw an error failed. {sendEx.Message}");
                telemetry.TrackException(
                    sendEx,
                    new Dictionary <string, string>()
                {
                    { "UserName", registration.UserName },
                    { "UserPhone", registration.UserPhone }
                }
                    );
                throw sendEx;
            }

            return(registration.ToString());
        }