This file is indexed.

/usr/share/gocode/src/github.com/smartystreets/goconvey/web/server/watch/util_test.go is in golang-github-smartystreets-goconvey-dev 1.6.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Credits: https://gist.github.com/jaybill/2876519
package watch

import "os"
import "io"
import "io/ioutil"
import "log"

// Copies original source to destination destination.
func CopyFile(source string, destination string) (err error) {
	originalFile, err := os.Open(source)
	if err != nil {
		return err
	}
	defer originalFile.Close()
	destinationFile, err := os.Create(destination)
	if err != nil {
		return err
	}
	defer destinationFile.Close()
	_, err = io.Copy(destinationFile, originalFile)
	if err == nil {
		info, err := os.Stat(source)
		if err != nil {
			err = os.Chmod(destination, info.Mode())
		}

	}

	return
}

// Recursively copies a directory tree, attempting to preserve permissions.
// Source directory must exist, destination directory must *not* exist.
func CopyDir(source string, destination string) (err error) {

	// get properties of source dir
	sourceFile, err := os.Stat(source)
	if err != nil {
		return err
	}

	if !sourceFile.IsDir() {
		return &CustomError{Message: "Source is not a directory"}
	}

	// ensure destination dir does not already exist

	_, err = os.Open(destination)
	if !os.IsNotExist(err) {
		return &CustomError{Message: "Destination already exists"}
	}

	// create destination dir

	err = os.MkdirAll(destination, sourceFile.Mode())
	if err != nil {
		return err
	}

	entries, err := ioutil.ReadDir(source)

	for _, entry := range entries {

		sourcePath := source + "/" + entry.Name()
		destinationPath := destination + "/" + entry.Name()
		if entry.IsDir() {
			err = CopyDir(sourcePath, destinationPath)
			if err != nil {
				log.Println(err)
			}
		} else {
			// perform copy
			err = CopyFile(sourcePath, destinationPath)
			if err != nil {
				log.Println(err)
			}
		}

	}
	return
}

// A struct for returning custom error messages
type CustomError struct {
	Message string
}

// Returns the error message defined in Message as a string
func (this *CustomError) Error() string {
	return this.Message
}