-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
[WIP] Git support: first steps #109
Open
wilzbach
wants to merge
1
commit into
dlang:master
Choose a base branch
from
wilzbach:git-rebase
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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,74 @@ | ||
module dlangbot.git; | ||
|
||
import std.conv, std.file, std.path, std.string, std.uuid; | ||
import std.format, std.stdio; | ||
|
||
import dlangbot.github; | ||
import vibe.core.log; | ||
|
||
string gitURL = "http://0.0.0.0:9006"; | ||
|
||
import std.process : Pid, ProcessPipes; | ||
|
||
auto asyncWait(ProcessPipes p) | ||
{ | ||
import core.sys.posix.fcntl; | ||
import core.time : seconds; | ||
import std.process : tryWait; | ||
import vibe.core.core : createFileDescriptorEvent, FileDescriptorEvent; | ||
|
||
fcntl(p.stdout.fileno, F_SETFL, O_NONBLOCK); | ||
scope readEvt = createFileDescriptorEvent(p.stdout.fileno, FileDescriptorEvent.Trigger.read); | ||
while (readEvt.wait(5.seconds, FileDescriptorEvent.Trigger.read)) | ||
{ | ||
auto rc = tryWait(p.pid); | ||
if (rc.terminated) | ||
break; | ||
} | ||
} | ||
|
||
auto asyncWait(Pid pid) | ||
{ | ||
import core.time : msecs; | ||
import std.process : tryWait; | ||
import vibe.core.core : sleep; | ||
|
||
for (auto rc = pid.tryWait; !rc.terminated; rc = pid.tryWait) | ||
5.msecs.sleep; | ||
} | ||
|
||
void rebase(PullRequest* pr) | ||
{ | ||
import std.process; | ||
auto uniqDir = tempDir.buildPath("dlang-bot-git", randomUUID.to!string.replace("-", "")); | ||
uniqDir.mkdirRecurse; | ||
scope(exit) uniqDir.rmdirRecurse; | ||
const git = "git -C %s ".format(uniqDir); | ||
|
||
auto targetBranch = pr.base.ref_; | ||
auto remoteDir = pr.repoURL; | ||
|
||
logInfo("[git/%s]: cloning branch %s...", pr.repoSlug, targetBranch); | ||
auto pid = spawnShell("git clone -b %s %s %s".format(targetBranch, remoteDir, uniqDir)); | ||
pid.asyncWait; | ||
|
||
logInfo("[git/%s]: fetching repo...", pr.repoSlug); | ||
pid = spawnShell(git ~ "fetch origin pull/%s/head:pr-%1$s".format(pr.number)); | ||
pid.asyncWait; | ||
logInfo("[git/%s]: switching to PR branch...", pr.repoSlug); | ||
pid = spawnShell(git ~ "checkout pr-%s".format(pr.number)); | ||
pid.asyncWait; | ||
logInfo("[git/%s]: rebasing...", pr.repoSlug); | ||
pid = spawnShell(git ~ "rebase " ~ targetBranch); | ||
pid.asyncWait; | ||
|
||
auto headSlug = pr.head.repo.fullName; | ||
auto headRef = pr.head.ref_; | ||
auto sep = gitURL.startsWith("http") ? "/" : ":"; | ||
logInfo("[git/%s]: pushing... to %s", pr.repoSlug, gitURL); | ||
|
||
// TODO: use --force here | ||
auto cmd = "git push -vv %s%s%s HEAD:%s".format(gitURL, sep, headSlug, headRef); | ||
pid = spawnShell(cmd); | ||
pid.asyncWait; | ||
} |
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
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,22 @@ | ||
import utils; | ||
|
||
// send rebase label | ||
unittest | ||
{ | ||
setAPIExpectations(); | ||
import std.stdio; | ||
|
||
import std.array, std.conv, std.file, std.path, std.uuid; | ||
auto uniqDir = tempDir.buildPath("dlang-bot-git", randomUUID.to!string.replace("-", "")); | ||
uniqDir.mkdirRecurse; | ||
scope(exit) uniqDir.rmdirRecurse; | ||
|
||
postGitHubHook("dlang_phobos_label_4921.json", "pull_request", | ||
(ref Json j, scope HTTPClientRequest req){ | ||
j["head"]["repo"]["full_name"] = "/tmp/foobar"; | ||
j["pull_request"]["state"] = "open"; | ||
j["label"]["name"] = "bot-rebase"; | ||
}.toDelegate); | ||
|
||
// check result | ||
} |
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.
spawnProcess > spawnShell in all situations, unless you need to use a shell built-in or run a user-supplied shell command