2020-05-21 06:30:41 +00:00
|
|
|
/*
|
2020-05-25 16:19:20 +00:00
|
|
|
Copyright 2020 Qiniu Cloud (qiniu.com)
|
2020-05-21 06:30:41 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package build
|
|
|
|
|
|
|
|
import (
|
2020-08-11 12:02:48 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"golang.org/x/mod/modfile"
|
2020-05-21 06:30:41 +00:00
|
|
|
)
|
|
|
|
|
2020-08-12 03:43:50 +00:00
|
|
|
// updateGoModFile rewrites the go.mod file in the temporary directory,
|
|
|
|
// if it has a 'replace' directive, and the directive has a relative local path
|
|
|
|
// it will be rewritten with a absolute path.
|
|
|
|
// ex.
|
|
|
|
// suppose original project is located at /path/to/aa/bb/cc, go.mod contains a directive:
|
|
|
|
// 'replace github.com/qiniu/bar => ../home/foo/bar'
|
|
|
|
// after the project is copied to temporary directory, it should be rewritten as
|
|
|
|
// 'replace github.com/qiniu/bar => /path/to/aa/bb/home/foo/bar'
|
2020-08-12 02:42:47 +00:00
|
|
|
func (b *Build) updateGoModFile() (updateFlag bool, newModFile []byte, err error) {
|
2020-08-11 12:02:48 +00:00
|
|
|
tempModfile := filepath.Join(b.TmpDir, "go.mod")
|
|
|
|
buf, err := ioutil.ReadFile(tempModfile)
|
|
|
|
if err != nil {
|
2020-08-12 02:42:47 +00:00
|
|
|
return
|
2020-08-11 12:02:48 +00:00
|
|
|
}
|
|
|
|
oriGoModFile, err := modfile.Parse(tempModfile, buf, nil)
|
|
|
|
if err != nil {
|
2020-08-12 02:42:47 +00:00
|
|
|
return
|
2020-08-11 12:02:48 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 02:42:47 +00:00
|
|
|
updateFlag = false
|
2020-08-11 12:02:48 +00:00
|
|
|
for index := range oriGoModFile.Replace {
|
|
|
|
replace := oriGoModFile.Replace[index]
|
|
|
|
oldPath := replace.Old.Path
|
|
|
|
oldVersion := replace.Old.Version
|
|
|
|
newPath := replace.New.Path
|
|
|
|
newVersion := replace.New.Version
|
2020-08-12 02:42:47 +00:00
|
|
|
// replace to a local filesystem does not have a version
|
|
|
|
// absolute path no need to rewrite
|
|
|
|
if newVersion == "" && !filepath.IsAbs(newPath) {
|
|
|
|
var absPath string
|
2020-08-11 12:02:48 +00:00
|
|
|
fullPath := filepath.Join(b.ModRoot, newPath)
|
2020-08-12 03:43:50 +00:00
|
|
|
absPath, _ = filepath.Abs(fullPath)
|
|
|
|
// DropReplace & AddReplace will not return error
|
|
|
|
// so no need to check the error
|
2020-08-12 02:42:47 +00:00
|
|
|
_ = oriGoModFile.DropReplace(oldPath, oldVersion)
|
|
|
|
_ = oriGoModFile.AddReplace(oldPath, oldVersion, absPath, newVersion)
|
|
|
|
updateFlag = true
|
2020-08-11 12:02:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
oriGoModFile.Cleanup()
|
2020-08-12 03:43:50 +00:00
|
|
|
// Format will not return error, so ignore the returned error
|
|
|
|
// func (f *File) Format() ([]byte, error) {
|
|
|
|
// return Format(f.Syntax), nil
|
|
|
|
// }
|
|
|
|
newModFile, _ = oriGoModFile.Format()
|
2020-08-12 02:42:47 +00:00
|
|
|
return
|
2020-08-11 12:02:48 +00:00
|
|
|
}
|