47 lines
812 B
Go
47 lines
812 B
Go
package service
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
type Proxy struct {
|
|
ID int64
|
|
Name string
|
|
Protocol string
|
|
Host string
|
|
Port int
|
|
Username string
|
|
Password string
|
|
Status string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
func (p *Proxy) IsActive() bool {
|
|
return p.Status == StatusActive
|
|
}
|
|
|
|
func (p *Proxy) URL() string {
|
|
if p.Username != "" && p.Password != "" {
|
|
return fmt.Sprintf("%s://%s:%s@%s:%d", p.Protocol, p.Username, p.Password, p.Host, p.Port)
|
|
}
|
|
return fmt.Sprintf("%s://%s:%d", p.Protocol, p.Host, p.Port)
|
|
}
|
|
|
|
type ProxyWithAccountCount struct {
|
|
Proxy
|
|
AccountCount int64
|
|
LatencyMs *int64
|
|
LatencyStatus string
|
|
LatencyMessage string
|
|
}
|
|
|
|
type ProxyAccountSummary struct {
|
|
ID int64
|
|
Name string
|
|
Platform string
|
|
Type string
|
|
Notes *string
|
|
}
|