Skip to content

Commit b6f3e8a

Browse files
Makes wayback timeout configurable
1 parent 8cf1d04 commit b6f3e8a

7 files changed

+59
-4
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ You can also specify configuration options either via command flags or via envir
210210
| - | `WAYBACK_BOLT_PATH` | `./wayback.db` | File path of bolt database |
211211
| - | `WAYBACK_STORAGE_DIR` | - | Directory to store binary file, e.g. PDF, html file |
212212
| - | `WAYBACK_MAX_MEDIA_SIZE` | `512MB` | Max size to limit download stream media |
213+
| - | `WAYBACK_TIMEOUT` | `300` | Timeout for single wayback request, defaults to 300 second |
213214
| `-d`, `--daemon` | - | - | Run as daemon service, e.g. `telegram`, `web`, `mastodon`, `twitter`, `discord` |
214215
| `--ia` | `WAYBACK_ENABLE_IA` | `true` | Wayback webpages to **Internet Archive** |
215216
| `--is` | `WAYBACK_ENABLE_IS` | `true` | Wayback webpages to **Archive Today** |

config/config_test.go

+37
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"os"
1313
"strconv"
1414
"testing"
15+
"time"
1516

1617
"github.com/wabarc/logger"
1718
)
@@ -1210,3 +1211,39 @@ func TestMaxMediaSize(t *testing.T) {
12101211
})
12111212
}
12121213
}
1214+
1215+
func TestWaybackTimeout(t *testing.T) {
1216+
t.Parallel()
1217+
1218+
var tests = []struct {
1219+
timeout int
1220+
expected time.Duration
1221+
}{
1222+
{
1223+
timeout: 0,
1224+
expected: 0 * time.Second,
1225+
},
1226+
{
1227+
timeout: 1,
1228+
expected: time.Second,
1229+
},
1230+
}
1231+
1232+
for i, test := range tests {
1233+
t.Run(strconv.Itoa(i), func(t *testing.T) {
1234+
os.Clearenv()
1235+
os.Setenv("WAYBACK_TIMEOUT", strconv.Itoa(test.timeout))
1236+
1237+
parser := NewParser()
1238+
opts, err := parser.ParseEnvironmentVariables()
1239+
if err != nil {
1240+
t.Fatalf(`Parsing environment variables failed: %v`, err)
1241+
}
1242+
1243+
got := opts.WaybackTimeout()
1244+
if got != test.expected {
1245+
t.Fatalf(`Unexpected set wayback timeout got %d instead of %d`, got, test.expected)
1246+
}
1247+
})
1248+
}
1249+
}

config/options.go

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ package config // import "github.com/wabarc/wayback/config"
77
import (
88
"net/url"
99
"strings"
10+
"time"
1011

1112
"github.com/dustin/go-humanize"
1213
"github.com/wabarc/logger"
@@ -71,6 +72,7 @@ const (
7172
defPoolingSize = 3
7273
defStorageDir = ""
7374
defMaxMediaSize = "512MB"
75+
defWaybackTimeout = 300
7476
)
7577

7678
var (
@@ -104,6 +106,7 @@ type Options struct {
104106
poolingSize int
105107
storageDir string
106108
maxMediaSize string
109+
waybackTimeout int
107110
}
108111

109112
type ipfs struct {
@@ -189,6 +192,7 @@ func NewOptions() *Options {
189192
poolingSize: defPoolingSize,
190193
storageDir: defStorageDir,
191194
maxMediaSize: defMaxMediaSize,
195+
waybackTimeout: defWaybackTimeout,
192196
ipfs: &ipfs{
193197
host: defIPFSHost,
194198
port: defIPFSPort,
@@ -621,3 +625,8 @@ func (o *Options) MaxAttachSize(scope string) int64 {
621625
}
622626
return scopes[scope]
623627
}
628+
629+
// WaybackTimeout returns timeout for a wayback request.
630+
func (o *Options) WaybackTimeout() time.Duration {
631+
return time.Duration(o.waybackTimeout) * time.Second
632+
}

config/parser.go

+2
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,8 @@ func (p *Parser) parseLines(lines []string) (err error) {
183183
p.opts.storageDir = parseString(val, defStorageDir)
184184
case "WAYBACK_MAX_MEDIA_SIZE":
185185
p.opts.maxMediaSize = parseString(val, defMaxMediaSize)
186+
case "WAYBACK_TIMEOUT":
187+
p.opts.waybackTimeout = parseInt(val, defWaybackTimeout)
186188
default:
187189
if os.Getenv(key) == "" && val != "" {
188190
os.Setenv(key, val)

wayback.1

+3
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ Enable IPFS\&.
153153
.B WAYBACK_POOLING_SIZE
154154
Number of worker pool for wayback at once. default 3\&.
155155
.TP
156+
.B WAYBACK_TIMEOUT
157+
Timeout for single wayback request, default 300\&.
158+
.TP
156159
.B WAYBACK_BOLT_PATH
157160
File path of bolt database. default ./wayback.db\&.
158161
.TP

wayback.conf

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ CHROME_REMOTE_ADDR=
4848
WAYBACK_POOLING_SIZE=3
4949
WAYBACK_STORAGE_DIR=
5050
WAYBACK_MAX_MEDIA_SIZE=512MB
51+
WAYBACK_TIMEOUT=300
5152

5253
# ipfs slot: infura, pinata
5354
# doc: https://github.com/wabarc/ipfs-pinner#supported-pinning-services

wayback.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import (
99
"fmt"
1010
"net/url"
1111
"sync"
12-
"time"
1312

1413
"github.com/wabarc/logger"
1514
"github.com/wabarc/playback"
@@ -150,14 +149,14 @@ func wayback(w Waybacker) string {
150149
func Wayback(ctx context.Context, bundles *reduxer.Bundles, urls ...string) (cols []Collect, err error) {
151150
logger.Debug("start...")
152151

152+
ctx, cancel := context.WithTimeout(ctx, config.Opts.WaybackTimeout())
153+
defer cancel()
154+
153155
*bundles, err = reduxer.Do(ctx, urls...)
154156
if err != nil {
155157
logger.Warn("cannot to start reduxer: %v", err)
156158
}
157159

158-
ctx, cancel := context.WithTimeout(ctx, 5*time.Minute)
159-
defer cancel()
160-
161160
mu := sync.Mutex{}
162161
g, ctx := errgroup.WithContext(ctx)
163162
for _, uri := range urls {
@@ -214,6 +213,9 @@ func Wayback(ctx context.Context, bundles *reduxer.Bundles, urls ...string) (col
214213
func Playback(ctx context.Context, urls ...string) (cols []Collect, err error) {
215214
logger.Debug("start...")
216215

216+
ctx, cancel := context.WithTimeout(ctx, config.Opts.WaybackTimeout())
217+
defer cancel()
218+
217219
mu := sync.Mutex{}
218220
g, ctx := errgroup.WithContext(ctx)
219221
var slots = []string{config.SLOT_IA, config.SLOT_IS, config.SLOT_IP, config.SLOT_PH, config.SLOT_TT, config.SLOT_GC}

0 commit comments

Comments
 (0)