Automation and Shopify library updates

This commit is contained in:
2022-10-30 22:12:25 -04:00
parent 48844127d7
commit b259b77967
21 changed files with 172 additions and 200 deletions

View File

@@ -35,7 +35,7 @@
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" /> <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.5" /> <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Ratermania.Shopify" Version="1.3.1" /> <PackageReference Include="Ratermania.Shopify" Version="6.16.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
<PackageReference Include="Swashbuckle.AspNetCore.ReDoc" Version="6.3.1" /> <PackageReference Include="Swashbuckle.AspNetCore.ReDoc" Version="6.3.1" />
</ItemGroup> </ItemGroup>

View File

@@ -4,6 +4,7 @@ using PartSource.Automation.Models.Configuration;
using PartSource.Automation.Services; using PartSource.Automation.Services;
using Ratermania.Automation.Interfaces; using Ratermania.Automation.Interfaces;
using System; using System;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -18,15 +19,17 @@ namespace PartSource.Automation.Jobs
// TODO: set from config // TODO: set from config
private readonly string[] _ssisPackages = { "Parts Price", "Parts Availability" }; private readonly string[] _ssisPackages = { "Parts Price", "Parts Availability" };
public ExecuteSsisPackages(EmailService emailService, FtpService ftpService, SsisService ssisService, ILogger<ExecuteSsisPackages> logger) public ExecuteSsisPackages(EmailService emailService, IConfiguration configuration, SsisService ssisService, ILogger<ExecuteSsisPackages> logger)
{ {
_ftpService = ftpService; FtpConfiguration ftpConfiguration = configuration.GetSection("FtpServers:AzureConfiguration").Get<FtpConfiguration>();
_emailService = emailService; _emailService = emailService;
_ftpService = new FtpService(ftpConfiguration);
_ssisService = ssisService; _ssisService = ssisService;
_logger = logger; _logger = logger;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
await Task.Run(() => await Task.Run(() =>
{ {
@@ -37,12 +40,12 @@ namespace PartSource.Automation.Jobs
_ftpService.Download($"{package}.txt"); _ftpService.Download($"{package}.txt");
_ssisService.Execute($"{package}.dtsx"); _ssisService.Execute($"{package}.dtsx");
_logger.LogInformation("Execution of SSIS package {package} completed successfully.", package); _logger.LogInformation($"Execution of SSIS package {package} completed successfully.");
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Execution of SSIS package {package} failed", package); _logger.LogError($"Execution of SSIS package {package} failed.", ex);
throw; throw;
} }

View File

@@ -5,6 +5,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Text; using System.Text;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -18,7 +19,7 @@ namespace PartSource.Automation.Jobs
_nexpartService = nexpartService; _nexpartService = nexpartService;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
IList<string> rows = new List<string> IList<string> rows = new List<string>
{ {

View File

@@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs.POC namespace PartSource.Automation.Jobs.POC
@@ -19,7 +20,7 @@ namespace PartSource.Automation.Jobs.POC
_shopifyClient = shopifyClient; _shopifyClient = shopifyClient;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
IEnumerable<Product> products = await _shopifyClient.Products.Get(new Dictionary<string, object> { { "limit", 250 }, { "product_type", "CA112-SC137-FL13750_Intake Manifolds" } }); IEnumerable<Product> products = await _shopifyClient.Products.Get(new Dictionary<string, object> { { "limit", 250 }, { "product_type", "CA112-SC137-FL13750_Intake Manifolds" } });

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Newtonsoft.Json; using Newtonsoft.Json;
@@ -29,7 +30,7 @@ namespace PartSource.Automation.Jobs.POC
_shopifyClient = shopifyClient; _shopifyClient = shopifyClient;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
await BuildDatabase(); await BuildDatabase();
await UpdateShopify(); await UpdateShopify();
@@ -177,7 +178,7 @@ namespace PartSource.Automation.Jobs.POC
Namespace = "position", Namespace = "position",
Key = key, Key = key,
Value = json, Value = json,
ValueType = "json_string", Type = "json",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };

View File

@@ -16,6 +16,7 @@ using System.Data;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -37,7 +38,7 @@ namespace PartSource.Automation.Jobs
_vehicleService = vehicleService; _vehicleService = vehicleService;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
IEnumerable<Product> products = null; IEnumerable<Product> products = null;

View File

@@ -18,6 +18,7 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs.POC namespace PartSource.Automation.Jobs.POC
@@ -39,7 +40,7 @@ namespace PartSource.Automation.Jobs.POC
_vehicleService = vehicleService; _vehicleService = vehicleService;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
IList<string> productTypes = new List<string> IList<string> productTypes = new List<string>
{ {

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Newtonsoft.Json; using Newtonsoft.Json;
@@ -29,9 +30,9 @@ namespace PartSource.Automation.Jobs.POC
_shopifyClient = shopifyClient; _shopifyClient = shopifyClient;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
// await BuildDatabase(); await BuildDatabase();
await UpdateShopify(); await UpdateShopify();
} }
@@ -143,7 +144,6 @@ namespace PartSource.Automation.Jobs.POC
} }
} }
//[SuppressMessage("Globalization", "CA1308:Normalize strings to uppercase", Justification = "It's a Shopify metafield key")]
private async Task SavePositionMetafield(Product product, IList<int> vehicleIds, string position) private async Task SavePositionMetafield(Product product, IList<int> vehicleIds, string position)
{ {
if (vehicleIds.Count == 0) if (vehicleIds.Count == 0)
@@ -169,7 +169,7 @@ namespace PartSource.Automation.Jobs.POC
Namespace = "position", Namespace = "position",
Key = key, Key = key,
Value = json, Value = json,
ValueType = "json_string", Type = "json",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };

View File

@@ -14,6 +14,7 @@ using System.Linq;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -39,11 +40,11 @@ namespace PartSource.Automation.Jobs
_noteDictionary = new ConcurrentDictionary<string, string>(); _noteDictionary = new ConcurrentDictionary<string, string>();
} }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Reliability", "CA2008:Do not create tasks without passing a TaskScheduler", Justification = "<Pending>")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Reliability", "CA2008:Do not create tasks without passing a TaskScheduler", Justification = "Not library code")]
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
_whiSeoService.TruncateFitmentTables(); _whiSeoService.TruncateFitmentTables();
// _whiSeoService.GetFiles(_seoDataType); _whiSeoService.GetFiles(_seoDataType);
string directory = Path.Combine(_ftpConfiguration.Destination, _seoDataType.ToString().ToLowerInvariant()); string directory = Path.Combine(_ftpConfiguration.Destination, _seoDataType.ToString().ToLowerInvariant());
DirectoryInfo directoryInfo = new DirectoryInfo(directory); DirectoryInfo directoryInfo = new DirectoryInfo(directory);
@@ -55,7 +56,7 @@ namespace PartSource.Automation.Jobs
fileGroups.Enqueue(fileGroup); fileGroups.Enqueue(fileGroup);
} }
Task[] taskArray = new Task[8]; Task[] taskArray = new Task[Environment.ProcessorCount / 2];
for (int i = 0; i < taskArray.Length; i++) for (int i = 0; i < taskArray.Length; i++)
{ {
@@ -90,7 +91,7 @@ namespace PartSource.Automation.Jobs
_logger.LogInformation($"Created fitment table for part group {fitmentTable}."); _logger.LogInformation($"Created fitment table for part group {fitmentTable}.");
} }
}); }, token);
} }
Task.WaitAll(taskArray); Task.WaitAll(taskArray);

