2016-11-04 07:16:01 +09:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-04-19 21:17:27 +09:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-28 03:20:29 +09:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-04 07:16:01 +09:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
2019-11-15 11:52:59 +09:00
|
|
|
"bytes"
|
2019-04-18 01:06:35 +09:00
|
|
|
"encoding/base64"
|
2016-11-04 07:16:01 +09:00
|
|
|
"io"
|
2021-06-05 21:32:19 +09:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/typesniffer"
|
2021-10-25 06:12:43 +09:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2016-11-04 07:16:01 +09:00
|
|
|
)
|
|
|
|
|
2020-12-17 23:00:47 +09:00
|
|
|
// This file contains common functions between the gogit and !gogit variants for git Blobs
|
2017-11-29 10:50:39 +09:00
|
|
|
|
2019-04-19 21:17:27 +09:00
|
|
|
// Name returns name of the tree entry this blob object was created from (or empty string)
|
|
|
|
func (b *Blob) Name() string {
|
|
|
|
return b.name
|
2017-11-29 10:50:39 +09:00
|
|
|
}
|
2019-04-18 01:06:35 +09:00
|
|
|
|
2023-06-13 18:02:25 +09:00
|
|
|
// GetBlobContent Gets the limited content of the blob as raw text
|
|
|
|
func (b *Blob) GetBlobContent(limit int64) (string, error) {
|
|
|
|
if limit <= 0 {
|
|
|
|
return "", nil
|
|
|
|
}
|
2019-06-30 05:51:10 +09:00
|
|
|
dataRc, err := b.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
defer dataRc.Close()
|
2023-06-13 18:02:25 +09:00
|
|
|
buf, err := util.ReadWithLimit(dataRc, int(limit))
|
|
|
|
return string(buf), err
|
2019-06-30 05:51:10 +09:00
|
|
|
}
|
|
|
|
|
2021-06-25 00:47:46 +09:00
|
|
|
// GetBlobLineCount gets line count of the blob
|
2019-11-15 11:52:59 +09:00
|
|
|
func (b *Blob) GetBlobLineCount() (int, error) {
|
|
|
|
reader, err := b.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer reader.Close()
|
|
|
|
buf := make([]byte, 32*1024)
|
2021-06-25 00:47:46 +09:00
|
|
|
count := 1
|
2019-11-15 11:52:59 +09:00
|
|
|
lineSep := []byte{'\n'}
|
2021-06-25 00:47:46 +09:00
|
|
|
|
|
|
|
c, err := reader.Read(buf)
|
|
|
|
if c == 0 && err == io.EOF {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2019-11-15 11:52:59 +09:00
|
|
|
for {
|
|
|
|
count += bytes.Count(buf[:c], lineSep)
|
|
|
|
switch {
|
|
|
|
case err == io.EOF:
|
|
|
|
return count, nil
|
|
|
|
case err != nil:
|
|
|
|
return count, err
|
|
|
|
}
|
2021-06-25 00:47:46 +09:00
|
|
|
c, err = reader.Read(buf)
|
2019-11-15 11:52:59 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 01:06:35 +09:00
|
|
|
// GetBlobContentBase64 Reads the content of the blob with a base64 encode and returns the encoded string
|
|
|
|
func (b *Blob) GetBlobContentBase64() (string, error) {
|
|
|
|
dataRc, err := b.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
defer dataRc.Close()
|
|
|
|
|
|
|
|
pr, pw := io.Pipe()
|
|
|
|
encoder := base64.NewEncoder(base64.StdEncoding, pw)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
_, err := io.Copy(encoder, dataRc)
|
2019-06-13 04:41:28 +09:00
|
|
|
_ = encoder.Close()
|
2019-04-18 01:06:35 +09:00
|
|
|
|
|
|
|
if err != nil {
|
2019-06-13 04:41:28 +09:00
|
|
|
_ = pw.CloseWithError(err)
|
2019-04-18 01:06:35 +09:00
|
|
|
} else {
|
2019-06-13 04:41:28 +09:00
|
|
|
_ = pw.Close()
|
2019-04-18 01:06:35 +09:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2021-09-22 14:38:34 +09:00
|
|
|
out, err := io.ReadAll(pr)
|
2019-04-18 01:06:35 +09:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return string(out), nil
|
|
|
|
}
|
2021-06-05 21:32:19 +09:00
|
|
|
|
|
|
|
// GuessContentType guesses the content type of the blob.
|
|
|
|
func (b *Blob) GuessContentType() (typesniffer.SniffedType, error) {
|
|
|
|
r, err := b.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return typesniffer.SniffedType{}, err
|
|
|
|
}
|
|
|
|
defer r.Close()
|
|
|
|
|
|
|
|
return typesniffer.DetectContentTypeFromReader(r)
|
|
|
|
}
|