mirror of https://github.com/Xhofe/alist
				
				
				
			
		
			
				
	
	
		
			139 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			139 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Go
		
	
	
// Package http_range implements http range parsing.
 | 
						|
package http_range
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"fmt"
 | 
						|
	"net/http"
 | 
						|
	"net/textproto"
 | 
						|
	"strconv"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
// Range specifies the byte range to be sent to the client.
 | 
						|
type Range struct {
 | 
						|
	Start  int64
 | 
						|
	Length int64 // limit of bytes to read, -1 for unlimited
 | 
						|
}
 | 
						|
 | 
						|
// ContentRange returns Content-Range header value.
 | 
						|
func (r Range) ContentRange(size int64) string {
 | 
						|
	return fmt.Sprintf("bytes %d-%d/%d", r.Start, r.Start+r.Length-1, size)
 | 
						|
}
 | 
						|
 | 
						|
var (
 | 
						|
	// ErrNoOverlap is returned by ParseRange if first-byte-pos of
 | 
						|
	// all the byte-range-spec values is greater than the content size.
 | 
						|
	ErrNoOverlap = errors.New("invalid range: failed to overlap")
 | 
						|
 | 
						|
	// ErrInvalid is returned by ParseRange on invalid input.
 | 
						|
	ErrInvalid = errors.New("invalid range")
 | 
						|
)
 | 
						|
 | 
						|
// ParseRange parses a Range header string as per RFC 7233.
 | 
						|
// ErrNoOverlap is returned if none of the ranges overlap.
 | 
						|
// ErrInvalid is returned if s is invalid range.
 | 
						|
func ParseRange(s string, size int64) ([]Range, error) { // nolint:gocognit
 | 
						|
	if s == "" {
 | 
						|
		return nil, nil // header not present
 | 
						|
	}
 | 
						|
	const b = "bytes="
 | 
						|
	if !strings.HasPrefix(s, b) {
 | 
						|
		return nil, ErrInvalid
 | 
						|
	}
 | 
						|
	var ranges []Range
 | 
						|
	noOverlap := false
 | 
						|
	for _, ra := range strings.Split(s[len(b):], ",") {
 | 
						|
		ra = textproto.TrimString(ra)
 | 
						|
		if ra == "" {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		i := strings.Index(ra, "-")
 | 
						|
		if i < 0 {
 | 
						|
			return nil, ErrInvalid
 | 
						|
		}
 | 
						|
		start, end := textproto.TrimString(ra[:i]), textproto.TrimString(ra[i+1:])
 | 
						|
		var r Range
 | 
						|
		if start == "" {
 | 
						|
			// If no start is specified, end specifies the
 | 
						|
			// range start relative to the end of the file,
 | 
						|
			// and we are dealing with <suffix-length>
 | 
						|
			// which has to be a non-negative integer as per
 | 
						|
			// RFC 7233 Section 2.1 "Byte-Ranges".
 | 
						|
			if end == "" || end[0] == '-' {
 | 
						|
				return nil, ErrInvalid
 | 
						|
			}
 | 
						|
			i, err := strconv.ParseInt(end, 10, 64)
 | 
						|
			if i < 0 || err != nil {
 | 
						|
				return nil, ErrInvalid
 | 
						|
			}
 | 
						|
			if i > size {
 | 
						|
				i = size
 | 
						|
			}
 | 
						|
			r.Start = size - i
 | 
						|
			r.Length = size - r.Start
 | 
						|
		} else {
 | 
						|
			i, err := strconv.ParseInt(start, 10, 64)
 | 
						|
			if err != nil || i < 0 {
 | 
						|
				return nil, ErrInvalid
 | 
						|
			}
 | 
						|
			if i >= size {
 | 
						|
				// If the range begins after the size of the content,
 | 
						|
				// then it does not overlap.
 | 
						|
				noOverlap = true
 | 
						|
				continue
 | 
						|
			}
 | 
						|
			r.Start = i
 | 
						|
			if end == "" {
 | 
						|
				// If no end is specified, range extends to end of the file.
 | 
						|
				r.Length = size - r.Start
 | 
						|
			} else {
 | 
						|
				i, err := strconv.ParseInt(end, 10, 64)
 | 
						|
				if err != nil || r.Start > i {
 | 
						|
					return nil, ErrInvalid
 | 
						|
				}
 | 
						|
				if i >= size {
 | 
						|
					i = size - 1
 | 
						|
				}
 | 
						|
				r.Length = i - r.Start + 1
 | 
						|
			}
 | 
						|
		}
 | 
						|
		ranges = append(ranges, r)
 | 
						|
	}
 | 
						|
	if noOverlap && len(ranges) == 0 {
 | 
						|
		// The specified ranges did not overlap with the content.
 | 
						|
		return nil, ErrNoOverlap
 | 
						|
	}
 | 
						|
	return ranges, nil
 | 
						|
}
 | 
						|
 | 
						|
func (r Range) MimeHeader(contentType string, size int64) textproto.MIMEHeader {
 | 
						|
	return textproto.MIMEHeader{
 | 
						|
		"Content-Range": {r.contentRange(size)},
 | 
						|
		"Content-Type":  {contentType},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// for http response header
 | 
						|
func (r Range) contentRange(size int64) string {
 | 
						|
	return fmt.Sprintf("bytes %d-%d/%d", r.Start, r.Start+r.Length-1, size)
 | 
						|
}
 | 
						|
 | 
						|
// ApplyRangeToHttpHeader for http request header
 | 
						|
func ApplyRangeToHttpHeader(p Range, headerRef http.Header) http.Header {
 | 
						|
	header := headerRef
 | 
						|
	if header == nil {
 | 
						|
		header = http.Header{}
 | 
						|
	}
 | 
						|
	if p.Start == 0 && p.Length < 0 {
 | 
						|
		header.Del("Range")
 | 
						|
	} else {
 | 
						|
		end := ""
 | 
						|
		if p.Length >= 0 {
 | 
						|
			end = strconv.FormatInt(p.Start+p.Length-1, 10)
 | 
						|
		}
 | 
						|
		header.Set("Range", fmt.Sprintf("bytes=%v-%v", p.Start, end))
 | 
						|
	}
 | 
						|
	return header
 | 
						|
}
 |