mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-19 12:16:24 +08:00
58 lines
1.7 KiB
Go
58 lines
1.7 KiB
Go
package mediafire
|
|
|
|
/*
|
|
Package mediafire
|
|
Author: Da3zKi7<da3zki7@duck.com>
|
|
Date: 2025-09-11
|
|
|
|
D@' 3z K!7 - The King Of Cracking
|
|
|
|
Modifications by ILoveScratch2<ilovescratch@foxmail.com>
|
|
Date: 2025-09-14
|
|
*/
|
|
|
|
import (
|
|
"github.com/OpenListTeam/OpenList/v4/internal/driver"
|
|
"github.com/OpenListTeam/OpenList/v4/internal/op"
|
|
)
|
|
|
|
type Addition struct {
|
|
driver.RootPath
|
|
//driver.RootID
|
|
|
|
SessionToken string `json:"session_token" required:"true" type:"string" help:"Required for MediaFire API"`
|
|
Cookie string `json:"cookie" required:"true" type:"string" help:"Required for navigation"`
|
|
|
|
OrderBy string `json:"order_by" type:"select" options:"name,time,size" default:"name"`
|
|
OrderDirection string `json:"order_direction" type:"select" options:"asc,desc" default:"asc"`
|
|
ChunkSize int64 `json:"chunk_size" type:"number" default:"100"`
|
|
}
|
|
|
|
var config = driver.Config{
|
|
Name: "MediaFire",
|
|
LocalSort: false,
|
|
OnlyLinkMFile: false,
|
|
OnlyProxy: false,
|
|
NoCache: false,
|
|
NoUpload: false,
|
|
NeedMs: false,
|
|
DefaultRoot: "/",
|
|
CheckStatus: false,
|
|
Alert: "",
|
|
NoOverwriteUpload: true,
|
|
}
|
|
|
|
func init() {
|
|
op.RegisterDriver(func() driver.Driver {
|
|
return &Mediafire{
|
|
appBase: "https://app.mediafire.com",
|
|
apiBase: "https://www.mediafire.com/api/1.5",
|
|
hostBase: "https://www.mediafire.com",
|
|
maxRetries: 3,
|
|
secChUa: "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"139\", \"Google Chrome\";v=\"139\"",
|
|
secChUaPlatform: "Windows",
|
|
userAgent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36",
|
|
}
|
|
})
|
|
}
|