View File

@@ -14,6 +14,7 @@ using System.Linq;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -36,7 +37,7 @@ namespace PartSource.Automation.Jobs
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
_whiSeoService.TruncateVehicleTables(); _whiSeoService.TruncateVehicleTables();
_whiSeoService.GetFiles(_seoDataType); _whiSeoService.GetFiles(_seoDataType);

View File

@@ -1,6 +1,7 @@
using PartSource.Automation.Models; using PartSource.Automation.Models;
using PartSource.Automation.Services; using PartSource.Automation.Services;
using Ratermania.Automation.Interfaces; using Ratermania.Automation.Interfaces;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -15,7 +16,7 @@ namespace PartSource.Automation.Jobs
_emailService = emailService; _emailService = emailService;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
foreach (string phoneNumber in phoneNumbers) foreach (string phoneNumber in phoneNumbers)
{ {

View File

@@ -6,6 +6,7 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using PartSource.Automation.Services; using PartSource.Automation.Services;
using System.Threading;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
{ {
@@ -21,7 +22,7 @@ namespace PartSource.Automation.Jobs
} }
#pragma warning disable CS1998, CA1303 #pragma warning disable CS1998, CA1303
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
// _emailService.Send("Automation Test Message", "This is a test email from the automation server. If this message was in your spam folder, whitelist the address that sent this email."); // _emailService.Send("Automation Test Message", "This is a test email from the automation server. If this message was in your spam folder, whitelist the address that sent this email.");

View File

@@ -16,6 +16,7 @@ using System.Data;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -37,7 +38,7 @@ namespace PartSource.Automation.Jobs
_vehicleService = vehicleService; _vehicleService = vehicleService;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
IEnumerable<Product> products = null; IEnumerable<Product> products = null;
@@ -104,7 +105,7 @@ namespace PartSource.Automation.Jobs
Namespace = "fitment", Namespace = "fitment",
Key = "ids", Key = "ids",
Value = json, Value = json,
ValueType = "json_string", Type = "json",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };
@@ -145,7 +146,7 @@ namespace PartSource.Automation.Jobs
Namespace = "fitment", Namespace = "fitment",
Key = "seo", Key = "seo",
Value = json, Value = json,
ValueType = "json_string", Type = "single_line_text_field",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };
@@ -158,7 +159,7 @@ namespace PartSource.Automation.Jobs
Namespace = "Flags", Namespace = "Flags",
Key = "IsFitment", Key = "IsFitment",
Value = isFitment.ToString(), Value = isFitment.ToString(),
ValueType = "string", Type = "single_line_text_field",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };
@@ -170,7 +171,7 @@ namespace PartSource.Automation.Jobs
Namespace = "google", Namespace = "google",
Key = "custom_label_0", Key = "custom_label_0",
Value = importData.LineCode, Value = importData.LineCode,
ValueType = "string", Type = "single_line_text_field",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };
@@ -182,7 +183,7 @@ namespace PartSource.Automation.Jobs
Namespace = "google", Namespace = "google",
Key = "custom_label_1", Key = "custom_label_1",
Value = importData.PartNumber, Value = importData.PartNumber,
ValueType = "string", Type = "single_line_text_field",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };

