chore: remove usages of the deprecated `ioutil` (#7332)

Co-authored-by: Joe Chen <jc@unknwon.io>
pull/7335/head
Zachary Walters 2023-02-03 23:43:36 -06:00 committed by GitHub
parent 6d220540c1
commit 5887bc116f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 15 additions and 20 deletions

View File

@ -7,7 +7,6 @@ package cmd
import ( import (
"context" "context"
"fmt" "fmt"
"io/ioutil"
"os" "os"
"path" "path"
"path/filepath" "path/filepath"
@ -66,7 +65,7 @@ func runBackup(c *cli.Context) error {
if !com.IsExist(tmpDir) { if !com.IsExist(tmpDir) {
log.Fatal("'--tempdir' does not exist: %s", tmpDir) log.Fatal("'--tempdir' does not exist: %s", tmpDir)
} }
rootDir, err := ioutil.TempDir(tmpDir, "gogs-backup-") rootDir, err := os.MkdirTemp(tmpDir, "gogs-backup-")
if err != nil { if err != nil {
log.Fatal("Failed to create backup root directory '%s': %v", rootDir, err) log.Fatal("Failed to create backup root directory '%s': %v", rootDir, err)
} }

View File

@ -10,7 +10,6 @@ import (
"encoding/binary" "encoding/binary"
"errors" "errors"
"fmt" "fmt"
"io/ioutil"
"math/big" "math/big"
"os" "os"
"path" "path"
@ -181,7 +180,7 @@ func parseKeyString(content string) (string, error) {
// writeTmpKeyFile writes key content to a temporary file // writeTmpKeyFile writes key content to a temporary file
// and returns the name of that file, along with any possible errors. // and returns the name of that file, along with any possible errors.
func writeTmpKeyFile(content string) (string, error) { func writeTmpKeyFile(content string) (string, error) {
tmpFile, err := ioutil.TempFile(conf.SSH.KeyTestPath, "gogs_keytest") tmpFile, err := os.CreateTemp(conf.SSH.KeyTestPath, "gogs_keytest")
if err != nil { if err != nil {
return "", fmt.Errorf("TempFile: %v", err) return "", fmt.Errorf("TempFile: %v", err)
} }
@ -377,7 +376,7 @@ func addKey(e Engine, key *PublicKey) (err error) {
// Calculate fingerprint. // Calculate fingerprint.
tmpPath := strings.ReplaceAll(path.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()), "id_rsa.pub"), "\\", "/") tmpPath := strings.ReplaceAll(path.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()), "id_rsa.pub"), "\\", "/")
_ = os.MkdirAll(path.Dir(tmpPath), os.ModePerm) _ = os.MkdirAll(path.Dir(tmpPath), os.ModePerm)
if err = ioutil.WriteFile(tmpPath, []byte(key.Content), 0644); err != nil { if err = os.WriteFile(tmpPath, []byte(key.Content), 0644); err != nil {
return err return err
} }

View File

@ -6,7 +6,6 @@ package db
import ( import (
"fmt" "fmt"
"io/ioutil"
"net/url" "net/url"
"os" "os"
"path" "path"
@ -122,7 +121,7 @@ func (repo *Repository) updateWikiPage(doer *User, oldTitle, title, content, mes
// The new file we created will be in normal text format. // The new file we created will be in normal text format.
os.Remove(filename) os.Remove(filename)
if err = ioutil.WriteFile(filename, []byte(content), 0666); err != nil { if err = os.WriteFile(filename, []byte(content), 0666); err != nil {
return fmt.Errorf("WriteFile: %v", err) return fmt.Errorf("WriteFile: %v", err)
} }

View File

@ -6,7 +6,7 @@ package lfsutil
import ( import (
"bytes" "bytes"
"io/ioutil" "io"
"os" "os"
"path/filepath" "path/filepath"
"runtime" "runtime"
@ -79,7 +79,7 @@ func TestLocalStorage_Upload(t *testing.T) {
} }
for _, test := range tests { for _, test := range tests {
t.Run(test.name, func(t *testing.T) { t.Run(test.name, func(t *testing.T) {
written, err := s.Upload(test.oid, ioutil.NopCloser(strings.NewReader(test.content))) written, err := s.Upload(test.oid, io.NopCloser(strings.NewReader(test.content)))
assert.Equal(t, test.expWritten, written) assert.Equal(t, test.expWritten, written)
assert.Equal(t, test.expErr, err) assert.Equal(t, test.expErr, err)
}) })
@ -100,7 +100,7 @@ func TestLocalStorage_Download(t *testing.T) {
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
err = ioutil.WriteFile(fpath, []byte("Hello world!"), os.ModePerm) err = os.WriteFile(fpath, []byte("Hello world!"), os.ModePerm)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -7,7 +7,6 @@ package lfs
import ( import (
"encoding/json" "encoding/json"
"io" "io"
"io/ioutil"
"net/http" "net/http"
"strconv" "strconv"
@ -82,7 +81,7 @@ func (h *basicHandler) serveUpload(c *macaron.Context, repo *db.Repository, oid
_, err := db.LFS.GetObjectByOID(c.Req.Context(), repo.ID, oid) _, err := db.LFS.GetObjectByOID(c.Req.Context(), repo.ID, oid)
if err == nil { if err == nil {
// Object exists, drain the request body and we're good. // Object exists, drain the request body and we're good.
_, _ = io.Copy(ioutil.Discard, c.Req.Request.Body) _, _ = io.Copy(io.Discard, c.Req.Request.Body)
c.Req.Request.Body.Close() c.Req.Request.Body.Close()
c.Status(http.StatusOK) c.Status(http.StatusOK)
return return
@ -123,7 +122,8 @@ func (h *basicHandler) serveUpload(c *macaron.Context, repo *db.Repository, oid
// POST /{owner}/{repo}.git/info/lfs/object/basic/verify // POST /{owner}/{repo}.git/info/lfs/object/basic/verify
func (*basicHandler) serveVerify(c *macaron.Context, repo *db.Repository) { func (*basicHandler) serveVerify(c *macaron.Context, repo *db.Repository) {
var request basicVerifyRequest var request basicVerifyRequest
defer c.Req.Request.Body.Close() defer func() { _ = c.Req.Request.Body.Close() }()
err := json.NewDecoder(c.Req.Request.Body).Decode(&request) err := json.NewDecoder(c.Req.Request.Body).Decode(&request)
if err != nil { if err != nil {
responseJSON(c.Resp, http.StatusBadRequest, responseError{ responseJSON(c.Resp, http.StatusBadRequest, responseError{

View File

@ -7,7 +7,6 @@ package ssh
import ( import (
"fmt" "fmt"
"io" "io"
"io/ioutil"
"net" "net"
"os" "os"
"os/exec" "os/exec"
@ -190,7 +189,7 @@ func Listen(host string, port int, ciphers, macs []string) {
log.Trace("SSH: New private key is generateed: %s", keyPath) log.Trace("SSH: New private key is generateed: %s", keyPath)
} }
privateBytes, err := ioutil.ReadFile(keyPath) privateBytes, err := os.ReadFile(keyPath)
if err != nil { if err != nil {
panic("SSH: Failed to load private key: " + err.Error()) panic("SSH: Failed to load private key: " + err.Error())
} }

View File

@ -7,7 +7,6 @@ package testutil
import ( import (
"encoding/json" "encoding/json"
"flag" "flag"
"io/ioutil"
"os" "os"
"path/filepath" "path/filepath"
"regexp" "regexp"
@ -45,13 +44,13 @@ func AssertGolden(t testing.TB, path string, update bool, got any) {
t.Fatalf("create directories for golden file %q: %v", path, err) t.Fatalf("create directories for golden file %q: %v", path, err)
} }
err = ioutil.WriteFile(path, data, 0640) err = os.WriteFile(path, data, 0640)
if err != nil { if err != nil {
t.Fatalf("update golden file %q: %v", path, err) t.Fatalf("update golden file %q: %v", path, err)
} }
} }
golden, err := ioutil.ReadFile(path) golden, err := os.ReadFile(path)
if err != nil { if err != nil {
t.Fatalf("read golden file %q: %v", path, err) t.Fatalf("read golden file %q: %v", path, err)
} }

View File

@ -10,7 +10,7 @@ import (
"fmt" "fmt"
"io" "io"
"io/fs" "io/fs"
"io/ioutil" "os"
"path" "path"
"strings" "strings"
@ -73,7 +73,7 @@ func NewTemplateFileSystem(dir, customDir string) macaron.TemplateFileSystem {
var data []byte var data []byte
fpath := path.Join(customDir, name) fpath := path.Join(customDir, name)
if osutil.IsFile(fpath) { if osutil.IsFile(fpath) {
data, err = ioutil.ReadFile(fpath) data, err = os.ReadFile(fpath)
} else { } else {
data, err = files.ReadFile(name) data, err = files.ReadFile(name)
} }