-
Notifications
You must be signed in to change notification settings - Fork 4
/
ios.go
71 lines (66 loc) · 2.22 KB
/
ios.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package svg
import (
"context"
"fmt"
"path/filepath"
"github.com/pkg/errors"
"projectforge.dev/projectforge/app/lib/filesystem"
"projectforge.dev/projectforge/app/project"
"projectforge.dev/projectforge/app/util"
)
func iOSAssets(ctx context.Context, prj *project.Project, orig string, fs filesystem.FileLoader, logger util.Logger) error {
if prj.Build == nil || (!prj.Build.IOS) {
return nil
}
iOSResize := func(size int, fn string, p string) {
if x := filepath.Dir(filepath.Join(p, fn)); !fs.Exists(x) {
_ = fs.CreateDirectory(x)
}
err := proc(ctx, fmt.Sprintf(pngMsg, size, size, fn), p, logger)
if err != nil {
logger.Warnf("error processing icon [%s]: %+v", fn, err)
}
}
const iOSLogoPath = "tools/ios/Assets.xcassets/AppIcon.appiconset/logo.svg"
iOSPath := filepath.Join(fs.Root(), "tools", "ios", "Assets.xcassets", "AppIcon.appiconset")
err := fs.WriteFile(iOSLogoPath, []byte(orig), filesystem.DefaultMode, true)
if err != nil {
return errors.Wrap(err, "unable to write temporary iOS [logo.svg]")
}
iOSResize(16, "16.png", iOSPath)
iOSResize(20, "20.png", iOSPath)
iOSResize(29, "29.png", iOSPath)
iOSResize(32, "32.png", iOSPath)
iOSResize(40, "40.png", iOSPath)
iOSResize(48, "48.png", iOSPath)
iOSResize(50, "50.png", iOSPath)
iOSResize(55, "55.png", iOSPath)
iOSResize(57, "57.png", iOSPath)
iOSResize(58, "58.png", iOSPath)
iOSResize(60, "60.png", iOSPath)
iOSResize(64, "64.png", iOSPath)
iOSResize(72, "72.png", iOSPath)
iOSResize(76, "76.png", iOSPath)
iOSResize(80, "80.png", iOSPath)
iOSResize(87, "87.png", iOSPath)
iOSResize(88, "88.png", iOSPath)
iOSResize(100, "100.png", iOSPath)
iOSResize(114, "114.png", iOSPath)
iOSResize(120, "120.png", iOSPath)
iOSResize(128, "128.png", iOSPath)
iOSResize(144, "144.png", iOSPath)
iOSResize(152, "152.png", iOSPath)
iOSResize(167, "167.png", iOSPath)
iOSResize(172, "172.png", iOSPath)
iOSResize(180, "180.png", iOSPath)
iOSResize(196, "196.png", iOSPath)
iOSResize(216, "216.png", iOSPath)
iOSResize(256, "256.png", iOSPath)
iOSResize(512, "512.png", iOSPath)
iOSResize(1024, "1024.png", iOSPath)
err = fs.Remove(iOSLogoPath, logger)
if err != nil {
return errors.Wrap(err, "unable to remove temporary iOS [logo.svg]")
}
return nil
}