Как перенести все транзакционные шаблоны из одной учетной записи SendGrid в другую? - PullRequest
0 голосов
/ 07 июня 2018

Учитывая большую библиотеку шаблонов SendGrid, как можно переместить их в другую учетную запись SendGrid одним щелчком мыши, скажем, для тестовой среды?

1 Ответ

0 голосов
/ 07 июня 2018

Не представляется возможным из коробки.Следующий код C # выполнит работу через API.

В коде используются следующие самородки: NewtonSoft Json.NET, SendGrid API Client.

Одно большое предостережение: идентификаторы шаблона будут другими послемиграция.Похоже, это не способ их сохранения.

    public ActionResult MigrateSendGridTemplates() {

        //https://sendgrid.com/docs/API_Reference/Web_API_v3/Transactional_Templates/templates.html
        //https://sendgrid.com/docs/API_Reference/Web_API_v3/Transactional_Templates/versions.html

        var fromClient = new SendGridClient("full access api key"); //full access key
        var toClient = new SendGridClient("full access api key"); //full access key - assume blank slate

        //fetch all existing templates

        var templatesRaw = fromClient.RequestAsync(SendGridClient.Method.GET, null, null, "templates").Result;

        var templates = templatesRaw.DeserializeResponseBody(templatesRaw.Body);

        var templatesEnumerable = ((IEnumerable)templates.First().Value).Cast<dynamic>().Reverse();

        foreach (var template in templatesEnumerable)
        {
            //fetch template with versions attached

            var templateWithVerisonRaw = fromClient.RequestAsync(SendGridClient.Method.GET, null, null, $"templates/{template.id}").Result;

            var templateWithVersion = templateWithVerisonRaw.DeserializeResponseBody(templateWithVerisonRaw.Body);

            //create template on the new account

            var templateNewRaw = toClient.RequestAsync(SendGridClient.Method.POST, templateWithVerisonRaw.Body.ReadAsStringAsync().Result, null, "templates").Result;

            var activeVersion = ((IEnumerable)templateWithVersion["versions"]).Cast<dynamic>().Where(v => v.active).SingleOrDefault();

            if (activeVersion == null)
                continue; //this template does not have any versions to migrate

            //create template version on new account

            var templateNewId = templateNewRaw.DeserializeResponseBody(templateNewRaw.Body)["id"];

            var templateSerialized = JsonConvert.SerializeObject(activeVersion, Formatting.None);

            var templateVersionNewRaw = toClient.RequestAsync(SendGridClient.Method.POST, templateSerialized, null, $"templates/{templateNewId}/versions").Result;
        }

        return Content($"Processed {templatesEnumerable.Count()} templates.");
    }

Из этого следует, что ваш код не должен полагаться на идентификаторы шаблонов, если вы хотите, чтобы ваш код работал в разных учетных записях sendgrid.Вместо этого вы можете создать поисковый словарь и ссылаться на свои шаблоны по их понятным именам, например:

public static Dictionary<string, string> GetSendGridTemplates()
{
    var templatesRaw = Persistent.ConfiguredSendGridClient.RequestAsync(SendGridClient.Method.GET, null, null, "templates").Result;

    var templates = templatesRaw.DeserializeResponseBody(templatesRaw.Body);

    var templatesEnumerable = ((IEnumerable)templates.First().Value).Cast<dynamic>();

    var results = new Dictionary<string, string>();

    foreach (dynamic template in templatesEnumerable)
    {
        var activeVersion = ((IEnumerable)template.versions).Cast<dynamic>().Where(v => v.active).SingleOrDefault();

        if (activeVersion == null)
            continue; //skip this one

        results.Add((string)activeVersion.name, (string)template.id);
    }

    return results;
}

Пример результата:

reactivation_121519737023655 -> "03e2b62f-51ed-43d0-b140-42bc98a448f6 "деактивированный_11519736715430 ->" fb3e781b-5e67-45de-a958-bf0cd2682004 "

...