Skip to content
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

Git VCS driver: Support non-default target refs #345

Merged
merged 1 commit into from
Aug 25, 2020

Conversation

rwliang
Copy link
Contributor

@rwliang rwliang commented Jul 11, 2020

Currently, only the default ref (master) is supported.

  • Allow target non-default target refs to be specified via configs.
  • Add config-driven target ref auto-detection using the HEAD branch.
  • Update default repo base URL pattern to link to the content revision,
    accounting for potential non-default target ref usage.
  • Add global-level VCS configs which are merged into the repo-level configs
    during startup (repo-level vals take precedence).

@salemhilal
Copy link
Contributor

Hey, just so that you're not left hanging, we're putting eyes on this PR next.

@salemhilal
Copy link
Contributor

I'm still looking through this PR (nice work!) and one thing I've noticed is that this doesn't seem to work for local repositories.
I used the config below, which ended up failing to index my local folder.

{
    "max-concurrent-indexers" : 2,
    "dbpath" : "data",
    "title" : "Hound",
    "health-check-uri" : "/healthz",
    "repos" : {
        "Hound" : {
            "url" : "https://www.github.com/hound-search/hound.git"
        },
        "LocalFolder" : {
            "url" : "file:///Users/salemhilal/Code/some-local-repo",
            "vcs-config": {
                "detect-ref": false,
                "ref": "main"
            }
        }
    }
}

Specifically, it looks like it's trying to still use master as the ref, and it assumes it has a remote.

2020/07/24 15:05:35 Searcher started for Hound
2020/07/24 15:05:35 Searcher started for LocalFolder
2020/07/24 15:05:35 Failed to git fetch /Users/salemhilal/go/src/github.com/hound-search/hound/data/vcs-553b942fb36f8d5521e6625aa4157f26bd2e954c, see output below
fatal: Couldn't find remote ref master
fatal: the remote end hung up unexpectedly
Continuing...

This seems to be a bug in hound currently, but it'd be nice to support non-default target refs everywhere. I would dig into it a bit more but I'm about to be out for the weekend. I'm happy to look into this further when I'm back (mid next week).

Also, apologies in advance if I'm missing something obvious here. I'm still ramping up on the details of this codebase.

@rwliang
Copy link
Contributor Author

rwliang commented Jul 24, 2020

Hey @salemhilal - thanks for taking a look! 🙏.

Hmm local repo indexing seems to be working for me with this config:

{
  "max-concurrent-indexers" : 2,
  "dbpath" : "data",
  "title" : "Hound",
  "health-check-uri" : "/healthz",
  "repos" : {
    "Hound" : {
      "url" : "https://github.com/etsy/hound.git"
    },
    "LocalFolder": {
      "url" : "file:///Users/rliang/local-rep",
      "vcs-config" : {
        "detect-ref" : false,
        "ref" : "main"
      }
    }
  }
}

master shouldn't be used in the fetch due to the explicit target ref config entry. Is it possible that the app was compiled without these changes applied?

@salemhilal
Copy link
Contributor

Hey, that’s about where I ended up before I had to leave. I thought I had the right branch of your fork checked out, but if you can’t reproduce it that sounds like something wrong on my end. I’m unfortunately out the door already, but I’ll look at it again more closely on Monday.

@salemhilal
Copy link
Contributor

Ok! I'm home again and can confirm that this is working as documented (I had been using go install github.com/rwliang/hound/cmds/houndd rather than setting your repo as another origin and using just go install github.com/hound-search/hound/cmds/houndd) . I'm going to put some closer eyes on the PR today and get one of the other maintainers to look, but this looks good to me.

vcs/git.go Outdated
}

