]> Cypherpunks.ru repositories - gocheese.git/blob - fileutils.go
More convenient trusted-host
[gocheese.git] / fileutils.go
1 /*
2 GoCheese -- Python private package repository and caching proxy
3 Copyright (C) 2019-2022 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package main
19
20 import (
21         "log"
22         "net/http"
23         "os"
24         "path/filepath"
25         "strconv"
26         "time"
27 )
28
29 var NoSync = os.Getenv("GOCHEESE_NO_SYNC") == "1"
30
31 func TempFile(dir string) (*os.File, error) {
32         // Assume that probability of suffix collision is negligible
33         suffix := strconv.FormatInt(time.Now().UnixNano()+int64(os.Getpid()), 16)
34         name := filepath.Join(dir, "nncp"+suffix)
35         return os.OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_EXCL, os.FileMode(0666))
36 }
37
38 func DirSync(dirPath string) error {
39         if NoSync {
40                 return nil
41         }
42         fd, err := os.Open(dirPath)
43         if err != nil {
44                 return err
45         }
46         err = fd.Sync()
47         if err != nil {
48                 fd.Close()
49                 return err
50         }
51         return fd.Close()
52 }
53
54 func WriteFileSync(dirPath, filePath string, data []byte, mtime time.Time) error {
55         dst, err := TempFile(dirPath)
56         if err != nil {
57                 return err
58         }
59         if _, err = dst.Write(data); err != nil {
60                 os.Remove(dst.Name())
61                 dst.Close()
62                 return err
63         }
64         if !NoSync {
65                 if err = dst.Sync(); err != nil {
66                         os.Remove(dst.Name())
67                         dst.Close()
68                         return err
69                 }
70         }
71         dst.Close()
72         if err = os.Chtimes(dst.Name(), mtime, mtime); err != nil {
73                 return err
74         }
75         if err = os.Rename(dst.Name(), filePath); err != nil {
76                 return err
77         }
78         return DirSync(dirPath)
79 }
80
81 func mkdirForPkg(w http.ResponseWriter, r *http.Request, pkgName string) bool {
82         path := filepath.Join(Root, pkgName)
83         if _, err := os.Stat(path); os.IsNotExist(err) {
84                 if err = os.Mkdir(path, os.FileMode(0777)); err != nil {
85                         log.Println("error", r.RemoteAddr, "mkdir", pkgName, err)
86                         http.Error(w, err.Error(), http.StatusInternalServerError)
87                         return false
88                 }
89                 log.Println(r.RemoteAddr, "mkdir", pkgName)
90         }
91         return true
92 }