config

package
v0.1.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 5, 2023 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Overview

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.

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.

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.

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.

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.

Index

Constants

View Source
const (
	// EnvVerbose 启用调试环境变量
	EnvVerbose = "CLOUD189_VERBOSE"
	// EnvConfigDir 配置路径环境变量
	EnvConfigDir = "CLOUD189_CONFIG_DIR"
	// ConfigName 配置文件名
	ConfigName = "cloud189_config.json"
	// ConfigVersion 配置文件版本
	ConfigVersion string = "1.0"

	// DefaultFileUploadParallelNum 默认的文件上传并发数量
	DefaultFileUploadParallelNum = 10

	// MaxFileUploadParallelNum 最大文件上传并发数量
	MaxFileUploadParallelNum = 20

	// DefaultFileDownloadParallelNum 默认的文件下载并发数量
	DefaultFileDownloadParallelNum = 5

	// MaxFileDownloadParallelNum 最大文件下载并发数量
	MaxFileDownloadParallelNum = 20
)

Variables

View Source
var (
	//ErrNotLogin 未登录帐号错误
	ErrNotLogin = errors.New("user not login")
	//ErrConfigFilePathNotSet 未设置配置文件
	ErrConfigFilePathNotSet = errors.New("config file not set")
	//ErrConfigFileNotExist 未设置Config, 未初始化
	ErrConfigFileNotExist = errors.New("config file not exist")
	//ErrConfigFileNoPermission Config文件无权限访问
	ErrConfigFileNoPermission = errors.New("config file permission denied")
	//ErrConfigContentsParseError 解析Config数据错误
	ErrConfigContentsParseError = errors.New("config contents parse error")
)
View Source
var (
	CmdConfigVerbose = logger.New("CONFIG", EnvVerbose)

	// Config 配置信息, 由外部调用
	Config = NewConfig(configFilePath)

	AppVersion string
)

Functions

func AverageParallel

func AverageParallel(parallel, downloadLoad int) int

AverageParallel 返回平均的下载最大并发量

func DecryptString

func DecryptString(text string) string

DecryptString 解密

func EncryptString

func EncryptString(text string) string

EncryptString 加密

func GetConfigDir

func GetConfigDir() string

GetConfigDir 获取配置路径

func IsFolderExist added in v0.1.3

func IsFolderExist(pathStr string) bool

IsFolderExist 判断文件夹是否存在

Types

type PanConfig

type PanConfig struct {
	ConfigVer string `json:"configVer"`
	ActiveUID uint64 `json:"activeUID"`

	UserList PanUserList `json:"userList"`

	CacheSize           int `json:"cacheSize"`           // 下载缓存
	MaxDownloadParallel int `json:"maxDownloadParallel"` // 最大下载并发量,即同时下载文件最大数量
	MaxUploadParallel   int `json:"maxUploadParallel"`   // 最大上传并发量,即同时上传文件最大数量

	MaxDownloadRate int64 `json:"maxDownloadRate"` // 限制最大下载速度,单位 B/s, 即字节/每秒
	MaxUploadRate   int64 `json:"maxUploadRate"`   // 限制最大上传速度,单位 B/s, 即字节/每秒

	SaveDir string `json:"saveDir"` // 下载储存路径

	Proxy           string          `json:"proxy"`      // 代理
	LocalAddrs      string          `json:"localAddrs"` // 本地网卡地址
	UpdateCheckInfo UpdateCheckInfo `json:"updateCheckInfo"`
	// contains filtered or unexported fields
}

PanConfig 配置详情

func NewConfig

func NewConfig(configFilePath string) *PanConfig

NewConfig 返回 PanConfig 指针对象

func (*PanConfig) ActiveUser

func (c *PanConfig) ActiveUser() *PanUser

func (*PanConfig) Close

func (c *PanConfig) Close() error

Close 关闭配置文件

func (*PanConfig) DeleteUser

func (c *PanConfig) DeleteUser(uid uint64) (*PanUser, error)

DeleteUser 删除用户,并自动切换登录用户为用户列表第一个

func (*PanConfig) HTTPClient added in v0.0.2

func (c *PanConfig) HTTPClient(ua string) *requester.HTTPClient

HTTPClient 返回设置好的 HTTPClient

func (*PanConfig) Init

func (c *PanConfig) Init() error

Init 初始化配置

func (*PanConfig) NumLogins

func (c *PanConfig) NumLogins() int

NumLogins 获取登录的用户数量

func (*PanConfig) PrintTable

