This commit is contained in:
Rzy 2025-06-12 16:06:02 +08:00
commit b03790f796
15 changed files with 622 additions and 0 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

9
.idea/makePpt.iml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="Go" enabled="true" />
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/makePpt.iml" filepath="$PROJECT_DIR$/.idea/makePpt.iml" />
</modules>
</component>
</project>

3
a.md Normal file
View File

@ -0,0 +1,3 @@
```json
{"outline":{"sections":[{"contents":[{"items":[{"items":["三级章节内容"],"title":"三级章节标题"}],"subtitle":"二级章节副标题","title":"二级章节标题"}],"subtitle":"章节副标题","title":"章节标题"}],"subtitle":"ppt副标题","title":"ppt标题"}}
```

134
coze.go Normal file
View File

@ -0,0 +1,134 @@
package main
import (
"context"
"encoding/json"
"fmt"
"github.com/coze-dev/coze-go"
"net/http"
"time"
)
var (
token = "pat_3Qryy0Dgo1nA0eZ9CoTlC4GDQECphJcD7ZVWF5iSQ1qXMahca8xeWU08NFv9i8XY"
api = "https://api.coze.cn"
)
type OutlineResp struct {
Sections []struct {
Contents []struct {
Items []struct {
Items []string `json:"items"`
Title string `json:"title"`
} `json:"items"`
Subtitle string `json:"subtitle"`
Title string `json:"title"`
} `json:"contents"`
Subtitle string `json:"subtitle"`
Title string `json:"title"`
} `json:"sections"`
Subtitle string `json:"subtitle"`
Title string `json:"title"`
}
type ThemeResp struct {
Data []struct {
ID int `json:"id"`
Keywords string `json:"keywords"`
Thumbnail string `json:"thumbnail"`
Title string `json:"title"`
Type string `json:"type"`
} `json:"data"`
}
type PptResp struct {
FileUrl string `json:"file_url"`
}
func WorkflowOutline(ctx context.Context, keyword string) (resData OutlineResp, err error) {
workflowId := "7514159115984617524"
auth := coze.NewTokenAuth(token)
// Init the Coze client through the access_token.
cozeCli := coze.NewCozeAPI(auth, coze.WithBaseURL(api), coze.WithHttpClient(&http.Client{
Timeout: time.Second * 5000,
}))
// if your workflow need input params, you can send them by map
data := map[string]interface{}{
"keyword": keyword,
}
req := &coze.RunWorkflowsReq{
WorkflowID: workflowId,
Parameters: data,
IsAsync: false,
}
resp, err := cozeCli.Workflows.Runs.Create(ctx, req)
if err != nil {
return
}
json.Unmarshal([]byte(resp.Data), &resData)
return
}
func WorkflowTheme(ctx context.Context, keyword string) (res ThemeResp, err error) {
workflowId := "7514593043828539407"
auth := coze.NewTokenAuth(token)
// Init the Coze client through the access_token.
cozeCli := coze.NewCozeAPI(auth, coze.WithBaseURL(api), coze.WithHttpClient(&http.Client{
Timeout: time.Second * 5000,
}))
// if your workflow need input params, you can send them by map
data := map[string]interface{}{
"keyword": keyword,
}
req := &coze.RunWorkflowsReq{
WorkflowID: workflowId,
Parameters: data,
IsAsync: false,
}
resp, err := cozeCli.Workflows.Runs.Create(ctx, req)
fmt.Println(resp, req)
if err != nil {
return
}
err = json.Unmarshal([]byte(resp.Data), &res)
return
}
func WorkflowPpt(ctx context.Context, outline string, themeId int) (res PptResp, err error) {
workflowId := "7514654025384951820"
auth := coze.NewTokenAuth(token)
// Init the Coze client through the access_token.
cozeCli := coze.NewCozeAPI(auth, coze.WithBaseURL(api), coze.WithHttpClient(&http.Client{
Timeout: time.Second * 5000,
}))
// if your workflow need input params, you can send them by map
data := map[string]interface{}{
"outline": outline,
"themeId": themeId,
}
req := &coze.RunWorkflowsReq{
WorkflowID: workflowId,
Parameters: data,
IsAsync: false,
}
fmt.Println(themeId)
resp, err := cozeCli.Workflows.Runs.Create(ctx, req)
fmt.Println(resp, err)
if err != nil {
return
}
err = json.Unmarshal([]byte(resp.Data), &res)
return
}

10
coze_test.go Normal file
View File

@ -0,0 +1,10 @@
package main
import (
"context"
"testing"
)
func TestFlowApi(t *testing.T) {
Workflow(context.Background(), "手搓核弹")
}

42
go.mod Normal file
View File

