Compare commits
4 Commits
AddingFont
...
stimulsoft
| Author | SHA1 | Date | |
|---|---|---|---|
| 911cf328b2 | |||
| cc1dca84d3 | |||
| f3bfa59889 | |||
| f764776321 |
24
PdfService/ExceptionHandlerMiddleware.cs
Normal file
24
PdfService/ExceptionHandlerMiddleware.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace PdfService;
|
||||
|
||||
public class ExceptionHandlerMiddleware
|
||||
{
|
||||
private readonly RequestDelegate _next;
|
||||
|
||||
public ExceptionHandlerMiddleware(RequestDelegate next)
|
||||
{
|
||||
_next = next;
|
||||
}
|
||||
|
||||
public async Task InvokeAsync(HttpContext context)
|
||||
{
|
||||
try
|
||||
{
|
||||
await _next(context);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
SentrySdk.CaptureException(ex);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -7,8 +7,10 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="dotenv.net" Version="4.0.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
<PackageReference Include="Stimulsoft.Reports.Engine.NetCore" Version="2025.2.3" />
|
||||
<PackageReference Include="Sentry" Version="6.0.0" />
|
||||
<PackageReference Include="Stimulsoft.Reports.Engine.NetCore" Version="2023.1.1" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,11 +1,23 @@
|
||||
using System.Data;
|
||||
using dotenv.net;
|
||||
using Microsoft.AspNetCore.WebUtilities;
|
||||
using Newtonsoft.Json;
|
||||
using PdfService;
|
||||
|
||||
DotEnv.Load();
|
||||
|
||||
Stimulsoft.Base.StiLicense.Key = Environment.GetEnvironmentVariable("STIMULSOFT_LICENSE_KEY");
|
||||
|
||||
SentrySdk.Init(options =>
|
||||
{
|
||||
options.Dsn = Environment.GetEnvironmentVariable("SENTRY_DSN");
|
||||
});
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
var app = builder.Build();
|
||||
|
||||
app.UseMiddleware<ExceptionHandlerMiddleware>();
|
||||
|
||||
app.MapPost("/Print", async (HttpContext context) =>
|
||||
{
|
||||
var request = context.Request;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
using Stimulsoft.Base;
|
||||
using Stimulsoft.Report;
|
||||
using Stimulsoft.Report.Dictionary;
|
||||
using Stimulsoft.Report.Export;
|
||||
|
||||
namespace PdfService;
|
||||
|
||||
@@ -12,13 +11,6 @@ public static class Reporter
|
||||
|
||||
report.LoadFromString(reportTemplate);
|
||||
report.RegBusinessObject("Data", data);
|
||||
|
||||
var currentDirectory = Path.GetFullPath(Path.Combine(Environment.CurrentDirectory, @"../../.."));
|
||||
var fileContent = File.ReadAllBytes(Path.Combine(currentDirectory, "Fonts", "IRANSansWeb.ttf"));
|
||||
var resource = new StiResource("IRANSansMonoSpacedNum", "IRANSansMonoSpacedNum", false, StiResourceType.FontTtf, fileContent, false);
|
||||
report.Dictionary.Resources.Add(resource);
|
||||
StiFontCollection.AddResourceFont(resource.Name, resource.Content, "ttf", resource.Alias);
|
||||
|
||||
report.Render(false);
|
||||
|
||||
var stream = new MemoryStream();
|
||||
|
||||
2
PdfService/example.env
Normal file
2
PdfService/example.env
Normal file
@@ -0,0 +1,2 @@
|
||||
SENTRY_DSN=https://d3fd87d14e555556d3f76e42d94a63a0@sentry.rayvarz.center/10
|
||||
STIMULSOFT_LICENSE_KEY=6vJhGtLLLz2GNviWmUTrhSqnOItdDwjBylQzQcAOiHkgpgFGkUl79uxVs8X+uspx6K+tqdtOB5G1S6PFPRrlVNvMUiSiNYl724EZbrUAWwAYHlGLRbvxMviMExTh2l9xZJ2xc4K1z3ZVudRpQpuDdFq+fe0wKXSKlB6okl0hUd2ikQHfyzsAN8fJltqvGRa5LI8BFkA/f7tffwK6jzW5xYYhHxQpU3hy4fmKo/BSg6yKAoUq3yMZTG6tWeKnWcI6ftCDxEHd30EjMISNn1LCdLN0/4YmedTjM7x+0dMiI2Qif/yI+y8gmdbostOE8S2ZjrpKsgxVv2AAZPdzHEkzYSzx81RHDzZBhKRZc5mwWAmXsWBFRQol9PdSQ8BZYLqvJ4Jzrcrext+t1ZD7HE1RZPLPAqErO9eo+7Zn9Cvu5O73+b9dxhE2sRyAv9Tl1lV2WqMezWRsO55Q3LntawkPq0HvBkd9f8uVuq9zk7VKegetCDLb0wszBAs1mjWzN+ACVHiPVKIk94/QlCkj31dWCg8YTrT5btsKcLibxog7pv1+2e4yocZKWsposmcJbgG0
|
||||
10
nuget.config
Normal file
10
nuget.config
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<packageSources>
|
||||
<clear />
|
||||
|
||||
<add key="LocalPackages" value="./packages" />
|
||||
|
||||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
||||
</packageSources>
|
||||
</configuration>
|
||||
Reference in New Issue
Block a user