mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-02 20:18:29 +01:00
Compare commits
1 Commits
ci/detect-
...
chore/secu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
06510d2bd6 |
5
.github/workflows/conflict.yml
vendored
5
.github/workflows/conflict.yml
vendored
@@ -3,6 +3,11 @@ name: 🏷️🔀Merge Conflict Labeler
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [develop]
|
branches: [develop]
|
||||||
|
# SECURITY: pull_request_target runs with the base repo's write token and secrets.
|
||||||
|
# This job only labels via the API and is safe ONLY because it never checks out or
|
||||||
|
# runs the PR head's code. NEVER add `actions/checkout` of the PR head (or any `run:`
|
||||||
|
# that interpolates PR-controlled data) to this workflow — that would turn it into a
|
||||||
|
# full repo-compromise vector.
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
branches: [develop]
|
branches: [develop]
|
||||||
types: [synchronize]
|
types: [synchronize]
|
||||||
|
|||||||
38
.github/workflows/detect-duplicate.yml
vendored
38
.github/workflows/detect-duplicate.yml
vendored
@@ -1,38 +0,0 @@
|
|||||||
name: 🔁 Detect Duplicate Issues
|
|
||||||
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: detect-duplicate-${{ github.event.issue.number }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
detect:
|
|
||||||
name: 🔍 Find similar issues
|
|
||||||
if: github.actor != 'github-actions[bot]'
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
permissions:
|
|
||||||
issues: write
|
|
||||||
contents: read
|
|
||||||
steps:
|
|
||||||
- name: 📥 Checkout repository
|
|
||||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
||||||
|
|
||||||
- name: 🍞 Setup Bun
|
|
||||||
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
|
|
||||||
with:
|
|
||||||
bun-version: latest
|
|
||||||
|
|
||||||
- name: 🔍 Detect duplicate issues
|
|
||||||
run: bun scripts/detect-duplicate-issue.mjs
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ github.token }}
|
|
||||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
||||||
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
||||||
ISSUE_TITLE: ${{ github.event.issue.title }}
|
|
||||||
ISSUE_BODY: ${{ github.event.issue.body }}
|
|
||||||
@@ -1,12 +1,22 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
[[ -z $(git status --porcelain) ]] &&
|
# Local helper: fast-forward master into develop and back. Aborts on any failure and
|
||||||
git checkout master &&
|
# restores the branch you started on. Not used in CI.
|
||||||
git pull --ff-only &&
|
set -euo pipefail
|
||||||
git checkout develop &&
|
|
||||||
git merge master &&
|
if [[ -n $(git status --porcelain) ]]; then
|
||||||
git push --follow-tags &&
|
echo "Error: working tree is not clean — commit or stash first." >&2
|
||||||
git checkout master &&
|
exit 1
|
||||||
git merge develop --ff-only &&
|
fi
|
||||||
git push &&
|
|
||||||
git checkout develop ||
|
start_branch=$(git rev-parse --abbrev-ref HEAD)
|
||||||
(echo "Error: Failed to merge" && exit 1)
|
trap 'git checkout "$start_branch" >/dev/null 2>&1 || true' EXIT
|
||||||
|
|
||||||
|
git checkout master
|
||||||
|
git pull --ff-only
|
||||||
|
git checkout develop
|
||||||
|
git merge master
|
||||||
|
git push --follow-tags
|
||||||
|
git checkout master
|
||||||
|
git merge develop --ff-only
|
||||||
|
git push
|
||||||
|
git checkout develop
|
||||||
|
|||||||
@@ -1,202 +0,0 @@
|
|||||||
#!/usr/bin/env bun
|
|
||||||
/**
|
|
||||||
* Flags likely-duplicate issues when a new issue is opened, using lexical similarity
|
|
||||||
* (Jaccard over word sets of the title and body) — no API key, no embeddings.
|
|
||||||
*
|
|
||||||
* On a match it posts ONE comment listing the closest open issues and adds the
|
|
||||||
* "possible duplicate" label. If nothing is similar enough, it does nothing.
|
|
||||||
*
|
|
||||||
* Env:
|
|
||||||
* GITHUB_REPOSITORY owner/repo
|
|
||||||
* ISSUE_NUMBER the new issue number
|
|
||||||
* ISSUE_TITLE the new issue title
|
|
||||||
* ISSUE_BODY the new issue body
|
|
||||||
* GH_TOKEN/GITHUB_TOKEN for gh (provided in CI)
|
|
||||||
* DUP_THRESHOLD similarity threshold 0..1 (default 0.3)
|
|
||||||
* DUP_MAX max matches to report (default 5)
|
|
||||||
* DUP_FIXTURE optional path to a JSON array of {number,title,body} (local testing)
|
|
||||||
* DRY_RUN if set, print results instead of commenting/labelling
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { execFileSync } from "node:child_process";
|
|
||||||
import { readFileSync } from "node:fs";
|
|
||||||
|
|
||||||
const REPO = process.env.GITHUB_REPOSITORY || "streamyfin/streamyfin";
|
|
||||||
const NUMBER = Number(process.env.ISSUE_NUMBER);
|
|
||||||
const TITLE = process.env.ISSUE_TITLE || "";
|
|
||||||
const BODY = process.env.ISSUE_BODY || "";
|
|
||||||
const THRESHOLD = Number(process.env.DUP_THRESHOLD) || 0.3;
|
|
||||||
const MAX = Number(process.env.DUP_MAX) || 5;
|
|
||||||
const DRY = !!process.env.DRY_RUN;
|
|
||||||
const LABEL = "possible duplicate";
|
|
||||||
|
|
||||||
// Generic stop words only — keep domain/feature/platform words (android, downloads,
|
|
||||||
// subtitles…) since those are exactly what makes two reports the same or different.
|
|
||||||
const STOP = new Set(
|
|
||||||
(
|
|
||||||
"a an the and or but if then of to in on at by for with from as is are was were be been being do does did " +
|
|
||||||
"it its this that these those i you we they me my your our their he she him her " +
|
|
||||||
"when while where what which who how why so just then than too very can could would should will " +
|
|
||||||
"not no nor only own same s t don dont im ive please thanks hi hello also still get got use used using " +
|
|
||||||
"app application streamyfin issue bug"
|
|
||||||
).split(/\s+/),
|
|
||||||
);
|
|
||||||
|
|
||||||
const stem = (w) => w.replace(/(ing|ed|es|s)$/, "");
|
|
||||||
|
|
||||||
const tokens = (s) =>
|
|
||||||
(s || "")
|
|
||||||
.toLowerCase()
|
|
||||||
.replace(/```[\s\S]*?```/g, " ") // drop code blocks
|
|
||||||
.replace(/<!--[\s\S]*?-->/g, " ") // drop html comments
|
|
||||||
.replace(/https?:\/\/\S+/g, " ") // drop urls
|
|
||||||
.replace(/[^a-z0-9\s]/g, " ")
|
|
||||||
.split(/\s+/)
|
|
||||||
.filter((w) => w.length > 2 && !STOP.has(w))
|
|
||||||
.map(stem)
|
|
||||||
.filter((w) => w.length > 2);
|
|
||||||
|
|
||||||
const jaccard = (a, b) => {
|
|
||||||
const A = new Set(a);
|
|
||||||
const B = new Set(b);
|
|
||||||
if (!A.size || !B.size) return 0;
|
|
||||||
let inter = 0;
|
|
||||||
for (const x of A) if (B.has(x)) inter++;
|
|
||||||
return inter / (A.size + B.size - inter);
|
|
||||||
};
|
|
||||||
|
|
||||||
const newTitle = tokens(TITLE);
|
|
||||||
const newBody = tokens(BODY);
|
|
||||||
const score = (o) =>
|
|
||||||
0.6 * jaccard(newTitle, tokens(o.title)) +
|
|
||||||
0.4 * jaccard(newBody, tokens(o.body));
|
|
||||||
|
|
||||||
// fetch open issues (excluding PRs and the new issue itself)
|
|
||||||
let issues;
|
|
||||||
if (process.env.DUP_FIXTURE) {
|
|
||||||
issues = JSON.parse(readFileSync(process.env.DUP_FIXTURE, "utf8"));
|
|
||||||
} else {
|
|
||||||
const raw = execFileSync(
|
|
||||||
"gh",
|
|
||||||
[
|
|
||||||
"api",
|
|
||||||
`repos/${REPO}/issues`,
|
|
||||||
"--paginate",
|
|
||||||
"-X",
|
|
||||||
"GET",
|
|
||||||
"-f",
|
|
||||||
"state=open",
|
|
||||||
"-f",
|
|
||||||
"per_page=100",
|
|
||||||
"--jq",
|
|
||||||
".[] | select(.pull_request | not) | {number, title, body}",
|
|
||||||
],
|
|
||||||
{ encoding: "utf8", maxBuffer: 1e8 },
|
|
||||||
);
|
|
||||||
issues = raw
|
|
||||||
.split("\n")
|
|
||||||
.filter(Boolean)
|
|
||||||
.map((l) => JSON.parse(l));
|
|
||||||
}
|
|
||||||
|
|
||||||
const matches = issues
|
|
||||||
.filter((o) => o.number !== NUMBER)
|
|
||||||
.map((o) => ({ ...o, s: score(o) }))
|
|
||||||
.filter((o) => o.s >= THRESHOLD)
|
|
||||||
.sort((a, b) => b.s - a.s)
|
|
||||||
.slice(0, MAX);
|
|
||||||
|
|
||||||
if (!matches.length) {
|
|
||||||
console.log("No likely duplicates found.");
|
|
||||||
process.exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Neutralise other issues' titles before echoing them back: break @mentions and
|
|
||||||
// strip markdown/HTML control chars so a maliciously-named issue can't ping people
|
|
||||||
// or inject formatting into our comment. GitHub linkifies "#123" on its own.
|
|
||||||
const safeTitle = (t) =>
|
|
||||||
(t || "")
|
|
||||||
.replace(/@/g, "@")
|
|
||||||
.replace(/[`<>|*_~[\]]/g, " ")
|
|
||||||
.replace(/\s+/g, " ")
|
|
||||||
.trim()
|
|
||||||
.slice(0, 140);
|
|
||||||
const list = matches
|
|
||||||
.map(
|
|
||||||
(m) =>
|
|
||||||
`- #${m.number} — ${safeTitle(m.title)} (≈ ${Math.round(m.s * 100)}% similar)`,
|
|
||||||
)
|
|
||||||
.join("\n");
|
|
||||||
const comment = [
|
|
||||||
"<!-- duplicate-detector -->",
|
|
||||||
"🔍 **This looks like it might be a duplicate.** Possibly related open issues:",
|
|
||||||
"",
|
|
||||||
list,
|
|
||||||
"",
|
|
||||||
"If yours is different, ignore this — a maintainer will confirm. Otherwise, please 👍 the existing issue and add any extra details there.",
|
|
||||||
].join("\n");
|
|
||||||
|
|
||||||
console.log(`Found ${matches.length} possible duplicate(s):\n${list}`);
|
|
||||||
|
|
||||||
if (DRY) {
|
|
||||||
console.log("\nDRY_RUN: not commenting/labelling.");
|
|
||||||
process.exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
execFileSync(
|
|
||||||
"gh",
|
|
||||||
[
|
|
||||||
"api",
|
|
||||||
"-X",
|
|
||||||
"POST",
|
|
||||||
`repos/${REPO}/issues/${NUMBER}/comments`,
|
|
||||||
"-f",
|
|
||||||
`body=${comment}`,
|
|
||||||
],
|
|
||||||
{ stdio: "ignore" },
|
|
||||||
);
|
|
||||||
try {
|
|
||||||
execFileSync(
|
|
||||||
"gh",
|
|
||||||
[
|
|
||||||
"api",
|
|
||||||
"-X",
|
|
||||||
"POST",
|
|
||||||
`repos/${REPO}/issues/${NUMBER}/labels`,
|
|
||||||
"-f",
|
|
||||||
`labels[]=${LABEL}`,
|
|
||||||
],
|
|
||||||
{ stdio: "ignore" },
|
|
||||||
);
|
|
||||||
} catch {
|
|
||||||
// label may not exist yet — create then add
|
|
||||||
execFileSync(
|
|
||||||
"gh",
|
|
||||||
[
|
|
||||||
"api",
|
|
||||||
"-X",
|
|
||||||
"POST",
|
|
||||||
`repos/${REPO}/labels`,
|
|
||||||
"-f",
|
|
||||||
`name=${LABEL}`,
|
|
||||||
"-f",
|
|
||||||
"color=fbca04",
|
|
||||||
"-f",
|
|
||||||
"description=Automatically flagged as a possible duplicate",
|
|
||||||
],
|
|
||||||
{ stdio: "ignore" },
|
|
||||||
);
|
|
||||||
execFileSync(
|
|
||||||
"gh",
|
|
||||||
[
|
|
||||||
"api",
|
|
||||||
"-X",
|
|
||||||
"POST",
|
|
||||||
`repos/${REPO}/issues/${NUMBER}/labels`,
|
|
||||||
"-f",
|
|
||||||
`labels[]=${LABEL}`,
|
|
||||||
],
|
|
||||||
{ stdio: "ignore" },
|
|
||||||
);
|
|
||||||
}
|
|
||||||
console.log("Commented and labelled.");
|
|
||||||
@@ -1,62 +1,28 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
const _fs = require("node:fs");
|
// Symlinks the platform-specific native dirs to `ios` / `android` depending on EXPO_TV.
|
||||||
|
// Uses fs APIs (no shell) so there is no command-injection surface.
|
||||||
|
|
||||||
|
const fs = require("node:fs");
|
||||||
const path = require("node:path");
|
const path = require("node:path");
|
||||||
const process = require("node:process");
|
|
||||||
const { execSync } = require("node:child_process");
|
|
||||||
|
|
||||||
const root = process.cwd();
|
const root = process.cwd();
|
||||||
// const tvosPath = path.join(root, 'iostv');
|
const isTV = process.env.EXPO_TV && process.env.EXPO_TV !== "0";
|
||||||
// const iosPath = path.join(root, 'iosmobile');
|
|
||||||
// const androidPath = path.join(root, 'androidmobile');
|
|
||||||
// const androidTVPath = path.join(root, 'androidtv');
|
|
||||||
// const device = process.argv[2];
|
|
||||||
// const platform = process.argv[2];
|
|
||||||
const isTV = process.env.EXPO_TV || false;
|
|
||||||
|
|
||||||
const paths = new Map([
|
const links = isTV
|
||||||
["tvos", path.join(root, "iostv")],
|
? { ios: path.join(root, "iostv"), android: path.join(root, "androidtv") }
|
||||||
["ios", path.join(root, "iosmobile")],
|
: {
|
||||||
["android", path.join(root, "androidmobile")],
|
ios: path.join(root, "iosmobile"),
|
||||||
["androidtv", path.join(root, "androidtv")],
|
android: path.join(root, "androidmobile"),
|
||||||
]);
|
};
|
||||||
|
|
||||||
// const platformPath = paths.get(platform);
|
for (const [link, target] of Object.entries(links)) {
|
||||||
|
fs.mkdirSync(target, { recursive: true });
|
||||||
if (isTV) {
|
try {
|
||||||
stdout = execSync(
|
fs.unlinkSync(link); // replace an existing symlink/file (ln -nsf)
|
||||||
`mkdir -p ${paths.get("tvos")}; ln -nsf ${paths.get("tvos")} ios`,
|
} catch {
|
||||||
);
|
// nothing to remove
|
||||||
console.log(stdout.toString());
|
}
|
||||||
stdout = execSync(
|
fs.symlinkSync(target, link);
|
||||||
`mkdir -p ${paths.get("androidtv")}; ln -nsf ${paths.get(
|
console.log(`${link} -> ${target}`);
|
||||||
"androidtv",
|
|
||||||
)} android`,
|
|
||||||
);
|
|
||||||
console.log(stdout.toString());
|
|
||||||
} else {
|
|
||||||
stdout = execSync(
|
|
||||||
`mkdir -p ${paths.get("ios")}; ln -nsf ${paths.get("ios")} ios`,
|
|
||||||
);
|
|
||||||
console.log(stdout.toString());
|
|
||||||
stdout = execSync(
|
|
||||||
`mkdir -p ${paths.get("android")}; ln -nsf ${paths.get("android")} android`,
|
|
||||||
);
|
|
||||||
console.log(stdout.toString());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// target = "";
|
|
||||||
// switch (platform) {
|
|
||||||
// case "tvos":
|
|
||||||
// target = "ios";
|
|
||||||
// break;
|
|
||||||
// case "ios":
|
|
||||||
// target = "ios";
|
|
||||||
// break;
|
|
||||||
// case "android":
|
|
||||||
// target = "android";
|
|
||||||
// break;
|
|
||||||
// case "androidtv":
|
|
||||||
// target = "android";
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
|
|||||||
Reference in New Issue
Block a user