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
|
package platforms
import (
"context"
"fmt"
"strings"
"codeberg.org/snonux/gos/internal/colour"
"codeberg.org/snonux/gos/internal/config"
"codeberg.org/snonux/gos/internal/entry"
"codeberg.org/snonux/gos/internal/platforms/linkedin"
"codeberg.org/snonux/gos/internal/platforms/mastodon"
)
type Platform string
var aliases = map[string]string{
"linkedin": "linkedin",
"li": "linkedin",
"mastodon": "mastodon",
"ma": "mastodon",
"xcom": "xcom",
"x": "xcom",
"twitter": "xcom",
"tw": "xcom",
}
func New(platformStr string) (Platform, error) {
var p Platform
name, ok := aliases[strings.ToLower(platformStr)]
if !ok {
return p, fmt.Errorf("no such platform: '%s'", platformStr)
}
return Platform(name), nil
}
func (p Platform) String() string {
return string(p)
}
func (p Platform) Post(ctx context.Context, args config.Args, sizeLimit int, en entry.Entry) (err error) {
colour.Infoln("Posting", en)
switch p.String() {
case "mastodon":
err = mastodon.Post(ctx, args, sizeLimit, en)
case "linkedin":
err = linkedin.Post(ctx, args, sizeLimit, en)
default:
err = fmt.Errorf("Platform '%s' (not yet) implemented", p)
}
if err != nil {
return err
}
if err := en.MarkPosted(); err != nil {
return err
}
colour.Successf("Successfully posted message to %s", p)
fmt.Print("\n")
return nil
}
|