Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
45d2345f
Commit
45d2345f
authored
Sep 11, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
30650435
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
30 deletions
+43
-30
HomeController.cs
Edu.WebApi/Controllers/User/HomeController.cs
+39
-26
Edu.WebApi.csproj
Edu.WebApi/Edu.WebApi.csproj
+2
-2
appsettings.json
Edu.WebApi/appsettings.json
+1
-1
run_5001.cmd
Edu.WebApi/run_5001.cmd
+1
-1
No files found.
Edu.WebApi/Controllers/User/HomeController.cs
View file @
45d2345f
...
...
@@ -35,14 +35,14 @@ namespace Edu.WebApi.Controllers.User
public
FileContentResult
DownloadFileForPdf
(
int
configId
,
string
url
)
{
DateTime
start
=
DateTime
.
Now
;
if
(
Common
.
Config
.
IsLocal
==
0
&&
!
Directory
.
Exists
(
"Z:"
))
if
(
Common
.
Config
.
IsLocal
==
0
&&
Directory
.
Exists
(
"Z:"
))
{
Console
.
WriteLine
(
"AA___
Not
:Z:"
);
Console
.
WriteLine
(
"AA___
Yes
:Z:"
);
Common
.
Plugin
.
LogHelper
.
WriteInfo
(
Common
.
Plugin
.
NetFileHelper
.
WNetAddConnection
(
@"fast-001\administrator"
,
"Vt@2023.."
,
@"\\172.16.103.126\WebFile"
,
"Z:"
).
ToString
());
}
else
{
Console
.
WriteLine
(
"BB__
Yes
:Z:"
);
Console
.
WriteLine
(
"BB__
No
:Z:"
);
}
Console
.
WriteLine
(
"{0} DownloadFileForPdf生成pdf...."
,
start
.
ToString
(
"yyyy-MM-dd HH:mm:ss fff"
));
try
...
...
@@ -73,19 +73,48 @@ namespace Edu.WebApi.Controllers.User
var
chromePath
=
Common
.
Config
.
ReadConfigKey
(
"chromePath"
);
string
featurePath
=
Common
.
Config
.
ReadConfigKey
(
"FeaturePath"
);
string
IsDownLoadChrome
=
Common
.
Config
.
ReadConfigKey
(
"IsDownLoadChrome"
);
List
<
string
>
argsList
=
new
List
<
string
>();
//是否下载Chrome
if
(
IsDownLoadChrome
==
"1"
)
string
headerFile
=
string
.
Format
(
@"{0}\\{1}_\\header_1.png"
,
featurePath
,
configId
);
string
footerFile
=
string
.
Format
(
@"{0}\\{1}_\\footer_1.png"
,
featurePath
,
configId
);
string
headerContent
=
""
;
string
top
=
"0px"
;
string
bottom
=
"0px"
;
Console
.
WriteLine
(
"headerFile::Path__"
+
headerFile
);
if
(
System
.
IO
.
File
.
Exists
(
headerFile
))
{
var
result
=
await
new
BrowserFetcher
().
DownloadAsync
(
BrowserFetcher
.
DefaultChromiumRevision
);
headerContent
=
string
.
Format
(
@"<img src='data:image/png;base64,{0}' style='width:100%;'></img>"
,
ConvertImageToBase64
(
headerFile
));
top
=
"92px"
;
Console
.
WriteLine
(
"Exists___Header"
+
configId
);
}
string
footerContent
=
""
;
if
(
System
.
IO
.
File
.
Exists
(
footerFile
))
{
footerContent
=
string
.
Format
(
@"<img src='data:image/png;base64,{0}' style='width:100%;height:auto;'></img>"
,
ConvertImageToBase64
(
footerFile
));
bottom
=
"50px"
;
Console
.
WriteLine
(
"Exists___Footer___"
+
configId
);
}
List
<
string
>
argsList
=
new
List
<
string
>();
var
browserOptions
=
new
LaunchOptions
{
Headless
=
true
,
Args
=
argsList
.
ToArray
(),
};
// ExecutablePath = chromePath,
//是否下载Chrome
if
(
IsDownLoadChrome
==
"1"
)
{
var
result
=
await
new
BrowserFetcher
().
DownloadAsync
();
}
else
{
//string path= Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ".local-chromium", "Win64-970485", "chrome-win", "UserData").Replace(@"\", @"\\");
//Console.WriteLine("path::" + path);
//browserOptions.UserDataDir = path;
//string newPath= Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ".local-chromium", "Win64-970485", "chrome-win", "chrome.exe").Replace(@"\", @"\\");
//Console.WriteLine("newPath::" + newPath);
//browserOptions.ExecutablePath = newPath;
//browserOptions.ExecutablePath = chromePath;
}
byte
[]
pdfBytes
=
null
;
using
(
var
browser
=
await
Puppeteer
.
LaunchAsync
(
browserOptions
))
{
...
...
@@ -93,23 +122,7 @@ namespace Edu.WebApi.Controllers.User
{
await
page
.
GoToAsync
(
url
);
await
page
.
WaitForTimeoutAsync
(
10
*
1000
);
string
headerFile
=
string
.
Format
(
@"{0}\\{1}_\\header_1.png"
,
featurePath
,
configId
);
string
footerFile
=
string
.
Format
(
@"{0}\\{1}_\\footer_1.png"
,
featurePath
,
configId
);
string
headerContent
=
""
;
string
top
=
"0px"
;
string
bottom
=
"0px"
;
if
(
System
.
IO
.
File
.
Exists
(
headerFile
))
{
headerContent
=
string
.
Format
(
@"<img src='data:image/png;base64,{0}' style='width:100%;'></img>"
,
ConvertImageToBase64
(
headerFile
));
top
=
"92px"
;
}
string
footerContent
=
""
;
if
(
System
.
IO
.
File
.
Exists
(
footerFile
))
{
footerContent
=
string
.
Format
(
@"<img src='data:image/png;base64,{0}' style='width:100%;height:auto;'></img>"
,
ConvertImageToBase64
(
footerFile
));
bottom
=
"50px"
;
}
pdfBytes
=
await
page
.
PdfDataAsync
(
new
PdfOptions
()
{
PrintBackground
=
true
,
...
...
Edu.WebApi/Edu.WebApi.csproj
View file @
45d2345f
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.
0
</TargetFramework>
<TargetFramework>netcoreapp3.
1
</TargetFramework>
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
</PropertyGroup>
<PropertyGroup>
...
...
@@ -30,7 +30,7 @@
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" />
<PackageReference Include="PuppeteerSharp" Version="
7.1.0
" />
<PackageReference Include="PuppeteerSharp" Version="
11.0.2
" />
<PackageReference Include="Spire.Doc" Version="8.12.14" />
</ItemGroup>
<ItemGroup>
...
...
Edu.WebApi/appsettings.json
View file @
45d2345f
...
...
@@ -130,5 +130,5 @@
//行程头部底部图片
"FeaturePath"
:
"E:
\\
WebFile
\\
Feature
\\
"
,
//
1
-下载Chrome
,
0
-不下载Chrome
"IsDownLoadChrome"
:
"
1
"
"IsDownLoadChrome"
:
"
0
"
}
\ No newline at end of file
Edu.WebApi/run_5001.cmd
View file @
45d2345f
@echo off
echo ASPNETCORE_ENVIRONMENT=Development
dotnet build
start "Edu.WebApi" dotnet bin\Debug\netcoreapp3.
0
\Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001
start "Edu.WebApi" dotnet bin\Debug\netcoreapp3.
1
\Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001
exit
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment