mirror of
https://github.com/usememos/memos.git
synced 2024-11-17 12:17:39 +08:00
ce64894abe
* Add support for reverse proxy of telegram API * Add Telegram API proxy hint --------- Co-authored-by: Athurg Feng <athurg@gooth.org>
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package telegram
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
// downloadFileId download file with fileID, return the filepath and blob.
|
|
func (r *Robot) downloadFileID(ctx context.Context, fileID string) (string, []byte, error) {
|
|
file, err := r.GetFile(ctx, fileID)
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
blob, err := r.downloadFilepath(ctx, file.FilePath)
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
return file.FilePath, blob, nil
|
|
}
|
|
|
|
// downloadFilepath download file with filepath, you can get filepath by calling GetFile.
|
|
func (r *Robot) downloadFilepath(ctx context.Context, filePath string) ([]byte, error) {
|
|
apiURL, err := r.apiURL(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
idx := strings.LastIndex(apiURL, "/bot")
|
|
if idx < 0 {
|
|
return nil, ErrInvalidToken
|
|
}
|
|
|
|
fileURL := apiURL[:idx] + "/file" + apiURL[idx:]
|
|
|
|
resp, err := http.Get(fileURL + "/" + filePath)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("fail to http.Get: %s", err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("fail to io.ReadAll: %s", err)
|
|
}
|
|
|
|
return body, nil
|
|
}
|