blob: f899357282e593a6fe5e53d9420c1ca745442663 (
plain)
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
|
package platforms
import (
"fmt"
"strings"
)
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)
}
|