aboutsummaryrefslogtreecommitdiffstats
path: root/modules/storage/local.go
blob: a937a831f157d5dd6168f2a1161c172a62fd2393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// 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 storage

import (
	"io"
	"net/url"
	"os"
	"path/filepath"

	"code.gitea.io/gitea/modules/util"
)

var (
	
class="c1">// LocalStorage represents a local files storage type LocalStorage struct { dir string } // NewLocalStorage returns a local files func NewLocalStorage(bucket string) (*LocalStorage, error) { if err := os.MkdirAll(bucket, os.ModePerm); err != nil { return nil, err } return &LocalStorage{ dir: bucket, }, nil } // Open a file func (l *LocalStorage) Open(path string) (Object, error) { return os.Open(filepath.Join(l.dir, path)) } // Save a file func (l *LocalStorage) Save(path string, r io.Reader) (int64, error) { p := filepath.Join(l.dir, path) if err := os.MkdirAll(filepath.Dir(p), os.ModePerm); err != nil { return 0, err } // always override if err := util.Remove(p); err != nil { return 0, err } f, err := os.Create(p) if err != nil { return 0, err } defer f.Close() return io.Copy(f, r) } // Stat returns the info of the file func (l *LocalStorage) Stat(path string) (ObjectInfo, error) { return os.Stat(filepath.Join(l.dir, path)) } // Delete delete a file func (l *LocalStorage) Delete(path string) error { p := filepath.Join(l.dir, path) return util.Remove(p) } // URL gets the redirect URL to a file func (l *LocalStorage) URL(path, name string) (*url.URL, error) { return nil, ErrURLNotSupported }