View File

@@ -13,6 +13,7 @@ using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
@@ -32,7 +33,7 @@ namespace PartSource.Automation.Jobs
_vehicleService = vehicleService; _vehicleService = vehicleService;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
IDictionary<string, object> parameters = new Dictionary<string, object> IDictionary<string, object> parameters = new Dictionary<string, object>
{ {
@@ -131,7 +132,7 @@ namespace PartSource.Automation.Jobs
Namespace = "fitment", Namespace = "fitment",
Key = "note_text", Key = "note_text",
Value = json, Value = json,
ValueType = "json_string", Type = "json",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };
@@ -204,7 +205,7 @@ namespace PartSource.Automation.Jobs
Namespace = "position", Namespace = "position",
Key = key, Key = key,
Value = json, Value = json,
ValueType = "json_string", Type = "json",
OwnerResource = "product", OwnerResource = "product",
OwnerId = product.Id OwnerId = product.Id
}; };

View File

@@ -13,161 +13,114 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Net.Mail; using System.Net.Mail;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PartSource.Automation.Jobs namespace PartSource.Automation.Jobs
{ {
public class UpdatePricing : IAutomationJob public class UpdatePricing : IAutomationJob
{ {
private readonly ILogger<UpdatePricing> _logger; private readonly ILogger<UpdatePricing> _logger;
private readonly PartSourceContext _partSourceContext; private readonly PartSourceContext _partSourceContext;
private readonly ShopifyClient _shopifyClient; private readonly ShopifyClient _shopifyClient;
private readonly EmailService _emailService; private readonly EmailService _emailService;
public UpdatePricing(ILogger<UpdatePricing> logger, PartSourceContext partSourceContext, ShopifyClient shopifyClient, EmailService emailService) public UpdatePricing(ILogger<UpdatePricing> logger, PartSourceContext partSourceContext, ShopifyClient shopifyClient, EmailService emailService)
{ {
_logger = logger; _logger = logger;
_partSourceContext = partSourceContext; _partSourceContext = partSourceContext;
_shopifyClient = shopifyClient; _shopifyClient = shopifyClient;
_emailService = emailService; _emailService = emailService;
} }
public async Task Run() public async Task Run(CancellationToken token, params string[] arguments)
{ {
List<UpdatePricingResult> pricingReport = new List<UpdatePricingResult>(); List<UpdatePricingResult> pricingReport = new List<UpdatePricingResult>();
IEnumerable<Product> products = null; IEnumerable<Product> products = null;
IEnumerable<PartPrice> prices = null; IEnumerable<PartPrice> prices = null;
try try
{ {
products = await _shopifyClient.Products.Get(new Dictionary<string, object> { { "limit", 250 } }); products = await _shopifyClient.Products.Get(new Dictionary<string, object> { { "limit", 250 } });
prices = await _partSourceContext.PartPrices.AsNoTracking().ToListAsync(); prices = await _partSourceContext.PartPrices.AsNoTracking().ToListAsync(token);
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Failed to get the initial set of products from Shopify."); _logger.LogError(ex, "Failed to get the initial set of products from Shopify.");
throw; throw;
} }
while (products != null && products.Any()) while (products != null && products.Any())
{ {
foreach (Product product in products) foreach (Product product in products)
{ {
List<UpdatePricingResult> productPricingUpdate = new List<UpdatePricingResult>(); if (product.Variants.Length > 0)
{
for (int i = 0; i < product.Variants.Length; i++)
{
Variant variant = product.Variants[i];
PartPrice partPrice = prices.Where(p => p.SKU == variant.Sku).FirstOrDefault();
if (product.Variants.Length > 0) if (partPrice == null || !partPrice.Your_Price.HasValue || !partPrice.Compare_Price.HasValue)
{ {
bool hasUpdate = false; continue;
}
for (int i = 0; i < product.Variants.Length; i++) product.Variants[i].Price = partPrice.Your_Price.Value;
{ product.Variants[i].CompareAtPrice = partPrice.Compare_Price.Value;
Variant variant = product.Variants[i];
PartPrice partPrice = prices.Where(p => p.SKU == variant.Sku).FirstOrDefault();
if (partPrice == null || !partPrice.Your_Price.HasValue || !partPrice.Compare_Price.HasValue) product.PublishedAt = partPrice.Active.Trim().ToUpperInvariant() == "Y" ? (DateTime?)DateTime.Now : null;
{ product.PublishedScope = PublishedScope.Global;
continue;
}
if (product.Variants[i].Price.ToString("G29") != partPrice.Your_Price.Value.ToString("G29") || product.Variants[i].CompareAtPrice.ToString("G29") != partPrice.Compare_Price.Value.ToString("G29")) try
{ {
productPricingUpdate.Add(new UpdatePricingResult await _shopifyClient.Metafields.Add(new Metafield
{ {
Sku = variant.Sku, Namespace = "Pricing",
OldPrice = product.Variants[i].Price, Key = "CorePrice",
NewPrice = partPrice.Your_Price.Value, Value = partPrice.Core_Price.HasValue ? partPrice.Core_Price.Value.ToString() : "0.00",
OldCompareAt = product.Variants[i].CompareAtPrice, Type = "single_line_text_field",
NewCompareAt = partPrice.Compare_Price.Value OwnerResource = "product",
}); OwnerId = product.Id
});
}
product.Variants[i].Price = partPrice.Your_Price.Value; catch (Exception ex)
product.Variants[i].CompareAtPrice = partPrice.Compare_Price.Value; {
_logger.LogWarning(ex, $"Failed to update core price metafield for product ID {product.Id}");
}
}
product.PublishedAt = partPrice.Active.Trim().ToUpperInvariant() == "Y" ? DateTime.Now : null; try
product.PublishedScope = PublishedScope.Global; {
await _shopifyClient.Products.Update(product);
}
//Metafield metafield = new Metafield catch (Exception ex)
//{ {
// Namespace = "Pricing", _logger.LogWarning(ex, $"Failed to update pricing for product ID {product.Id}");
// Key = "CorePrice", }
// Value = partPrice.Core_Price.HasValue ? partPrice.Core_Price.Value.ToString() : "0.00", }
// ValueType = "string", }
// OwnerResource = "product",
// OwnerId = product.Id
//};
hasUpdate = true;
}
}
if (hasUpdate) try
{ {
try products = await _shopifyClient.Products.GetNext();
{
//await _shopifyClient.Metafields.Add(metafield);
await _shopifyClient.Products.Update(product);
pricingReport.AddRange(productPricingUpdate); _logger.LogInformation($"Total updated: {pricingReport.Count}");
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogWarning(ex, $"Failed to update pricing for product ID {product.Id}"); _logger.LogWarning(ex, "Failed to get the next set of products. Retrying");
} products = await _shopifyClient.Products.GetPrevious();
} }
} }
}
try _emailService.Send("Pricing Update Completed", $"The pricing update has completed.");
{ }
products = await _shopifyClient.Products.GetNext(); }
_logger.LogInformation($"Total updated: {pricingReport.Count}");
}
catch (Exception ex)
{
_logger.LogWarning(ex, "Failed to get the next set of products. Retrying");
products = await _shopifyClient.Products.GetPrevious();
}
}
Attachment attachment = GetPricingReportAttachment(pricingReport);
_emailService.Send("Pricing Update Completed", $"The pricing update has completed. Total updated: {pricingReport.Count}", attachment);
}
private Attachment GetPricingReportAttachment(IList<UpdatePricingResult> pricingReport)
{
string directory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "Pricing Reports");
string filename = Path.Combine(directory, $"Pricing Update {DateTime.Now.ToString("yyyy-MM-dd")}.csv");
if (!Directory.Exists(directory))
{
Directory.CreateDirectory(directory);
}
if (File.Exists(filename))
{
File.Delete(filename);
}
using FileStream fileStream = File.OpenWrite(filename);
using StreamWriter streamWriter = new StreamWriter(fileStream, System.Text.Encoding.UTF8);
streamWriter.WriteLine("SKU, Old Price, New Price, Old Compare At, New Compare At");
foreach (UpdatePricingResult pricingResult in pricingReport)
{
streamWriter.WriteLine($"{pricingResult.Sku},{pricingResult.OldPrice},{pricingResult.NewPrice},{pricingResult.OldCompareAt},{pricingResult.NewCompareAt}");
}
streamWriter.Close();
fileStream.Close();
return new Attachment(filename);
}
}
} }

View File

@@ -18,9 +18,10 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" /> <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" /> <PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" /> <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
<PackageReference Include="Ratermania.Automation" Version="1.0.0" /> <PackageReference Include="Ratermania.Automation" Version="6.16.9" />
<PackageReference Include="Ratermania.Automation.Common" Version="1.0.0" /> <PackageReference Include="Ratermania.Automation.Common" Version="6.16.9" />
<PackageReference Include="Ratermania.Shopify" Version="1.3.1" /> <PackageReference Include="Ratermania.JwtSpot" Version="6.16.9" />
<PackageReference Include="Ratermania.Shopify" Version="6.16.8" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@@ -15,6 +15,7 @@ using PartSource.Services;
using Ratermania.Automation.DependencyInjection; using Ratermania.Automation.DependencyInjection;
using Ratermania.Automation.Logging; using Ratermania.Automation.Logging;
using Ratermania.Shopify.DependencyInjection; using Ratermania.Shopify.DependencyInjection;
using Ratermania.JwtSpot.Configuration;
using System; using System;
using System.IO; using System.IO;
using System.Threading.Tasks; using System.Threading.Tasks;
@@ -68,36 +69,33 @@ namespace PartSource.Automation
{ {
options.ApiKey = builder.Configuration["Shopify:ApiKey"]; options.ApiKey = builder.Configuration["Shopify:ApiKey"];
options.ApiSecret = builder.Configuration["Shopify:ApiSecret"]; options.ApiSecret = builder.Configuration["Shopify:ApiSecret"];
options.ApiVersion = "2021-01"; options.ApiVersion = "2022-10";
options.ShopDomain = builder.Configuration["Shopify:ShopDomain"]; options.ShopDomain = builder.Configuration["Shopify:ShopDomain"];
//options.ApiKey = "9a533dad460321c6ce8f30bf5b8691ed"; //options.ApiKey = "9a533dad460321c6ce8f30bf5b8691ed";
//options.ApiSecret = "dc9e28365d9858e544d57ac7af43fee7"; //options.ApiSecret = "dc9e28365d9858e544d57ac7af43fee7";
//options.ApiVersion = "2021-01"; //options.ApiVersion = "2022-10";
//options.ShopDomain = "dev-partsource.myshopify.com"; //options.ShopDomain = "dev-partsource.myshopify.com";
}) })
.AddAutomation(options => .AddAutomation(options =>
{
//options.HasBaseInterval(new TimeSpan(0, 15, 0))
// .HasMaxFailures(3)
// .HasJob<ExecuteSsisPackages>(options =>
// options.HasInterval(new TimeSpan(24, 0, 0))
// .StartsAt(DateTime.Today.AddHours(26))
// )
// .HasJob<UpdatePricing>(options =>
// options.HasInterval(new TimeSpan(24, 0, 0))
// .StartsAt(DateTime.Today.AddHours(27))
// .HasDependency<ExecuteSsisPackages>()
// );
options.HasBaseInterval(new TimeSpan(0, 15, 0)) options.HasBaseInterval(new TimeSpan(0, 15, 0))
.HasMaxFailures(3) .HasMaxFailures(3)
.HasJob<UpdateWiperFitment>(options => .HasJob<ExecuteSsisPackages>(options =>
options.HasInterval(new TimeSpan(24, 0, 0)) options.HasInterval(new TimeSpan(24, 0, 0))
); .StartsAt(DateTime.Today.AddHours(26)))
//.AddApiServer(); .HasJob<UpdatePricing>(options =>
}) options.HasInterval(new TimeSpan(24, 0, 0))
.StartsAt(DateTime.Today.AddHours(27))
.HasDependency<ExecuteSsisPackages>())
.UseApiServer(opts =>
opts.HasApiKey("PartsourceAPIKey")
.UseJwtSpot(jwt =>
jwt.HasAudience(builder.Configuration["JwtSpot:Audience"])
.HasIssuer(builder.Configuration["JwtSpot:Issuer"])
.UseX509Certificate(builder.Configuration["JwtSpot:CertPath"])
.UseJwksUrl(builder.Configuration["JwtSpot:JwksUrl"])))
.UseSqlServer(builder.Configuration.GetConnectionString("AutomationDatabase")))
.AddSingleton(builder.Configuration.GetSection("FtpServers:AzureConfiguration").Get<FtpConfiguration>()) .AddSingleton(builder.Configuration.GetSection("FtpServers:AzureConfiguration").Get<FtpConfiguration>())
.AddSingleton<FtpService>() .AddSingleton<FtpService>()
@@ -114,7 +112,7 @@ namespace PartSource.Automation
logging.AddEventLog(); logging.AddEventLog();
logging.AddConsole(); logging.AddConsole();
// logging.AddProvider(new AutomationLoggerProvider()); //logging.AddProvider(new AutomationLoggerProvider());
}); });
} }
} }

