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
30650435
Commit
30650435
authored
Sep 08, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
8639a54a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
5 deletions
+16
-5
HomeController.cs
Edu.WebApi/Controllers/User/HomeController.cs
+12
-3
appsettings.json
Edu.WebApi/appsettings.json
+4
-2
No files found.
Edu.WebApi/Controllers/User/HomeController.cs
View file @
30650435
...
...
@@ -35,7 +35,7 @@ namespace Edu.WebApi.Controllers.User
public
FileContentResult
DownloadFileForPdf
(
int
configId
,
string
url
)
{
DateTime
start
=
DateTime
.
Now
;
if
(!
Directory
.
Exists
(
"Z:"
))
if
(
Common
.
Config
.
IsLocal
==
0
&&
!
Directory
.
Exists
(
"Z:"
))
{
Console
.
WriteLine
(
"AA___Not:Z:"
);
Common
.
Plugin
.
LogHelper
.
WriteInfo
(
Common
.
Plugin
.
NetFileHelper
.
WNetAddConnection
(
@"fast-001\administrator"
,
"Vt@2023.."
,
@"\\172.16.103.126\WebFile"
,
"Z:"
).
ToString
());
...
...
@@ -55,6 +55,8 @@ namespace Edu.WebApi.Controllers.User
}
catch
(
Exception
ex
)
{
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"DownloadFileForPdf_Config_"
+
configId
);
Console
.
WriteLine
(
"DownloadFileForPdf::ex"
+
ex
.
Message
);
}
return
File
(
new
byte
[
0
],
"application/octet-stream"
);
...
...
@@ -70,13 +72,20 @@ namespace Edu.WebApi.Controllers.User
url
=
HttpUtility
.
UrlDecode
(
url
);
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"
)
{
var
result
=
await
new
BrowserFetcher
().
DownloadAsync
(
BrowserFetcher
.
DefaultChromiumRevision
);
}
var
browserOptions
=
new
LaunchOptions
{
Headless
=
true
,
ExecutablePath
=
chromePath
,
Args
=
argsList
.
ToArray
(),
};
// ExecutablePath = chromePath,
byte
[]
pdfBytes
=
null
;
using
(
var
browser
=
await
Puppeteer
.
LaunchAsync
(
browserOptions
))
{
...
...
@@ -89,7 +98,7 @@ namespace Edu.WebApi.Controllers.User
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
));
...
...
Edu.WebApi/appsettings.json
View file @
30650435
...
...
@@ -125,8 +125,10 @@
"TeacherAssessmentFlowId"
:
12
,
//不验证学员状态的订单(
1382
:商务日语听说班【企业课】)
"NoCheckOrders"
:
"1382"
,
//chrome浏览器地址
//chrome浏览器地址
"chromePath"
:
"C:/Users/Administrator/AppData/Local/Google/Chrome/Application/chrome.exe"
,
//行程头部底部图片
"FeaturePath"
:
"E:
\\
WebFile
\\
Feature
\\
"
"FeaturePath"
:
"E:
\\
WebFile
\\
Feature
\\
"
,
//
1
-下载Chrome
,
0
-不下载Chrome
"IsDownLoadChrome"
:
"1"
}
\ 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