Add nakedret, unconvert, wastedassign, stylecheck and nolintlint linters to improve code readability - nakedret - https://github.com/alexkohler/nakedret - nakedret is a Go static analysis tool to find naked returns in functions greater than a specified function length. - unconvert - https://github.com/mdempsky/unconvert - Remove unnecessary type conversions - wastedassign - https://github.com/sanposhiho/wastedassign - wastedassign finds wasted assignment statements. - notlintlint - Reports ill-formed or insufficient nolint directives - stylecheck - https://staticcheck.io/docs/checks/#ST - keep style consistent - excluded: [ST1003 - Poorly chosen identifier](https://staticcheck.io/docs/checks/#ST1003) and [ST1005 - Incorrectly formatted error string](https://staticcheck.io/docs/checks/#ST1005)
		
			
				
	
	
		
			120 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package eventsource
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| 	"strings"
 | |
| 	"time"
 | |
| 
 | |
| 	"code.gitea.io/gitea/modules/json"
 | |
| )
 | |
| 
 | |
| func wrapNewlines(w io.Writer, prefix, value []byte) (sum int64, err error) {
 | |
| 	if len(value) == 0 {
 | |
| 		return
 | |
| 	}
 | |
| 	var n int
 | |
| 	last := 0
 | |
| 	for j := bytes.IndexByte(value, '\n'); j > -1; j = bytes.IndexByte(value[last:], '\n') {
 | |
| 		n, err = w.Write(prefix)
 | |
| 		sum += int64(n)
 | |
| 		if err != nil {
 | |
| 			return
 | |
| 		}
 | |
| 		n, err = w.Write(value[last : last+j+1])
 | |
| 		sum += int64(n)
 | |
| 		if err != nil {
 | |
| 			return
 | |
| 		}
 | |
| 		last += j + 1
 | |
| 	}
 | |
| 	n, err = w.Write(prefix)
 | |
| 	sum += int64(n)
 | |
| 	if err != nil {
 | |
| 		return
 | |
| 	}
 | |
| 	n, err = w.Write(value[last:])
 | |
| 	sum += int64(n)
 | |
| 	if err != nil {
 | |
| 		return
 | |
| 	}
 | |
| 	n, err = w.Write([]byte("\n"))
 | |
| 	sum += int64(n)
 | |
| 	return sum, err
 | |
| }
 | |
| 
 | |
| // Event is an eventsource event, not all fields need to be set
 | |
| type Event struct {
 | |
| 	// Name represents the value of the event: tag in the stream
 | |
| 	Name string
 | |
| 	// Data is either JSONified []byte or interface{} that can be JSONd
 | |
| 	Data interface{}
 | |
| 	// ID represents the ID of an event
 | |
| 	ID string
 | |
| 	// Retry tells the receiver only to attempt to reconnect to the source after this time
 | |
| 	Retry time.Duration
 | |
| }
 | |
| 
 | |
| // WriteTo writes data to w until there's no more data to write or when an error occurs.
 | |
| // The return value n is the number of bytes written. Any error encountered during the write is also returned.
 | |
| func (e *Event) WriteTo(w io.Writer) (int64, error) {
 | |
| 	sum := int64(0)
 | |
| 	var nint int
 | |
| 	n, err := wrapNewlines(w, []byte("event: "), []byte(e.Name))
 | |
| 	sum += n
 | |
| 	if err != nil {
 | |
| 		return sum, err
 | |
| 	}
 | |
| 
 | |
| 	if e.Data != nil {
 | |
| 		var data []byte
 | |
| 		switch v := e.Data.(type) {
 | |
| 		case []byte:
 | |
| 			data = v
 | |
| 		case string:
 | |
| 			data = []byte(v)
 | |
| 		default:
 | |
| 			var err error
 | |
| 			data, err = json.Marshal(e.Data)
 | |
| 			if err != nil {
 | |
| 				return sum, err
 | |
| 			}
 | |
| 		}
 | |
| 		n, err := wrapNewlines(w, []byte("data: "), data)
 | |
| 		sum += n
 | |
| 		if err != nil {
 | |
| 			return sum, err
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	n, err = wrapNewlines(w, []byte("id: "), []byte(e.ID))
 | |
| 	sum += n
 | |
| 	if err != nil {
 | |
| 		return sum, err
 | |
| 	}
 | |
| 
 | |
| 	if e.Retry != 0 {
 | |
| 		nint, err = fmt.Fprintf(w, "retry: %d\n", int64(e.Retry/time.Millisecond))
 | |
| 		sum += int64(nint)
 | |
| 		if err != nil {
 | |
| 			return sum, err
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	nint, err = w.Write([]byte("\n"))
 | |
| 	sum += int64(nint)
 | |
| 
 | |
| 	return sum, err
 | |
| }
 | |
| 
 | |
| func (e *Event) String() string {
 | |
| 	buf := new(strings.Builder)
 | |
| 	_, _ = e.WriteTo(buf)
 | |
| 	return buf.String()
 | |
| }
 |