remove url filtering for backup

This commit is contained in:
shoopea 2019-10-20 13:05:46 +08:00
parent ffa06fa67e
commit 99b211e4d9

22
bot.go
View File

@ -440,17 +440,19 @@ func botBackupImport(m *tb.Message) {
TGCmdQueue <- c
return
}
r := regexp.MustCompile(`^((http[s]?\:)\/\/)?([^\?\:\/#]+)(\:([0-9]+))?(\/[^\?\#]*)?(\?([^#]*))?(#.*)?.zip$`)
if !r.MatchString(m.Payload) {
c := TGCommand{
Type: commandReplyMsg,
Text: "URL not valid.",
FromMsgID64: int64(m.ID),
FromChatID64: m.Chat.ID,
/*
r := regexp.MustCompile(`^((http[s]?\:)\/\/)?([^\?\:\/#]+)(\:([0-9]+))?(\/[^\?\#]*)?(\?([^#]*))?(#.*)?.zip$`)
if !r.MatchString(m.Payload) {
c := TGCommand{
Type: commandReplyMsg,
Text: "URL not valid.",
FromMsgID64: int64(m.ID),
FromChatID64: m.Chat.ID,
}
TGCmdQueue <- c
return
}
TGCmdQueue <- c
return
}
*/
p := JobPayloadBackupImport{
URL: m.Payload,