Files
moadiran/TaxPayerFull/Layout/TaxTools.razor
mmrbnjd b2b953ffa1 ...
2024-04-15 23:09:11 +03:30

221 lines
8.7 KiB
Plaintext

@using Shared.DTOs
@using System.Text
@inject HttpClient _hc
@inject IJSRuntime JS
<div class="contact-info-area pb-90" id="TaxTools">
<div class="container">
<div class="row">
</div>
</div>
</div>
<div class="tp-project__area grey-bg pt-50 pb-50 fix" >
<div class="container">
<div class="row gx-0">
<h5 class="inner-section-subtitle">ابزار/سامانه مودیان</h5>
</div>
<div class="row">
<div class="col-12">
<div class="popular-blog-title mb-40">
<h4>1)ساخت فایل CSR</h4>
</div>
</div>
</div>
<div class="row gx-0">
<div class="contact-form-right-warp">
<div class="postbox__comment-form">
<EditForm EditContext="editContext" OnValidSubmit="CreateCsrAndPrivateKey">
<DataAnnotationsValidator />
<div class="postbox__comment-input mb-35">
<ValidationMessage For="()=>modelTaxTools.cn" />
<ValidationMessage For="()=>modelTaxTools.sn" />
<ValidationMessage For="()=>modelTaxTools.company" />
<ValidationMessage For="()=>modelTaxTools.Mobile" />
</div>
<div class="row gx-20">
<div class="col-12">
<div class="postbox__comment-input mb-30">
<InputText @bind-Value="modelTaxTools.cn" id="cn" type="text" class="inputText" required="" />
<span class="floating-label">نام شرکت به حالت فینگلیش</span>
</div>
</div>
<div class="col-12">
<div class="postbox__comment-input mb-30">
<InputText @bind-Value="modelTaxTools.sn" id="sn" type="text" class="inputText" required="" />
<span class="floating-label">شناسه ملی شرکت</span>
</div>
</div>
<div class="col-12">
<div class="postbox__comment-input mb-35">
<InputText @bind-Value="modelTaxTools.company" id="company" type="text" class="inputText" required="" />
<span class="floating-label">نام شرکت به فارسی</span>
</div>
</div>
<div class="col-12">
<div class="postbox__comment-input mb-35">
<InputText @bind-Value="modelTaxTools.Mobile" id="Mobile" type="text" class="inputText" required="" />
<span class="floating-label">موبایل</span>
</div>
</div>
<div class="col-xxl-6">
<div class="postbox__btn-box w-50">
<button type="submit" class="btn btn-outline-primary">ایجاد CSR و PrivateKey</button>
</div>
</div>
@* <div class="col-xxl-6">
<div class="postbox__btn-box">
<a onclick="@ReadPublicKeyFromCER" class="btn btn-outline-primary">2)خواندن PublicKey</a>
</div>
</div> *@
</div>
</EditForm>
<br /> <br />
<div class="row">
<div class="col-12">
<div class="popular-blog-title mb-20">
<h4>2)خواندن کلید عمومی</h4>
</div>
<div class="row">
<label style="color:red">
@ErrorReadpublickey
</label>
</div>
<div class="row">
<label>
حداکثر سایز مجاز فایل @maxFileSize بایت:
<InputFile OnChange="ReadPublicKeyFromCER" multiple />
</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@code {
private long maxFileSize = 1024 * 15;
public string ErrorReadpublickey { get; set; }
private EditContext? editContext;
[SupplyParameterFromForm]
private CsrPrivateKeyDto? modelTaxTools { get; set; } = new CsrPrivateKeyDto();
private ValidationMessageStore? messageStore;
protected override void OnInitialized()
{
// modelTaxTools ??= new();
// editContext = new(modelTaxTools);
// editContext.OnValidationRequested += HandleValidationRequested;
// messageStore = new(editContext);
editContext = new EditContext(modelTaxTools);
messageStore = new(editContext);
base.OnInitialized();
}
// private void HandleValidationRequested(object? sender,
// ValidationRequestedEventArgs args)
// {
// messageStore?.Clear();
// // messageStore?.Add(() => modelTaxTools.Mobile, "Select at least one.");
// }
}
@functions {
private async Task CreateCsrAndPrivateKey()
{
var request = await _hc.PostAsJsonAsync("Base/CreateCsrAndPrivateKey", modelTaxTools);
if (request.IsSuccessStatusCode)
{
messageStore?.Clear();
var res = await request.Content.ReadFromJsonAsync<TaxToolsDTO>();
await DownloadFileFromStream(res.Base64csr, $"{modelTaxTools.cn}.{res.typecsr}");
await DownloadFileFromStream(res.Base64key, $"{modelTaxTools.cn}.{res.typekey}");
}
else
{
var error = await request.Content.ReadFromJsonAsync<List<string>>();
messageStore?.Add(() => modelTaxTools.Mobile, error);
}
}
private async Task ReadPublicKeyFromCER(InputFileChangeEventArgs e)
{
ErrorReadpublickey = "";
if (e.GetMultipleFiles()[0].Size <= maxFileSize)
{
string Base64Str = "";
using (MemoryStream stream = new MemoryStream())
{
await e.GetMultipleFiles()[0].OpenReadStream(maxFileSize).CopyToAsync(stream);
byte[] Array = stream.ToArray();
Base64Str = Convert.ToBase64String(Array);
}
if (!string.IsNullOrEmpty(Base64Str))
{
var request = await _hc.PostAsJsonAsync("Base/ReadPublicKeyFromCER", Base64Str);
if (request.IsSuccessStatusCode)
{
var res = await request.Content.ReadFromJsonAsync<PublicKeyDTO>();
await DownloadFileFromStream(res.PublicKeyBase64, $"{modelTaxTools.cn}.{res.type}");
}
else
{
ErrorReadpublickey = "خطایی در اجرای عملیات رخ داده";
}
}
}
else
{
ErrorReadpublickey = "حجم فایل بیشتر از حد مجاز می باشد";
}
}
private Stream GetFileStream(byte[] bytes)
{
var fileStream = new MemoryStream(bytes);
return fileStream;
}
private async Task DownloadFileFromStream(string Base64, string FileName)
{
byte[] bytes = System.Convert.FromBase64String(Base64);
var fileStream = GetFileStream(bytes);
// var fileName = "log.bin";
using var streamRef = new DotNetStreamReference(stream: fileStream);
await JS.InvokeVoidAsync("downloadFileFromStream", FileName, streamRef);
}
}
<script>
window.downloadFileFromStream = async (fileName, contentStreamReference) => {
const arrayBuffer = await contentStreamReference.arrayBuffer();
const blob = new Blob([arrayBuffer]);
const url = URL.createObjectURL(blob);
const anchorElement = document.createElement('a');
anchorElement.href = url;
anchorElement.download = fileName ?? '';
anchorElement.click();
anchorElement.remove();
URL.revokeObjectURL(url);
}
</script>