@ -0,0 +1,42 @@
module makePpt
go 1.24.3
require fyne.io/fyne/v2 v2.6.1
require (
fyne.io/systray v1.11.0 // indirect
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/coze-dev/coze-go v0.0.0-20250604025746-0d3b62f445d2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fredbi/uri v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/fyne-io/gl-js v0.1.0 // indirect
github.com/fyne-io/glfw-js v0.2.0 // indirect
github.com/fyne-io/image v0.1.1 // indirect
github.com/fyne-io/oksvg v0.1.0 // indirect
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 // indirect
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a // indirect
github.com/go-text/render v0.2.0 // indirect
github.com/go-text/typesetting v0.2.1 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/hack-pad/go-indexeddb v0.3.2 // indirect
github.com/hack-pad/safejs v0.1.0 // indirect
github.com/jeandeaual/go-locale v0.0.0-20241217141322-fcc2cadd6f08 // indirect
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
github.com/nicksnyder/go-i18n/v2 v2.5.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rymdport/portal v0.4.1 // indirect
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c // indirect
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef // indirect
github.com/stretchr/testify v1.10.0 // indirect
github.com/yuin/goldmark v1.7.8 // indirect
golang.org/x/image v0.24.0 // indirect
golang.org/x/net v0.35.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

84
go.sum Normal file
View File

@ -0,0 +1,84 @@
fyne.io/fyne/v2 v2.6.1 h1:kjPJD4/rBS9m2nHJp+npPSuaK79yj6ObMTuzR6VQ1Is=
fyne.io/fyne/v2 v2.6.1/go.mod h1:YZt7SksjvrSNJCwbWFV32WON3mE1Sr7L41D29qMZ/lU=
fyne.io/systray v1.11.0 h1:D9HISlxSkx+jHSniMBR6fCFOUjk1x/OOOJLa9lJYAKg=
fyne.io/systray v1.11.0/go.mod h1:RVwqP9nYMo7h5zViCBHri2FgjXF7H2cub7MAq4NSoLs=
github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0=
github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
github.com/coze-dev/coze-go v0.0.0-20250604025746-0d3b62f445d2 h1:2OyH/CtCYSL8qzOS4dxpLWymNF6sZ5yVOsZl54mthG8=
github.com/coze-dev/coze-go v0.0.0-20250604025746-0d3b62f445d2/go.mod h1:kQAGkjYgJXNCmXDgb32ukpGvkNjM1Z4qHegTu8Eyjb0=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/felixge/fgprof v0.9.3 h1:VvyZxILNuCiUCSXtPtYmmtGvb65nqXh2QFWc0Wpf2/g=
github.com/felixge/fgprof v0.9.3/go.mod h1:RdbpDgzqYVh/T9fPELJyV7EYJuHB55UTEULNun8eiPw=
github.com/fredbi/uri v1.1.0 h1:OqLpTXtyRg9ABReqvDGdJPqZUxs8cyBDOMXBbskCaB8=
github.com/fredbi/uri v1.1.0/go.mod h1:aYTUoAXBOq7BLfVJ8GnKmfcuURosB1xyHDIfWeC/iW4=
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
github.com/fyne-io/gl-js v0.1.0 h1:8luJzNs0ntEAJo+8x8kfUOXujUlP8gB3QMOxO2mUdpM=
github.com/fyne-io/gl-js v0.1.0/go.mod h1:ZcepK8vmOYLu96JoxbCKJy2ybr+g1pTnaBDdl7c3ajI=
github.com/fyne-io/glfw-js v0.2.0 h1:8GUZtN2aCoTPNqgRDxK5+kn9OURINhBEBc7M4O1KrmM=
github.com/fyne-io/glfw-js v0.2.0/go.mod h1:Ri6te7rdZtBgBpxLW19uBpp3Dl6K9K/bRaYdJ22G8Jk=
github.com/fyne-io/image v0.1.1 h1:WH0z4H7qfvNUw5l4p3bC1q70sa5+YWVt6HCj7y4VNyA=
github.com/fyne-io/image v0.1.1/go.mod h1:xrfYBh6yspc+KjkgdZU/ifUC9sPA5Iv7WYUBzQKK7JM=
github.com/fyne-io/oksvg v0.1.0 h1:7EUKk3HV3Y2E+qypp3nWqMXD7mum0hCw2KEGhI1fnBw=
github.com/fyne-io/oksvg v0.1.0/go.mod h1:dJ9oEkPiWhnTFNCmRgEze+YNprJF7YRbpjgpWS4kzoI=
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 h1:5BVwOaUSBTlVZowGO6VZGw2H/zl9nrd3eCZfYV+NfQA=
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71/go.mod h1:9YTyiznxEY1fVinfM7RvRcjRHbw2xLBJ3AAGIT0I4Nw=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a h1:vxnBhFDDT+xzxf1jTJKMKZw3H0swfWk9RpWbBbDK5+0=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
github.com/go-text/render v0.2.0 h1:LBYoTmp5jYiJ4NPqDc2pz17MLmA3wHw1dZSVGcOdeAc=
github.com/go-text/render v0.2.0/go.mod h1:CkiqfukRGKJA5vZZISkjSYrcdtgKQWRa2HIzvwNN5SU=
github.com/go-text/typesetting v0.2.1 h1:x0jMOGyO3d1qFAPI0j4GSsh7M0Q3Ypjzr4+CEVg82V8=
github.com/go-text/typesetting v0.2.1/go.mod h1:mTOxEwasOFpAMBjEQDhdWRckoLLeI/+qrQeBCTGEt6M=
github.com/go-text/typesetting-utils v0.0.0-20241103174707-87a29e9e6066 h1:qCuYC+94v2xrb1PoS4NIDe7DGYtLnU2wWiQe9a1B1c0=
github.com/go-text/typesetting-utils v0.0.0-20241103174707-87a29e9e6066/go.mod h1:DDxDdQEnB70R8owOx3LVpEFvpMK9eeH1o2r0yZhFI9o=
github.com/godbus/dbus/v5 v5.1.0 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk=
github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd h1:1FjCyPC+syAzJ5/2S8fqdZK1R22vvA0J7JZKcuOIQ7Y=
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd/go.mod h1:KgnwoLYCZ8IQu3XUZ8Nc/bM9CCZFOyjUNOSygVozoDg=
github.com/hack-pad/go-indexeddb v0.3.2 h1:DTqeJJYc1usa45Q5r52t01KhvlSN02+Oq+tQbSBI91A=
github.com/hack-pad/go-indexeddb v0.3.2/go.mod h1:QvfTevpDVlkfomY498LhstjwbPW6QC4VC/lxYb0Kom0=
github.com/hack-pad/safejs v0.1.0 h1:qPS6vjreAqh2amUqj4WNG1zIw7qlRQJ9K10eDKMCnE8=
github.com/hack-pad/safejs v0.1.0/go.mod h1:HdS+bKF1NrE72VoXZeWzxFOVQVUSqZJAG0xNCnb+Tio=
github.com/jeandeaual/go-locale v0.0.0-20241217141322-fcc2cadd6f08 h1:wMeVzrPO3mfHIWLZtDcSaGAe2I4PW9B/P5nMkRSwCAc=
github.com/jeandeaual/go-locale v0.0.0-20241217141322-fcc2cadd6f08/go.mod h1:ZDXo8KHryOWSIqnsb/CiDq7hQUYryCgdVnxbj8tDG7o=
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25 h1:YLvr1eE6cdCqjOe972w/cYF+FjW34v27+9Vo5106B4M=
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25/go.mod h1:kLgvv7o6UM+0QSf0QjAse3wReFDsb9qbZJdfexWlrQw=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 h1:zYyBkD/k9seD2A7fsi6Oo2LfFZAehjjQMERAvZLEDnQ=
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646/go.mod h1:jpp1/29i3P1S/RLdc7JQKbRpFeM1dOBd8T9ki5s+AY8=
github.com/nicksnyder/go-i18n/v2 v2.5.1 h1:IxtPxYsR9Gp60cGXjfuR/llTqV8aYMsC472zD0D1vHk=
github.com/nicksnyder/go-i18n/v2 v2.5.1/go.mod h1:DrhgsSDZxoAfvVrBVLXoxZn/pN5TXqaDbq7ju94viiQ=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/pkg/profile v1.7.0 h1:hnbDkaNWPCLMO9wGLdBFTIZvzDrDfBM2072E1S9gJkA=
github.com/pkg/profile v1.7.0/go.mod h1:8Uer0jas47ZQMJ7VD+OHknK4YDY07LPUC6dEvqDjvNo=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rymdport/portal v0.4.1 h1:2dnZhjf5uEaeDjeF/yBIeeRo6pNI2QAKm7kq1w/kbnA=
github.com/rymdport/portal v0.4.1/go.mod h1:kFF4jslnJ8pD5uCi17brj/ODlfIidOxlgUDTO5ncnC4=
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c h1:km8GpoQut05eY3GiYWEedbTT0qnSxrCjsVbb7yKY1KE=
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c/go.mod h1:cNQ3dwVJtS5Hmnjxy6AgTPd0Inb3pW05ftPSX7NZO7Q=
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef h1:Ch6Q+AZUxDBCVqdkI8FSpFyZDtCVBc2VmejdNrm5rRQ=
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef/go.mod h1:nXTWP6+gD5+LUJ8krVhhoeHjvHTutPxMYl5SvkcnJNE=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/yuin/goldmark v1.7.8 h1:iERMLn0/QJeHFhxSt3p6PeN9mGnvIKSpG9YYorDMnic=
github.com/yuin/goldmark v1.7.8/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
golang.org/x/image v0.24.0 h1:AN7zRgVsbvmTfNyqIbbOraYL8mSwcKncEj8ofjgzcMQ=
golang.org/x/image v0.24.0/go.mod h1:4b/ITuLfqYq1hqZcjofwctIhi7sZh2WaCjvsBNjjya8=
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=
golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU=
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

BIN
img/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

55
main.go Normal file
View File

@ -0,0 +1,55 @@
package main
import (
"context"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/theme"
"fyne.io/fyne/v2/widget"
)
type themeObj struct {
id int
}
func main() {
var (
content []fyne.CanvasObject
theme themeObj
)
myWindow, myApp := InitApp()
ctx := context.Background()
keyword := widget.NewEntry()
keyword.SetPlaceHolder("请输入主题eg:核弹的手搓过程")
//大纲
outLine, input := ModuleOutline(ctx, keyword, myApp)
//主题
themes := ModuleTheme(ctx, keyword, &theme)
//生成ppt
ppt := ModulePpt(ctx, input, &theme, keyword)
//添加到窗口
content = append(content, keyword)
content = append(content, outLine...)
content = append(content, themes...)
content = append(content, ppt...)
myWindow.SetContent(container.NewVBox(
content...,
),
)
//// 显示并运行窗口
myWindow.ShowAndRun()
}
func InitApp() (fyne.Window, fyne.App) {
myApp := app.New()
myApp.Settings().SetTheme(theme.DefaultTheme())
// 创建一个窗口
myWindow := myApp.NewWindow("蓝色兄弟ppt创建测试版")
myWindow.Resize(fyne.NewSize(800, 500))
myWindow.CenterOnScreen()
return myWindow, myApp
}

181
module.go Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

32
theme.go Normal file
View File

@ -0,0 +1,32 @@
package main
import (
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/theme"
"image/color"
)
type myTheme struct{}
func (t myTheme) Color(name fyne.ThemeColorName, variant fyne.ThemeVariant) color.Color {
//TODO implement me
return color.RGBA{0, 128, 255, 255}
}
func (t myTheme) Font(style fyne.TextStyle) fyne.Resource {
//TODO implement me
return theme.DefaultTextFont()
}
func (t myTheme) Icon(name fyne.ThemeIconName) fyne.Resource {
//TODO implement me
return theme.DefaultTextFont()
}
func (t myTheme) Size(name fyne.ThemeSizeName) float32 {
//TODO implement me
return 0
}
func (myTheme) BackgroundColor() color.Color { return color.RGBA{0, 128, 255, 255} }
func (myTheme) ButtonColor() color.Color { return color.RGBA{0, 255, 128, 255} }

56
tools.go Normal file
View File

@ -0,0 +1,56 @@
package main
import (
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"strings"
"time"
)
func GetImg(url string) string {
path, _ := os.Getwd()
imgPath := fmt.Sprintf("%s/%s", path, "img")
dir := filepath.Dir(imgPath)
if _, err := os.Stat(dir); os.IsNotExist(err) {
os.MkdirAll(dir, 0755)
}
urlSlice := strings.Split(url, "/")
fileName := fmt.Sprintf("%s/%s", imgPath, urlSlice[len(urlSlice)-1])
_, err := os.Stat(fileName)
if os.IsNotExist(err) {
DownloadFile(url, fileName)
}
return fileName
}
func DownloadFile(url string, fileName string) {
resp, _ := http.Get(url)
defer resp.Body.Close()
out, _ := os.Create(fileName)
io.Copy(out, resp.Body)
defer out.Close()
}
func DownloadPpt(url string, fileName string) (file string) {
path, _ := os.Getwd()
pptPath := fmt.Sprintf("%s/%s", path, "ppt")
dir := filepath.Dir(pptPath)
fmt.Println(pptPath)
if _, err := os.Stat(dir); os.IsNotExist(err) {
e := os.MkdirAll(dir, 0755)
fmt.Println(e)
}
fileName = fmt.Sprintf("%s-%d", fileName, time.Now().Unix())
file = fmt.Sprintf("%s/%s.%s", pptPath, fileName, "pptx")
resp, _ := http.Get(url)
defer resp.Body.Close()
out, _ := os.Create(file)
io.Copy(out, resp.Body)
defer out.Close()
return
}