View File

@@ -1,5 +1,6 @@
{ {
"ConnectionStrings": { "ConnectionStrings": {
"AutomationDatabase": "Data Source=localhost;Initial Catalog=Automation;Integrated Security=true;Trust Server Certificate=true;",
"FitmentDatabase": "Data Source=localhost;Initial Catalog=WhiFitment;Integrated Security=true", "FitmentDatabase": "Data Source=localhost;Initial Catalog=WhiFitment;Integrated Security=true",
"PartSourceDatabase": "Server=tcp:ps-whi.database.windows.net,1433;Initial Catalog=ps-whi-stage;Persist Security Info=False;User ID=ps-whi;Password=9-^*N5dw!6:|.5Q;MultipleActiveResultSets=True;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" "PartSourceDatabase": "Server=tcp:ps-whi.database.windows.net,1433;Initial Catalog=ps-whi-stage;Persist Security Info=False;User ID=ps-whi;Password=9-^*N5dw!6:|.5Q;MultipleActiveResultSets=True;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"
}, },
@@ -31,12 +32,18 @@
"ApiSecret": "527a3b4213c2c7ecb214728a899052df", "ApiSecret": "527a3b4213c2c7ecb214728a899052df",
"ShopDomain": "partsource.myshopify.com" "ShopDomain": "partsource.myshopify.com"
}, },
"JwtSpot": {
"Audience": "Ratermania.Automation",
"Issuer": "https://tomraterman.com",
"JwksUrl": "http://localhost:5103/jwks",
"CertPath": "C:\\Users\\tom\\Desktop\\PartsourceAutomation.pfx"
},
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft": "Warning", "Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information", "Microsoft.Hosting.Lifetime": "Information"
// "Microsoft.EntityFrameworkCore.Database.Command": "Information" // "Microsoft.EntityFrameworkCore.Database.Command": "Information"
}, },
"EventLog": { "EventLog": {
"LogLevel": { "LogLevel": {

View File

@@ -14,7 +14,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="AutoMapper" Version="11.0.1" /> <PackageReference Include="AutoMapper" Version="11.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Ratermania.Shopify" Version="1.3.1" /> <PackageReference Include="Ratermania.Shopify" Version="6.16.8" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@@ -1,7 +1,7 @@
 
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 17
VisualStudioVersion = 16.0.29613.14 VisualStudioVersion = 17.2.32519.379
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PartSource.Api", "PartSource.Api\PartSource.Api.csproj", "{126B8961-1D86-4F73-9BB9-79ECE78E9257}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PartSource.Api", "PartSource.Api\PartSource.Api.csproj", "{126B8961-1D86-4F73-9BB9-79ECE78E9257}"
EndProject EndProject

View File

@@ -1,10 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<packageSources> <packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Ratermania" value="https://ratermanianuget.blob.core.windows.net/nuget/index.json" /> </packageSources>
</packageSources>
<packageRestore> <packageRestore>