func (g *GitDriver) Pull(dir string) (string, error) {
if err := run("git fetch", dir,
var targetRef string
if len(g.Ref) > 0 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For consistency, empty string comparisons should be g.Ref == ""

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will do - thanks!

Copy link
Contributor

@salemhilal salemhilal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a bunch of smaller comments, but everything here looks really good.

"vcs-config" : {
"detect-ref" : false
}
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

config.json could probably use some more complete documentation generally, but just for the sake of completeness, could you add an example of using a custom ref somewhere?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will do - thanks!

var vcsConfigVals map[string]interface{}
json.Unmarshal(vcsConfigBytes, &vcsConfigVals)
if detectRef, ok := vcsConfigVals["detect-ref"]; !ok || !detectRef.(bool) {
t.Error("global detectRef vcs config setting not set for repo")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be a t.Fatal since vcsConfigVals is used in the test below this one?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm the vcsConfigVals in the next block are pulled from another repo config and are used in a separate assertion. I think we'd want to proceed to capture all the errors in one go.

vcs/git.go Outdated
}
if len(targetRef) == 0 {
targetRef = defaultRef
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you be willing to add some tests for this logic? Having something that enforces the precedence that these rules are evaluated could be useful.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will do - thanks!

@@ -99,7 +156,7 @@ func (g *GitDriver) Clone(dir, url string) (string, error) {
return "", err
}

return g.HeadRev(dir)
return g.Pull(dir)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you give me more details on what this additional Pull does here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clone initially checks out the default HEAD branch. The Pull ensures that we check out out the target ref.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

got it, much appreciated.

@salemhilal
Copy link
Contributor

As a note, all tests are currently passing.

@salemhilal
Copy link
Contributor

Hey @rwliang, I just wanted to bump this PR because it sounds like it'll unblock some additional work. If you're able to take care of those last handful of comments, that'd be incredibly appreciated. If not, one of us will try and address them. Thanks again either way!

@rwliang
Copy link
Contributor Author

rwliang commented Aug 11, 2020

Hey @salemhilal - really sorry for the delay. I should be able to address the feedback sometime in the next two days 🙏.

@rwliang
Copy link
Contributor Author

rwliang commented Aug 13, 2020

Hey folks - attempted to address the feedback. Apologies for the delays and thanks again for the reviews!

@rwliang rwliang force-pushed the rl-gtr branch 3 times, most recently from a36a721 to 4d71532 Compare August 13, 2020 15:27
@salemhilal
Copy link
Contributor

We have a meeting tomorrow, so with any luck we'll be able to merge this PR this week. Thanks again @rwliang!

Currently, only the default ref (`master`) is supported.

- Allow target non-default target refs to be specified via configs.
- Add config-driven target ref auto-detection using the `HEAD` branch.
- Update default repo base URL pattern to link to the content revision,
  accounting for potential non-default target ref usage.
- Add global-level VCS configs which are merged into the repo-level configs
  during startup (repo-level vals take precedence).
@salemhilal
Copy link
Contributor

Ok, we've tested this internally with a repo that's been updated to use main. Everything works as expected.

Copy link
Contributor

@dschott68 dschott68 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tested internal and LGTM

Please merge and thank you ALL for the work on this

@salemhilal salemhilal merged commit fcb4ffd into hound-search:master Aug 25, 2020
@salemhilal
Copy link
Contributor

@rwliang Thank you so, so much for this PR. It is hugely appreciated!

@rwliang
Copy link
Contributor Author

rwliang commented Aug 25, 2020

Thanks, folks! 🙏

AlexFielder added a commit to AlexFielder/hound that referenced this pull request Jul 28, 2021
* Update config-example.json

* Add CONTRIBUTING.md file

* Dockerfile should use github.com/hound-search

This fixing the docker build issue.

* make listen URL clickable in iTerm (hound-search#340)

* Add Jest tests and Prettier support (hound-search#343)

This commit adds support for Jest and writes a few simple tests as
proof. Adding a test is as easy as adding a file that ends in
`.test.js` next to the file you want to test. Any file that matches that
pattern should have access to Jest functions. The whole test suite can
be run with `npm run test`.

I also added support for Prettier. Running `npm run format`
should run Prettier on any staged changes. I thought about adding Husky
to automatically run Prettier as a pre-commit hook, but it seems as
though Husky requires git v2.13 which would require me upgrading Git.

I didn't add support for ESLint yet since I figured that may be a
slightly more involved conversation — Prettier seems to be generally
uncontroverical and is generally only slightly configurable, whereas
ESlint is highly configurable and behaves however we want it to.

* Git VCS driver: Support non-default target refs (hound-search#345)

Currently, only the default ref (`master`) is supported.

- Allow target non-default target refs to be specified via configs.
- Add config-driven target ref auto-detection using the `HEAD` branch.
- Update default repo base URL pattern to link to the content revision,
  accounting for potential non-default target ref usage.
- Add global-level VCS configs which are merged into the repo-level configs
  during startup (repo-level vals take precedence).

* Exclude file path (hound-search#347)

* index: add a search option to exclude files given a regexp

* api: add the excludeFiles query parameter

Set the index search options ExcludeFileRegexp with this parameter
to allow excluding files from the search via a regexp.

* js: add the excludeFiles search parameter

* css: increase the label width to fit 'Exclude file path'

* js: correctly check that advanced is empty

* Update README with contact info for maintainers. (hound-search#348)

I don't think there's a clear way to see who has push privs to this repo from the public, and even if there is, the "Get In Touch" section should probably list the maintainers.

* incorporate detailing around gopath in README's quick start instructions (hound-search#352)

Co-authored-by: Rebecca Lau <blobbered@users.noreply.github.com>

* pin alpine version to make the docker pass

* Update Dockerfile

* More detailed setup documents with less assumptions on users (hound-search#359)

This commit updates the readme to be a little more verbose for people who don't necessarily have Go or Docker set up, but who want to contribute nonetheless. 

* Apply the old patch

* add  some figures

* remove the idea code

* get it untitled

* remove

* add .idea dev tools

* remove simple config

* get config back

* detailing tests and simplifying the setup

* Commit TLS support guide

Co-authored-by: Salem <salemhilal@gmail.com>

* make the statement terser

* delete unused img

* rewording

* back to the old path

* Update README.md

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: Salem <salemhilal@gmail.com>

* Initialize Go Modules

`go mod init github.com/hound-search/hound`

* Replace jteeuwen/go-bindata with go-bindata/go-bindata

The former package is unmainatained since a while and the replacement
also fixes this bug I encountered when trying to build the package:
jteeuwen/discussions#6

* update Go version requirement in README file

* Add a -version flag to Houndd (hound-search#362)

This commit adds a `-version` flag to houndd. Running `houndd -version` prints the current version and exits.

Co-authored-by: Kartikay Shandil <kartikays@sahaj.ai>

* Add padding between advanced mode text inputs

* add margin bottom to fields that are not last

* update front end bundles

Co-authored-by: Blobb Ered <@blobbered>

* Setup Github Actions CI (hound-search#354)

* Setup Github Actions CI

Replaces Travis CI with Github Actions for better integration.
Jobs are run against more recent Go versions, namely 1.12 to 1.14 .
 .
For further documentation see

- https://github.com/actions/setup-go
- and https://help.github.com/en/actions

This adds `-race` flag to the Go tests and will run a meta linter
(golangci-lint).

* keep travis in until github workflows is tested

* tidy go mods

* remove lint command from github workflow

* add back go-bindata to go modules list

* up version of actions checkout to fix deprecation errors

* return go bindata to the go.sum file as well

Co-authored-by: Andreas Linz <anli@spreadshirt.net>

* Add a github actions badge

Thanks again @klingtnet and @blobbered for making this possible!

* Update README.md (hound-search#369)

Add clarification of using file:// protocol for accessing locally pulled repos

* Added new folder docs with config-options description on options. (hound-search#370)

* Added new folder docs with config-options description on options.

* Peer review comment update
updated formatting for config options documentation and added link
in readme.

* readme link update

* link update

* Minor edits from code review

Co-authored-by: kayyapil <k.ayyapillai@reply.com>
Co-authored-by: ehrktia <a.karthie+github@pm.me>
Co-authored-by: Salem <salemhilal@gmail.com>

* Test windows

* Run Go build and test on Ubuntu Linux and Windows

* Add lint

* Install dependencies in Dockerfile

* Fix typo

* Adding a tip for windows users (hound-search#379)

* Adding a tip for windows users

* Update README.md

Co-authored-by: Salem <salemhilal@gmail.com>

Co-authored-by: Salem <salemhilal@gmail.com>

* Use tini as default entry point (hound-search#376)

* Add a warning for the default branch rename (hound-search#380)

* Add a warning for the default branch rename

* Add a link to Github's renaming documentation.

* Update README to reflect branch rename. (hound-search#384)

* Update version in main.go

* support github webhook

* Omit ports in constructed URL (hound-search#383)

* Improve accessibility (hound-search#398)

* Resolve WCAG2AA.Principle3.Guideline3_1.3_1_1.H57.2

* Resolve WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.InputText.Name

* Resolve WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.Button.Name

* Improve stats contrast

* Improve advanced text contrast

* Improve repo title contrast

* Improve contrast in advanced section

* Improve line number contrast

* Improve excluded files contrast

* Improve "load all" button contrast

* Automatically build docker image and publish to ghcr.io (hound-search#401)

* Feat: Use goreleaser

* Feat: Add docker build, remove goreleaser

* Fix: Add image name

* Feat: Use ghcr.io and build-push-action@2

* We try again

* Trying yet again

* Fix: Use actor and GITHUB_TOKEN

* Fix: Use github.actor in image tag path

* Fix: use github.repository_owner instead of github.actor

When you have an organisation, github.actor != github.repository_owner

Co-authored-by: Jone Marius Vignes <jvig@ihelse.net>

* Update default-config.json (hound-search#391)

* Update default-config.json

* Update default-config.json (ref: main)

* Add hyperlinks to repository root (hound-search#396)

* Add literal search option (hound-search#397)

* Add literal search option

* Pull EscapeRegExp into common.js

* Add db/ to Jest ignore patterns

* Test EscapeRegExp() matches its input

* Test vacuous EscapeRegExp

* Give repo links a target of blank (hound-search#404)

Add rel="noopener noreferrer" to _blank links

Co-authored-by: Joseph Price <pricejosephd@gmail.com>
Co-authored-by: dschott <dschott@etsy.com>
Co-authored-by: Nicolas R <cpan@atoomic.org>
Co-authored-by: Igor <igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com>
Co-authored-by: Salem <salemhilal@gmail.com>
Co-authored-by: Richard Liang <rwliang@users.noreply.github.com>
Co-authored-by: Vincent Rischmann <vincent@rischmann.fr>
Co-authored-by: Blobb Ered <5307533+blobbered@users.noreply.github.com>
Co-authored-by: Rebecca Lau <blobbered@users.noreply.github.com>
Co-authored-by: Ruixi Fan <rfan@etsy.com>
Co-authored-by: Ruixi Fan <69488297+rfan-debug@users.noreply.github.com>
Co-authored-by: Andreas Linz <anli@spreadshirt.net>
Co-authored-by: Rebecca Lau <rblau@etsy.com>
Co-authored-by: Kartikay Shandil <shandilkartikay@gmail.com>
Co-authored-by: Kartikay Shandil <kartikays@sahaj.ai>
Co-authored-by: Ashley Roach <aroach@gmail.com>
Co-authored-by: karthick <a.karthie+github@gmail.com>
Co-authored-by: kayyapil <k.ayyapillai@reply.com>
Co-authored-by: ehrktia <a.karthie+github@pm.me>
Co-authored-by: David Kolossa <david.kolossa@posteo.de>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Andrew Stanton <StingyJack@users.noreply.github.com>
Co-authored-by: David Schott <dschott68@users.noreply.github.com>
Co-authored-by: Cor Bosman <cor@xs4all.net>
Co-authored-by: Jacob Rose <jacob@usroses.org>
Co-authored-by: Alexander Chiu <alexanderchiu@users.noreply.github.com>
Co-authored-by: Joel Armstrong <mrjoelarmstrong@gmail.com>
Co-authored-by: Jone Marius Vignes <73816+inful@users.noreply.github.com>
Co-authored-by: Jone Marius Vignes <jvig@ihelse.net>
Co-authored-by: Simon Legner <Simon.Legner@gmail.com>
Co-authored-by: Bucky Schwarz <hoorayimhelping@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants