demo: cookie

This commit is contained in:
杨红岩 2022-11-20 17:18:01 +08:00
parent 31dbd27532
commit 3ca01256df
4 changed files with 128 additions and 21 deletions

View File

@ -1,16 +1,86 @@
package main package main
import ( import (
"embed"
"encoding/json"
"fmt"
"github.com/energye/energy/cef" "github.com/energye/energy/cef"
"github.com/energye/energy/common/assetserve"
"github.com/energye/energy/consts"
"github.com/energye/energy/ipc"
"github.com/energye/golcl/lcl"
"time"
) )
//资源目录,内置到执行程序中
//go:embed resources
var resources embed.FS
//这个示例使用了几个事件来演示下载文件
func main() { func main() {
//全局初始化 每个应用都必须调用的 //全局初始化 每个应用都必须调用的
cef.GlobalCEFInit(nil, nil) cef.GlobalCEFInit(nil, &resources)
//创建应用 //创建应用
cefApp := cef.NewApplication(nil) cefApp := cef.NewApplication(nil)
//主窗口的配置
//指定一个URL地址或本地html文件目录 //指定一个URL地址或本地html文件目录
cef.BrowserWindow.Config.DefaultUrl = "https://energy.yanghy.cn" cef.BrowserWindow.Config.DefaultUrl = "http://localhost:22022/cookie.html"
ipc.IPC.Browser().SetOnEvent(func(event ipc.IEventOn) {
//监听获取cookie事件
event.On("VisitCookie", func(context ipc.IIPCContext) {
fmt.Println("VisitCookie")
info := cef.BrowserWindow.GetWindowInfo(context.BrowserId())
info.Chromium().VisitURLCookies("https://www.baidu.com", true, 1)
info.Chromium().VisitAllCookies(0)
context.Result().SetString("执行成功,结果将在 SetOnCookiesVisited 事件中获得")
})
//监听删除cookie
event.On("DeleteCookie", func(context ipc.IIPCContext) {
info := cef.BrowserWindow.GetWindowInfo(context.BrowserId())
info.Chromium().DeleteCookies("", "", false)
context.Result().SetString("执行成功,结果将在 SetOnCookiesDeleted 事件中获得")
})
//监听设置cookie
event.On("SetCookie", func(context ipc.IIPCContext) {
info := cef.BrowserWindow.GetWindowInfo(context.BrowserId())
info.Chromium().SetCookie("https://www.example.com", "example_cookie_name", "1234", "", "/", true, true, false, time.Now(), time.Now(), time.Now(), consts.Ccss_CEF_COOKIE_SAME_SITE_UNSPECIFIED, consts.CEF_COOKIE_PRIORITY_MEDIUM, false, 0)
info.Chromium().SetCookie("https://www.example.com", "example_cookie_name2", "123422", "", "/", true, true, false, time.Now(), time.Now(), time.Now(), consts.Ccss_CEF_COOKIE_SAME_SITE_UNSPECIFIED, consts.CEF_COOKIE_PRIORITY_MEDIUM, false, 0)
info.Chromium().SetCookie("https://www.baidu.com", "demo_name", "4321", "", "/", true, true, false, time.Now(), time.Now(), time.Now(), consts.Ccss_CEF_COOKIE_SAME_SITE_NO_RESTRICTION, consts.CEF_COOKIE_PRIORITY_MEDIUM, false, 1)
context.Result().SetString("执行成功,结果将在 SetOnCookieSet 事件中获得")
})
})
//在SetBrowserInit中设置cookie事件,这些事件将返回操作后的结果
cef.BrowserWindow.SetBrowserInit(func(event *cef.BrowserEvent, browserWindow *cef.TCefWindowInfo) {
//获取cookie时触发
event.SetOnCookiesVisited(func(sender lcl.IObject, cookie *cef.ICefCookie) {
fmt.Printf("SetOnCookiesVisited: %+v\n", cookie)
args := ipc.NewArgumentList()
data, _ := json.Marshal(cookie)
args.SetString(0, string(data), true)
browserWindow.Chromium().Emit("VisitCookieResult", args, nil)
})
//删除cookie时触发
event.SetOnCookiesDeleted(func(sender lcl.IObject, numDeleted int32) {
fmt.Printf("SetOnCookiesDeleted: %+v\n", numDeleted)
})
//设置cookie时触发
event.SetOnCookieSet(func(sender lcl.IObject, success bool, ID int32) {
fmt.Println("SetOnCookieSet: ", success, ID)
})
})
//在主进程启动成功之后执行
//在这里启动内置http服务
//内置http服务需要使用 go:embed resources 内置资源到执行程序中
cef.SetBrowserProcessStartAfterCallback(func(b bool) {
fmt.Println("主进程启动 创建一个内置http服务")
//通过内置http服务加载资源
server := assetserve.NewAssetsHttpServer()
server.PORT = 22022 //服务端口号
server.AssetsFSName = "resources" //必须设置目录名和资源文件夹同名
server.Assets = &resources
go server.StartHttpServer()
})
//运行应用 //运行应用
cef.Run(cefApp) cef.Run(cefApp)
} }

View File

@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>cookie</title>
<style type="text/css">
button {
margin: 10px;
}
</style>
<script type="application/javascript">
function message() {
return document.getElementById("message");
}
//显示cookie
function VisitCookie() {
message().innerHTML = "";
//触发go中监听的事件
ipc.emit("VisitCookie", function (data) {
message().innerHTML = data;
});
}
//显示cookie的结果从go中返回到html
ipc.on("VisitCookieResult", function (data) {
message().innerHTML = message().innerHTML + data + "<br><br>";
});
//删除cookie
function DeleteCookie() {
message().innerHTML = "";
//触发go中监听的事件
ipc.emit("DeleteCookie", function (data) {
message().innerHTML = data;
});
}
//设置cookie
function SetCookie() {
message().innerHTML = "";
//触发go中监听的事件
ipc.emit("SetCookie", function (data) {
message().innerHTML = data;
});
}
</script>
</head>
<body style="overflow: hidden;margin: 0px;padding: 0px;">
<button onclick="VisitCookie()">查看cookie</button>
<button onclick="DeleteCookie()">删除cookie</button>
<button onclick="SetCookie()">设置cookie</button>
<br>
<div id="message">
</div>
</body>
</html>

View File

@ -1,16 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>cookie</title>
<style>
</style>
<script type="application/javascript">
</script>
</head>
<body style="overflow: hidden;margin: 0px;padding: 0px;">
<a href="https://www.baidu.com">百度</a>
<a href="https://energy.yanghy.cn">Energy</a>
</body>
</html>

View File

@ -15,9 +15,6 @@
</head> </head>
<body style="overflow: hidden;margin: 10px;padding: 10px;"> <body style="overflow: hidden;margin: 10px;padding: 10px;">
<h3>download demo:</h3><br> <h3>download demo:</h3><br>
<h4>
</h4>
<a href="https://gitee.com/energye/energy/releases/download/v1.107.1.11/Windows%2032%20bits.zip">Windows 32 bits</a> <a href="https://gitee.com/energye/energy/releases/download/v1.107.1.11/Windows%2032%20bits.zip">Windows 32 bits</a>
<br> <br>
<a href="https://gitee.com/energye/energy/releases/download/v1.107.1.11/Windows%2064%20bits.zip">Windows 64 bits</a> <a href="https://gitee.com/energye/energy/releases/download/v1.107.1.11/Windows%2064%20bits.zip">Windows 64 bits</a>