-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
backport of PR #1257 for release/v1.1: rewrite pre-commit, post-commit and options hooks #1376
Merged
Merged
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6be2f34
issue #1250, replace {pre,post}-receive and update hooks with a singl…
philfry 11082ae
issue #1250, make script posix compilant
philfry d790482
v23, add migration script to update {pre,post}-receive and update hooks
philfry e5ff832
migration: use a more common name and rename v23 to v26 to avoid conf…
philfry f62e8e2
gofmt'ed and added copyright header
philfry e01bf52
fix SyncRepositoryHooks to also sync wiki repos
philfry 7e52f01
no migration for you.
philfry 44e98ba
Merge branch 'release/v1.1' into fix_hooks_11
philfry File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// Copyright 2017 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 migrations | ||
|
||
import ( | ||
"crypto/md5" | ||
"encoding/hex" | ||
"fmt" | ||
"io" | ||
"io/ioutil" | ||
"os" | ||
"path/filepath" | ||
"strings" | ||
|
||
"code.gitea.io/gitea/modules/setting" | ||
|
||
"github.com/Unknwon/com" | ||
"github.com/go-xorm/xorm" | ||
) | ||
|
||
func generateAndMigrateGitHookChains(x *xorm.Engine) (err error) { | ||
type Repository struct { | ||
ID int64 | ||
OwnerID int64 | ||
Name string | ||
} | ||
type User struct { | ||
ID int64 | ||
Name string | ||
} | ||
|
||
var ( | ||
hookNames = []string{"pre-receive", "update", "post-receive"} | ||
hookTpl = fmt.Sprintf("#!/usr/bin/env %s\ndata=$(cat)\nexitcodes=\"\"\nhookname=$(basename $0)\nGIT_DIR=${GIT_DIR:-$(dirname $0)}\n\nfor hook in ${GIT_DIR}/hooks/${hookname}.d/*; do\ntest -x \"${hook}\" || continue\necho \"${data}\" | \"${hook}\"\nexitcodes=\"${exitcodes} $?\"\ndone\n\nfor i in ${exitcodes}; do\n[ ${i} -eq 0 ] || exit ${i}\ndone\n", setting.ScriptType) | ||
) | ||
|
||
return x.Where("id > 0").Iterate(new(Repository), | ||
func(idx int, bean interface{}) error { | ||
repo := bean.(*Repository) | ||
user := new(User) | ||
has, err := x.Where("id = ?", repo.OwnerID).Get(user) | ||
if err != nil { | ||
return fmt.Errorf("query owner of repository [repo_id: %d, owner_id: %d]: %v", repo.ID, repo.OwnerID, err) | ||
} else if !has { | ||
return nil | ||
} | ||
|
||
repoPaths := []string{ | ||
filepath.Join(setting.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name)) + ".git", | ||
filepath.Join(setting.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name)) + ".wiki.git", | ||
} | ||
|
||
for _, repoPath := range repoPaths { | ||
if com.IsExist(repoPath) { | ||
hookDir := filepath.Join(repoPath, "hooks") | ||
|
||
for _, hookName := range hookNames { | ||
oldHookPath := filepath.Join(hookDir, hookName) | ||
|
||
// compare md5sums of hooks | ||
if com.IsExist(oldHookPath) { | ||
|
||
f, err := os.Open(oldHookPath) | ||
if err != nil { | ||
return fmt.Errorf("cannot open old hook file '%s': %v", oldHookPath, err) | ||
} | ||
defer f.Close() | ||
h := md5.New() | ||
if _, err := io.Copy(h, f); err != nil { | ||
return fmt.Errorf("cannot read old hook file '%s': %v", oldHookPath, err) | ||
} | ||
if hex.EncodeToString(h.Sum(nil)) == "6718ef67d0834e0a7908259acd566e3f" { | ||
return nil | ||
} | ||
} | ||
|
||
if err = ioutil.WriteFile(oldHookPath, []byte(hookTpl), 0777); err != nil { | ||
return fmt.Errorf("write old hook file '%s': %v", oldHookPath, err) | ||
} | ||
} | ||
} | ||
} | ||
return nil | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No migrations can be allowed in 1.1 branch