mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-01-24 06:52:16 +08:00
241 lines
6.3 KiB
Go
241 lines
6.3 KiB
Go
// Copyright (c) 2020 tickstep.
|
||
//
|
||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
// you may not use this file except in compliance with the License.
|
||
// You may obtain a copy of the License at
|
||
//
|
||
// http://www.apache.org/licenses/LICENSE-2.0
|
||
//
|
||
// Unless required by applicable law or agreed to in writing, software
|
||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
// See the License for the specific language governing permissions and
|
||
// limitations under the License.
|
||
package command
|
||
|
||
import (
|
||
"fmt"
|
||
"github.com/olekukonko/tablewriter"
|
||
"github.com/tickstep/aliyunpan-api/aliyunpan"
|
||
"github.com/tickstep/aliyunpan/cmder"
|
||
"github.com/tickstep/aliyunpan/cmder/cmdtable"
|
||
"github.com/tickstep/aliyunpan/internal/config"
|
||
"github.com/urfave/cli"
|
||
"os"
|
||
"strconv"
|
||
)
|
||
|
||
func CmdAlbum() cli.Command {
|
||
return cli.Command{
|
||
Name: "album",
|
||
Aliases: []string{"abm"},
|
||
Usage: "相簿",
|
||
UsageText: cmder.App().Name + " album",
|
||
Category: "阿里云盘",
|
||
Before: cmder.ReloadConfigFunc,
|
||
Action: func(c *cli.Context) error {
|
||
cli.ShowCommandHelp(c, c.Command.Name)
|
||
return nil
|
||
},
|
||
|
||
Subcommands: []cli.Command{
|
||
{
|
||
Name: "list",
|
||
Aliases: []string{"ls"},
|
||
Usage: "展示相簿列表",
|
||
UsageText: cmder.App().Name + " album list",
|
||
Description: `
|
||
示例:
|
||
|
||
展示相簿列表
|
||
aliyunpan album ls
|
||
`,
|
||
Action: func(c *cli.Context) error {
|
||
if config.Config.ActiveUser() == nil {
|
||
fmt.Println("未登录账号")
|
||
return nil
|
||
}
|
||
RunAlbumList()
|
||
return nil
|
||
},
|
||
Flags: []cli.Flag{},
|
||
},
|
||
{
|
||
Name: "new",
|
||
Aliases: []string{""},
|
||
Usage: "创建相簿",
|
||
UsageText: cmder.App().Name + " album new",
|
||
Description: `
|
||
示例:
|
||
|
||
新建相簿,名称为:我的相簿2022
|
||
aliyunpan album new "我的相簿2022"
|
||
|
||
新建相簿,名称为:我的相簿2022,描述为:存放2022所有文件
|
||
aliyunpan album new "我的相簿2022" "存放2022所有文件"
|
||
`,
|
||
Action: func(c *cli.Context) error {
|
||
if config.Config.ActiveUser() == nil {
|
||
fmt.Println("未登录账号")
|
||
return nil
|
||
}
|
||
RunAlbumCreate(c.Args().Get(0), c.Args().Get(1))
|
||
return nil
|
||
},
|
||
Flags: []cli.Flag{},
|
||
},
|
||
{
|
||
Name: "rm",
|
||
Aliases: []string{""},
|
||
Usage: "删除相簿",
|
||
UsageText: cmder.App().Name + " album rm",
|
||
Description: `
|
||
删除相簿,同名的相簿只会删除第一个符合条件的
|
||
示例:
|
||
|
||
删除名称为"我的相簿2022"的相簿
|
||
aliyunpan album rm "我的相簿2022"
|
||
|
||
删除名称为"我的相簿2022-1" 和 "我的相簿2022-2"的相簿
|
||
aliyunpan album rm "我的相簿2022-1" "我的相簿2022-2"
|
||
`,
|
||
Action: func(c *cli.Context) error {
|
||
if config.Config.ActiveUser() == nil {
|
||
fmt.Println("未登录账号")
|
||
return nil
|
||
}
|
||
RunAlbumDelete(c.Args())
|
||
return nil
|
||
},
|
||
Flags: []cli.Flag{},
|
||
},
|
||
{
|
||
Name: "rename",
|
||
Aliases: []string{""},
|
||
Usage: "重命名相簿",
|
||
UsageText: cmder.App().Name + " album rename",
|
||
Description: `
|
||
重命名相簿,同名的相簿只会修改第一个符合条件的
|
||
示例:
|
||
|
||
重命名相簿"我的相簿2022"为新的名称"我的相簿2022-new"
|
||
aliyunpan album rename "我的相簿2022" "我的相簿2022-new"
|
||
`,
|
||
Action: func(c *cli.Context) error {
|
||
if config.Config.ActiveUser() == nil {
|
||
fmt.Println("未登录账号")
|
||
return nil
|
||
}
|
||
RunAlbumRename(c.Args().Get(0), c.Args().Get(1))
|
||
return nil
|
||
},
|
||
Flags: []cli.Flag{},
|
||
},
|
||
},
|
||
}
|
||
}
|
||
|
||
func RunAlbumList() {
|
||
activeUser := GetActiveUser()
|
||
records, err := activeUser.PanClient().AlbumListGetAll(&aliyunpan.AlbumListParam{})
|
||
if err != nil {
|
||
fmt.Printf("获取相簿列表失败: %s\n", err)
|
||
return
|
||
}
|
||
|
||
tb := cmdtable.NewTable(os.Stdout)
|
||
tb.SetHeader([]string{"#", "ALBUM_ID", "名称", "文件数量", "创建日期", "修改日期"})
|
||
tb.SetColumnAlignment([]int{tablewriter.ALIGN_DEFAULT, tablewriter.ALIGN_DEFAULT, tablewriter.ALIGN_LEFT, tablewriter.ALIGN_CENTER, tablewriter.ALIGN_DEFAULT, tablewriter.ALIGN_DEFAULT})
|
||
for k, record := range records {
|
||
tb.Append([]string{strconv.Itoa(k), record.AlbumId, record.Name, strconv.Itoa(record.FileCount),
|
||
record.CreatedAtStr(), record.UpdatedAtStr()})
|
||
}
|
||
tb.Render()
|
||
}
|
||
|
||
func RunAlbumCreate(name, description string) {
|
||
if name == "" {
|
||
fmt.Printf("相簿名称不能为空\n")
|
||
return
|
||
}
|
||
|
||
activeUser := GetActiveUser()
|
||
_, err := activeUser.PanClient().AlbumCreate(&aliyunpan.AlbumCreateParam{
|
||
Name: name,
|
||
Description: description,
|
||
})
|
||
if err != nil {
|
||
fmt.Printf("创建相簿失败: %s\n", err)
|
||
return
|
||
}
|
||
fmt.Printf("创建相簿成功: %s\n", name)
|
||
}
|
||
|
||
func RunAlbumDelete(nameList []string) {
|
||
if len(nameList) == 0 {
|
||
fmt.Printf("相簿名称不能为空\n")
|
||
return
|
||
}
|
||
|
||
activeUser := GetActiveUser()
|
||
records, err := activeUser.PanClient().AlbumListGetAll(&aliyunpan.AlbumListParam{})
|
||
if err != nil {
|
||
fmt.Printf("获取相簿列表失败: %s\n", err)
|
||
return
|
||
}
|
||
|
||
for _, record := range records {
|
||
for i, name := range nameList {
|
||
if name == record.Name {
|
||
nameList = append(nameList[:i], nameList[i+1:]...)
|
||
_, err := activeUser.PanClient().AlbumDelete(&aliyunpan.AlbumDeleteParam{
|
||
AlbumId: record.AlbumId,
|
||
})
|
||
if err != nil {
|
||
fmt.Printf("删除相簿失败: %s\n", name)
|
||
return
|
||
} else {
|
||
fmt.Printf("删除相簿成功: %s\n", name)
|
||
}
|
||
break
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
func RunAlbumRename(name, newName string) {
|
||
if len(name) == 0 {
|
||
fmt.Printf("相簿名称不能为空\n")
|
||
return
|
||
}
|
||
if len(newName) == 0 {
|
||
fmt.Printf("相簿名称不能为空\n")
|
||
return
|
||
}
|
||
|
||
activeUser := GetActiveUser()
|
||
records, err := activeUser.PanClient().AlbumListGetAll(&aliyunpan.AlbumListParam{})
|
||
if err != nil {
|
||
fmt.Printf("获取相簿列表失败: %s\n", err)
|
||
return
|
||
}
|
||
|
||
for _, record := range records {
|
||
if name == record.Name {
|
||
_, err := activeUser.PanClient().AlbumEdit(&aliyunpan.AlbumEditParam{
|
||
AlbumId: record.AlbumId,
|
||
Description: record.Description,
|
||
Name: newName,
|
||
})
|
||
if err != nil {
|
||
fmt.Printf("重命名相簿失败: %s\n", name)
|
||
return
|
||
} else {
|
||
fmt.Printf("重命名相簿成功: %s -> %s\n", name, newName)
|
||
}
|
||
break
|
||
}
|
||
}
|
||
|
||
}
|