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

Add GitLab engine #19

Merged
merged 4 commits into from
Jan 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ The full list of supported data sources:
- [Dropbox](https://www.dropbox.com/) files and folders
- [Figma](https://www.figma.com/) files, projects, and teams
- [GitHub](https://github.com/) PRs, issues, and repo metadata
- [GitLab](https://gitlab.com/) merge-requests
- [Google Drive](https://www.google.com/drive/) docs, spreadsheets, etc.
- [Google Groups](https://groups.google.com/) groups
- [Greenhouse](https://www.greenhouse.io/) job posts
- [Guru](https://www.getguru.com/) cards
- [Hound](https://github.com/hound-search/hound)-indexed code
- [Hound](https://github.com/hound-search/hound) indexed code
- [Jenkins](https://www.jenkins.io/) job names
- [Jira](https://www.atlassian.com/software/jira) issues
- [Lingo](https://www.lingoapp.com/) assets
Expand Down
7 changes: 7 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ engines:
# GitHub personal access token
token: abcdef0123456789abcdef0123456789abcdef01

# GitLab Merge Requests
gitlab:
# GitLab API origin (optional, defaults to https://gitlab.com)
origin: https://gitlab.com
# GitLab personal access token
token: abcdef0123456789abcdef0123456789abcdef01

# Greenhouse job posts
greenhouse:
# Board token
Expand Down
52 changes: 52 additions & 0 deletions src/engines/gitlab.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import axios, { AxiosInstance } from "axios";
import * as marked from "marked";

import { getUnixTime, trimLines } from "../util";

let client: AxiosInstance | undefined;

const engine: Engine = {
id: "gitlab",
init: ({
origin = "https://gitlab.com",
token,
}: {
origin: string;
token: string;
}) => {
const axiosClient = axios.create({
baseURL: `${origin}/api/v4`,
headers: { Authorization: `bearer ${token}` },
});
client = axiosClient;
},
name: "GitLab",
search: async q => {
if (!client) {
throw Error("Engine not initialized");
}

// https://docs.gitlab.com/ee/api/merge_requests.html#list-merge-requests
const data: {
description: string;
title: string;
updated_at: string;
web_url: string;
}[] = (
await client.get("/merge_requests", {
params: { scope: "all", search: q },
})
).data;

return data.map(mr => ({
modified: getUnixTime(mr.updated_at),
snippet: `<blockquote>${marked(
trimLines(mr.description, q),
)}</blockquote>`,
title: mr.title,
url: mr.web_url,
}));
},
};

export default engine;
2 changes: 2 additions & 0 deletions src/engines/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import drive from "./drive";
import dropbox from "./dropbox";
import figma from "./figma";
import github from "./github";
import gitlab from "./gitlab";
import greenhouse from "./greenhouse";
import groups from "./groups";
import guru from "./guru";
Expand All @@ -28,6 +29,7 @@ const engines: Engine[] = [
dropbox,
figma,
github,
gitlab,
greenhouse,
groups,
guru,
Expand Down
29 changes: 29 additions & 0 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,35 @@ export const fuzzyIncludes = (() => {
fuzzify(haystack ?? "").includes(fuzzify(needle));
})();

/**
* Trims the result to at most `MAX_ROWS` lines. This method is used to
* restrict the length of a search result snippet, so that the UI stays clear.
* The method tries to trim the lines in a way such that at least the first
* match to the query stays visible.
*/
export const trimLines = (result: string, q: string): string => {
const MAX_ROWS = 8;
const halfRows = MAX_ROWS / 2;

result = result.trim();
const lines = result.split("\n");
if (lines.length <= MAX_ROWS) {
return result;
}

const matchIdx = lines.findIndex(line => fuzzyIncludes(line, q));
let startIdx = Math.max(0, matchIdx - halfRows);
let endIdx = Math.min(lines.length, matchIdx + halfRows);

if (startIdx === 0) {
endIdx = MAX_ROWS;
} else if (endIdx === lines.length) {
startIdx = lines.length - MAX_ROWS;
}

return lines.slice(startIdx, endIdx).join("\n");
};

/**
* Converts a date string such as "2020-06-30T21:06:25.166Z" to a Unix
* timestamp in seconds.
Expand Down