func (c *PanConfig) PrintTable()

PrintTable 输出表格

func (*PanConfig) Reload

func (c *PanConfig) Reload() error

Reload 从文件重载配置

func (*PanConfig) Save

func (c *PanConfig) Save() error

Save 保存配置信息到配置文件

func (*PanConfig) SetActiveUser

func (c *PanConfig) SetActiveUser(user *PanUser) *PanUser

func (*PanConfig) SetCacheSizeByStr

func (c *PanConfig) SetCacheSizeByStr(sizeStr string) error

SetCacheSizeByStr 设置cache_size

func (*PanConfig) SetLocalAddrs

func (c *PanConfig) SetLocalAddrs(localAddrs string)

SetLocalAddrs 设置localAddrs

func (*PanConfig) SetMaxDownloadRateByStr

func (c *PanConfig) SetMaxDownloadRateByStr(sizeStr string) error

SetMaxDownloadRateByStr 设置 max_download_rate

func (*PanConfig) SetMaxUploadRateByStr

func (c *PanConfig) SetMaxUploadRateByStr(sizeStr string) error

SetMaxUploadRateByStr 设置 max_upload_rate

func (*PanConfig) SetProxy

func (c *PanConfig) SetProxy(proxy string)

SetProxy 设置代理

func (*PanConfig) SwitchUser

func (c *PanConfig) SwitchUser(uid uint64, username string) (*PanUser, error)

SwitchUser 切换登录用户

type PanUser

type PanUser struct {
	UID               uint64                 `json:"uid"`
	Nickname          string                 `json:"nickname"`
	AccountName       string                 `json:"accountName"`
	Sex               string                 `json:"sex"`
	Workdir           string                 `json:"workdir"`
	WorkdirFileEntity cloudpan.AppFileEntity `json:"workdirFileEntity"`

	FamilyWorkdir           string                 `json:"familyWorkdir"`
	FamilyWorkdirFileEntity cloudpan.AppFileEntity `json:"familyWorkdirFileEntity"`

	ActiveFamilyId   int64                  `json:"activeFamilyId"` // 0代表个人云
	ActiveFamilyInfo cloudpan.AppFamilyInfo `json:"activeFamilyInfo"`

	LoginUserName     string `json:"loginUserName"`
	LoginUserPassword string `json:"loginUserPassword"`

	WebToken cloudpan.WebLoginToken `json:"webToken"`
	AppToken cloudpan.AppLoginToken `json:"appToken"`
	// contains filtered or unexported fields
}

func SetupUserByCookie

func SetupUserByCookie(webToken *cloudpan.WebLoginToken, appToken *cloudpan.AppLoginToken) (user *PanUser, err *apierror.ApiError)

func (*PanUser) CacheFilesDirectoriesList added in v0.1.3

func (pu *PanUser) CacheFilesDirectoriesList(pathStr string) (fdl *cloudpan.AppFileList, apiError *apierror.ApiError)

CacheFilesDirectoriesList 缓存获取

func (*PanUser) DeleteCache added in v0.1.3

func (pu *PanUser) DeleteCache(dirs []string)

DeleteCache 删除含有 dirs 的缓存

func (*PanUser) DeleteOneCache added in v0.1.3

func (pu *PanUser) DeleteOneCache(dirPath string)

DeleteOneCache 删除缓存

func (*PanUser) FreshWorkdirInfo

func (pu *PanUser) FreshWorkdirInfo()

func (*PanUser) GetSavePath

func (pu *PanUser) GetSavePath(filePanPath string) string

GetSavePath 根据提供的网盘文件路径 panpath, 返回本地储存路径, 返回绝对路径, 获取绝对路径出错时才返回相对路径...

func (*PanUser) PanClient

func (pu *PanUser) PanClient() *cloudpan.PanClient

func (*PanUser) PathJoin

func (pu *PanUser) PathJoin(familyId int64, p string) string

PathJoin 合并工作目录和相对路径p, 若p为绝对路径则忽略

type PanUserList

type PanUserList []*PanUser

func (*PanUserList) String

func (pl *PanUserList) String() string

type UpdateCheckInfo added in v0.0.6

type UpdateCheckInfo struct {
	PreferUpdateSrv string `json:"preferUpdateSrv"` // 优先更新服务器,github | tickstep
	LatestVer       string `json:"latestVer"`       // 最后检测到的版本
	CheckTime       int64  `json:"checkTime"`       // 最后检测的时间戳,单位为秒
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL