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
8639a54a
Commit
8639a54a
authored
Sep 08, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增引用
parent
8a40daec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
141 additions
and
1 deletion
+141
-1
HomeController.cs
Edu.WebApi/Controllers/User/HomeController.cs
+135
-0
Edu.WebApi.csproj
Edu.WebApi/Edu.WebApi.csproj
+1
-0
appsettings.json
Edu.WebApi/appsettings.json
+5
-1
No files found.
Edu.WebApi/Controllers/User/HomeController.cs
0 → 100644
View file @
8639a54a
using
Edu.WebApi.Filter
;
using
Microsoft.AspNetCore.Authorization
;
using
Microsoft.AspNetCore.Cors
;
using
Microsoft.AspNetCore.Mvc
;
using
PuppeteerSharp
;
using
System
;
using
System.Collections.Generic
;
using
System.IO
;
using
System.Threading.Tasks
;
using
System.Web
;
namespace
Edu.WebApi.Controllers.User
{
[
Route
(
"api/[controller]/[action]"
)]
[
ApiExceptionFilter
]
[
ApiController
]
[
EnableCors
(
"AllowCors"
)]
public
class
HomeController
:
BaseController
{
[
HttpGet
]
[
HttpPost
]
[
AllowAnonymous
]
public
string
Test
()
{
return
"HK"
;
}
/// <summary>
/// 文件流下载
/// </summary>
/// <returns></returns>
[
HttpGet
]
[
HttpPost
]
[
AllowAnonymous
]
public
FileContentResult
DownloadFileForPdf
(
int
configId
,
string
url
)
{
DateTime
start
=
DateTime
.
Now
;
if
(!
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
());
}
else
{
Console
.
WriteLine
(
"BB__Yes:Z:"
);
}
Console
.
WriteLine
(
"{0} DownloadFileForPdf生成pdf...."
,
start
.
ToString
(
"yyyy-MM-dd HH:mm:ss fff"
));
try
{
byte
[]
bytes
=
CreateFeatureFileByte
(
url
,
configId
).
Result
;
DateTime
end
=
DateTime
.
Now
;
string
logStr
=
string
.
Format
(
@"生成PDF 开始时间:{0} 结束时间:{1} "
,
start
.
ToString
(
"yyyy-MM-dd HH:mm:ss fff"
),
end
.
ToString
(
"yyyy-MM-dd HH:mm:ss fff"
));
Console
.
WriteLine
(
logStr
);
return
File
(
bytes
,
"application/octet-stream"
);
}
catch
(
Exception
ex
)
{
Console
.
WriteLine
(
"DownloadFileForPdf::ex"
+
ex
.
Message
);
}
return
File
(
new
byte
[
0
],
"application/octet-stream"
);
}
/// <summary>
/// 生成PDF
/// </summary>
/// <param name="url"></param>
/// <returns>byte[]</returns>
private
async
Task
<
byte
[
]>
CreateFeatureFileByte
(
string
url
,
int
configId
)
{
url
=
HttpUtility
.
UrlDecode
(
url
);
var
chromePath
=
Common
.
Config
.
ReadConfigKey
(
"chromePath"
);
string
featurePath
=
Common
.
Config
.
ReadConfigKey
(
"FeaturePath"
);
List
<
string
>
argsList
=
new
List
<
string
>();
var
browserOptions
=
new
LaunchOptions
{
Headless
=
true
,
ExecutablePath
=
chromePath
,
Args
=
argsList
.
ToArray
(),
};
byte
[]
pdfBytes
=
null
;
using
(
var
browser
=
await
Puppeteer
.
LaunchAsync
(
browserOptions
))
{
using
(
var
page
=
await
browser
.
NewPageAsync
())
{
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
,
MarginOptions
=
new
PuppeteerSharp
.
Media
.
MarginOptions
()
{
Top
=
top
,
Bottom
=
bottom
,
Left
=
"0px"
,
Right
=
"0px"
,
},
DisplayHeaderFooter
=
true
,
FooterTemplate
=
footerContent
,
HeaderTemplate
=
headerContent
,
});
await
browser
.
CloseAsync
();
}
}
return
pdfBytes
;
}
private
string
ConvertImageToBase64
(
string
url
)
{
System
.
Drawing
.
Image
file
=
System
.
Drawing
.
Image
.
FromFile
(
url
);
using
(
MemoryStream
memoryStream
=
new
MemoryStream
())
{
file
.
Save
(
memoryStream
,
file
.
RawFormat
);
byte
[]
imageBytes
=
memoryStream
.
ToArray
();
return
Convert
.
ToBase64String
(
imageBytes
);
}
}
}
}
Edu.WebApi/Edu.WebApi.csproj
View file @
8639a54a
...
...
@@ -30,6 +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="Spire.Doc" Version="8.12.14" />
</ItemGroup>
<ItemGroup>
...
...
Edu.WebApi/appsettings.json
View file @
8639a54a
...
...
@@ -124,5 +124,9 @@
//教师考核审批流程编号
"TeacherAssessmentFlowId"
:
12
,
//不验证学员状态的订单(
1382
:商务日语听说班【企业课】)
"NoCheckOrders"
:
"1382"
"NoCheckOrders"
:
"1382"
,
//chrome浏览器地址
"chromePath"
:
"C:/Users/Administrator/AppData/Local/Google/Chrome/Application/chrome.exe"
,
//行程头部底部图片
"FeaturePath"
:
"E:
\\
WebFile
\\
Feature
\\
"
}
\ 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