chore: add missing SPDX ID and workflow check (#13570)
* chore: add workflow which checks if SPDX ID exists * chore: add missing SPDX ID in some files * chore: change trigger condition * chore: trigger on push * lint
This commit is contained in:
		
							parent
							
								
									5c1d86b796
								
							
						
					
					
						commit
						29f6ba6310
					
				
					 43 changed files with 287 additions and 2 deletions
				
			
		
							
								
								
									
										75
									
								
								.github/workflows/check-spdx-license-id.yml
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								.github/workflows/check-spdx-license-id.yml
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,75 @@
 | 
				
			||||||
 | 
					name: Check SPDX-License-Identifier
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					on:
 | 
				
			||||||
 | 
					  push:
 | 
				
			||||||
 | 
					    branches:
 | 
				
			||||||
 | 
					      - master
 | 
				
			||||||
 | 
					      - develop
 | 
				
			||||||
 | 
					  pull_request:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					jobs:
 | 
				
			||||||
 | 
					  check-spdx-license-id:
 | 
				
			||||||
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
 | 
					    steps:
 | 
				
			||||||
 | 
					      - name: Checkout
 | 
				
			||||||
 | 
					        uses: actions/checkout@v4.1.1
 | 
				
			||||||
 | 
					      - name: Check
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          counter=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          search() {
 | 
				
			||||||
 | 
					            local directory="$1"
 | 
				
			||||||
 | 
					            find "$directory" -type f \
 | 
				
			||||||
 | 
					              '(' \
 | 
				
			||||||
 | 
					                -name "*.cjs" -and -not -name '*.config.cjs' -o \
 | 
				
			||||||
 | 
					                -name "*.html" -o \
 | 
				
			||||||
 | 
					                -name "*.js" -and -not -name '*.config.js' -o \
 | 
				
			||||||
 | 
					                -name "*.mjs" -and -not -name '*.config.mjs' -o \
 | 
				
			||||||
 | 
					                -name "*.scss" -o \
 | 
				
			||||||
 | 
					                -name "*.ts" -and -not -name '*.config.ts' -o \
 | 
				
			||||||
 | 
					                -name "*.vue" \
 | 
				
			||||||
 | 
					              ')' -and \
 | 
				
			||||||
 | 
					              -not -name '*eslint*'
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          check() {
 | 
				
			||||||
 | 
					            local file="$1"
 | 
				
			||||||
 | 
					            if ! (
 | 
				
			||||||
 | 
					              grep -q "SPDX-FileCopyrightText: syuilo and misskey-project" "$file" ||
 | 
				
			||||||
 | 
					              grep -q "SPDX-License-Identifier: AGPL-3.0-only" "$file"
 | 
				
			||||||
 | 
					            ); then
 | 
				
			||||||
 | 
					              echo "Missing: $file"
 | 
				
			||||||
 | 
					              ((counter++))
 | 
				
			||||||
 | 
					            fi
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          directories=(
 | 
				
			||||||
 | 
					            "cypress/e2e"
 | 
				
			||||||
 | 
					            "packages/backend/migration"
 | 
				
			||||||
 | 
					            "packages/backend/src"
 | 
				
			||||||
 | 
					            "packages/backend/test"
 | 
				
			||||||
 | 
					            "packages/frontend/.storybook"
 | 
				
			||||||
 | 
					            "packages/frontend/@types"
 | 
				
			||||||
 | 
					            "packages/frontend/lib"
 | 
				
			||||||
 | 
					            "packages/frontend/public"
 | 
				
			||||||
 | 
					            "packages/frontend/src"
 | 
				
			||||||
 | 
					            "packages/frontend/test"
 | 
				
			||||||
 | 
					            "packages/misskey-bubble-game/src"
 | 
				
			||||||
 | 
					            "packages/misskey-reversi/src"
 | 
				
			||||||
 | 
					            "packages/sw/src"
 | 
				
			||||||
 | 
					            "scripts"
 | 
				
			||||||
 | 
					          )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          for directory in "${directories[@]}"; do
 | 
				
			||||||
 | 
					            for file in $(search $directory); do
 | 
				
			||||||
 | 
					              check "$file"
 | 
				
			||||||
 | 
					            done
 | 
				
			||||||
 | 
					          done
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          if [ $counter -gt 0 ]; then
 | 
				
			||||||
 | 
					            echo "SPDX-License-Identifier is missing in $counter files."
 | 
				
			||||||
 | 
					            exit 1
 | 
				
			||||||
 | 
					          else
 | 
				
			||||||
 | 
					            echo "SPDX-License-Identifier is certainly described in all target files!"
 | 
				
			||||||
 | 
					            exit 0
 | 
				
			||||||
 | 
					          fi
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
describe('Before setup instance', () => {
 | 
					describe('Before setup instance', () => {
 | 
				
			||||||
	beforeEach(() => {
 | 
						beforeEach(() => {
 | 
				
			||||||
		cy.resetState();
 | 
							cy.resetState();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
describe('Router transition', () => {
 | 
					describe('Router transition', () => {
 | 
				
			||||||
	describe('Redirect', () => {
 | 
						describe('Redirect', () => {
 | 
				
			||||||
		// サーバの初期化。ルートのテストに関しては各describeごとに1度だけ実行で十分だと思う(使いまわした方が早い)
 | 
							// サーバの初期化。ルートのテストに関しては各describeごとに1度だけ実行で十分だと思う(使いまわした方が早い)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* flaky
 | 
					/* flaky
 | 
				
			||||||
describe('After user signed in', () => {
 | 
					describe('After user signed in', () => {
 | 
				
			||||||
	beforeEach(() => {
 | 
						beforeEach(() => {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { loadConfig } from './built/config.js'
 | 
					import { loadConfig } from './built/config.js'
 | 
				
			||||||
import { genOpenapiSpec } from './built/server/api/openapi/gen-spec.js'
 | 
					import { genOpenapiSpec } from './built/server/api/openapi/gen-spec.js'
 | 
				
			||||||
import { writeFileSync } from "node:fs";
 | 
					import { writeFileSync } from "node:fs";
 | 
				
			||||||
| 
						 | 
					@ -5,4 +10,4 @@ import { writeFileSync } from "node:fs";
 | 
				
			||||||
const config = loadConfig();
 | 
					const config = loadConfig();
 | 
				
			||||||
const spec = genOpenapiSpec(config, true);
 | 
					const spec = genOpenapiSpec(config, true);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
writeFileSync('./built/api.json', JSON.stringify(spec), 'utf-8');
 | 
					writeFileSync('./built/api.json', JSON.stringify(spec), 'utf-8');
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class UserBlacklistAnntena1689325027964 {
 | 
					export class UserBlacklistAnntena1689325027964 {
 | 
				
			||||||
    name = 'UserBlacklistAnntena1689325027964'
 | 
					    name = 'UserBlacklistAnntena1689325027964'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class FixRenoteMuting1690417561185 {
 | 
					export class FixRenoteMuting1690417561185 {
 | 
				
			||||||
    name = 'FixRenoteMuting1690417561185'
 | 
					    name = 'FixRenoteMuting1690417561185'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class ChangeCacheRemoteFilesDefault1690417561186 {
 | 
					export class ChangeCacheRemoteFilesDefault1690417561186 {
 | 
				
			||||||
    name = 'ChangeCacheRemoteFilesDefault1690417561186'
 | 
					    name = 'ChangeCacheRemoteFilesDefault1690417561186'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class Fix1690417561187 {
 | 
					export class Fix1690417561187 {
 | 
				
			||||||
    name = 'Fix1690417561187'
 | 
					    name = 'Fix1690417561187'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class User2faBackupCodes1690569881926 {
 | 
					export class User2faBackupCodes1690569881926 {
 | 
				
			||||||
	name = 'User2faBackupCodes1690569881926'
 | 
						name = 'User2faBackupCodes1690569881926'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class RefineAnnouncement1691649257651 {
 | 
					export class RefineAnnouncement1691649257651 {
 | 
				
			||||||
    name = 'RefineAnnouncement1691649257651'
 | 
					    name = 'RefineAnnouncement1691649257651'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class RefineAnnouncement21691657412740 {
 | 
					export class RefineAnnouncement21691657412740 {
 | 
				
			||||||
    name = 'RefineAnnouncement21691657412740'
 | 
					    name = 'RefineAnnouncement21691657412740'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class VerifiedLinks1695260774117 {
 | 
					export class VerifiedLinks1695260774117 {
 | 
				
			||||||
    name = 'VerifiedLinks1695260774117'
 | 
					    name = 'VerifiedLinks1695260774117'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class FollowingNotify1695288787870 {
 | 
					export class FollowingNotify1695288787870 {
 | 
				
			||||||
    name = 'FollowingNotify1695288787870'
 | 
					    name = 'FollowingNotify1695288787870'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class ShortName1695440131671 {
 | 
					export class ShortName1695440131671 {
 | 
				
			||||||
    name = 'ShortName1695440131671'
 | 
					    name = 'ShortName1695440131671'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class MutingNotificationTypes1695605508898 {
 | 
					export class MutingNotificationTypes1695605508898 {
 | 
				
			||||||
    name = 'MutingNotificationTypes1695605508898'
 | 
					    name = 'MutingNotificationTypes1695605508898'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class NoteUpdatedAt1695901659683 {
 | 
					export class NoteUpdatedAt1695901659683 {
 | 
				
			||||||
    name = 'NoteUpdatedAt1695901659683'
 | 
					    name = 'NoteUpdatedAt1695901659683'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class UserListMembership1696323464251 {
 | 
					export class UserListMembership1696323464251 {
 | 
				
			||||||
    name = 'UserListMembership1696323464251'
 | 
					    name = 'UserListMembership1696323464251'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class Hibernation1696331570827 {
 | 
					export class Hibernation1696331570827 {
 | 
				
			||||||
    name = 'Hibernation1696331570827'
 | 
					    name = 'Hibernation1696331570827'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class Clean1696332072038 {
 | 
					export class Clean1696332072038 {
 | 
				
			||||||
    name = 'Clean1696332072038'
 | 
					    name = 'Clean1696332072038'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class HardMute1700383825690 {
 | 
					export class HardMute1700383825690 {
 | 
				
			||||||
    name = 'HardMute1700383825690'
 | 
					    name = 'HardMute1700383825690'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { Inject, Injectable, OnModuleInit } from '@nestjs/common';
 | 
					import { Inject, Injectable, OnModuleInit } from '@nestjs/common';
 | 
				
			||||||
import Redis from 'ioredis';
 | 
					import Redis from 'ioredis';
 | 
				
			||||||
import { DI } from '@/di-symbols.js';
 | 
					import { DI } from '@/di-symbols.js';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import type { onRequestHookHandler } from 'fastify';
 | 
					import type { onRequestHookHandler } from 'fastify';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const handleRequestRedirectToOmitSearch: onRequestHookHandler = (request, reply, done) => {
 | 
					export const handleRequestRedirectToOmitSearch: onRequestHookHandler = (request, reply, done) => {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import type { MiNote } from '@/models/Note.js';
 | 
					import type { MiNote } from '@/models/Note.js';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function isPureRenote(note: MiNote): note is MiNote & { renoteId: NonNullable<MiNote['renoteId']> } {
 | 
					export function isPureRenote(note: MiNote): note is MiNote & { renoteId: NonNullable<MiNote['renoteId']> } {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type FetchFunction<K, V> = (key: K) => Promise<V>;
 | 
					export type FetchFunction<K, V> = (key: K) => Promise<V>;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ResolveReject<V> = Parameters<ConstructorParameters<typeof Promise<V>>[0]>;
 | 
					type ResolveReject<V> = Parameters<ConstructorParameters<typeof Promise<V>>[0]>;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
 | 
					import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
 | 
				
			||||||
import { id } from './util/id.js';
 | 
					import { id } from './util/id.js';
 | 
				
			||||||
import { MiUser } from './User.js';
 | 
					import { MiUser } from './User.js';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const packedSigninSchema = {
 | 
					export const packedSigninSchema = {
 | 
				
			||||||
	type: 'object',
 | 
						type: 'object',
 | 
				
			||||||
	properties: {
 | 
						properties: {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { initTestDb, sendEnvResetRequest } from './utils.js';
 | 
					import { initTestDb, sendEnvResetRequest } from './utils.js';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
beforeAll(async () => {
 | 
					beforeAll(async () => {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as assert from 'assert';
 | 
					import * as assert from 'assert';
 | 
				
			||||||
import { Test } from '@nestjs/testing';
 | 
					import { Test } from '@nestjs/testing';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { DebounceLoader } from '@/misc/loader.js';
 | 
					import { DebounceLoader } from '@/misc/loader.js';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class Mock {
 | 
					class Mock {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					<!--
 | 
				
			||||||
 | 
					SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					-->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<link rel="preload" href="https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/about-icon.png?raw=true" as="image" type="image/png" crossorigin="anonymous">
 | 
					<link rel="preload" href="https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/about-icon.png?raw=true" as="image" type="image/png" crossorigin="anonymous">
 | 
				
			||||||
<link rel="preload" href="https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/fedi.jpg?raw=true" as="image" type="image/jpeg" crossorigin="anonymous">
 | 
					<link rel="preload" href="https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/fedi.jpg?raw=true" as="image" type="image/jpeg" crossorigin="anonymous">
 | 
				
			||||||
<link rel="stylesheet" href="https://unpkg.com/@tabler/icons-webfont@2.44.0/tabler-icons.min.css">
 | 
					<link rel="stylesheet" href="https://unpkg.com/@tabler/icons-webfont@2.44.0/tabler-icons.min.css">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					<!--
 | 
				
			||||||
 | 
					SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					-->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<template>
 | 
					<template>
 | 
				
			||||||
<render/>
 | 
					<render/>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default (v, fractionDigits = 0) => {
 | 
					export default (v, fractionDigits = 0) => {
 | 
				
			||||||
	if (v == null) return 'N/A';
 | 
						if (v == null) return 'N/A';
 | 
				
			||||||
	if (v === 0) return '0';
 | 
						if (v === 0) return '0';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as Misskey from 'misskey-js';
 | 
					import * as Misskey from 'misskey-js';
 | 
				
			||||||
import { UnicodeEmojiDef } from './emojilist.js';
 | 
					import { UnicodeEmojiDef } from './emojilist.js';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { unisonReload } from '@/scripts/unison-reload.js';
 | 
					import { unisonReload } from '@/scripts/unison-reload.js';
 | 
				
			||||||
import * as os from '@/os.js';
 | 
					import * as os from '@/os.js';
 | 
				
			||||||
import { miLocalStorage } from '@/local-storage.js';
 | 
					import { miLocalStorage } from '@/local-storage.js';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { bundledThemesInfo } from 'shiki';
 | 
					import { bundledThemesInfo } from 'shiki';
 | 
				
			||||||
import { getHighlighterCore, loadWasm } from 'shiki/core';
 | 
					import { getHighlighterCore, loadWasm } from 'shiki/core';
 | 
				
			||||||
import darkPlus from 'shiki/themes/dark-plus.mjs';
 | 
					import darkPlus from 'shiki/themes/dark-plus.mjs';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default async function hasAudio(media: HTMLMediaElement) {
 | 
					export default async function hasAudio(media: HTMLMediaElement) {
 | 
				
			||||||
	const cloned = media.cloneNode() as HTMLMediaElement;
 | 
						const cloned = media.cloneNode() as HTMLMediaElement;
 | 
				
			||||||
	cloned.muted = (cloned as typeof cloned & Partial<HTMLVideoElement>).playsInline = true;
 | 
						cloned.muted = (cloned as typeof cloned & Partial<HTMLVideoElement>).playsInline = true;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] };
 | 
					export type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type WithNonNullable<T, K extends keyof T> = T & { [P in K]-?: NonNullable<T[P]> };
 | 
					export type WithNonNullable<T, K extends keyof T> = T & { [P in K]-?: NonNullable<T[P]> };
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { Release } from './parser.js';
 | 
					import { Release } from './parser.js';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class Result {
 | 
					export class Result {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as process from 'process';
 | 
					import * as process from 'process';
 | 
				
			||||||
import * as fs from 'fs';
 | 
					import * as fs from 'fs';
 | 
				
			||||||
import { parseChangeLog } from './parser.js';
 | 
					import { parseChangeLog } from './parser.js';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import * as fs from 'node:fs';
 | 
					import * as fs from 'node:fs';
 | 
				
			||||||
import { unified } from 'unified';
 | 
					import { unified } from 'unified';
 | 
				
			||||||
import remarkParse from 'remark-parse';
 | 
					import remarkParse from 'remark-parse';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import {expect, suite, test} from "vitest";
 | 
					import {expect, suite, test} from "vitest";
 | 
				
			||||||
import {Release, ReleaseCategory} from "../src/parser";
 | 
					import {Release, ReleaseCategory} from "../src/parser";
 | 
				
			||||||
import {checkNewRelease, checkNewTopic} from "../src/checker";
 | 
					import {checkNewRelease, checkNewTopic} from "../src/checker";
 | 
				
			||||||
| 
						 | 
					@ -411,4 +416,4 @@ suite('checkNewTopic', () => {
 | 
				
			||||||
		console.log(result.message)
 | 
							console.log(result.message)
 | 
				
			||||||
		expect(result.success).toBe(false)
 | 
							expect(result.success).toBe(false)
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
})
 | 
					})
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,8 @@
 | 
				
			||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { createWriteStream } from 'node:fs';
 | 
					import { createWriteStream } from 'node:fs';
 | 
				
			||||||
import { mkdir } from 'node:fs/promises';
 | 
					import { mkdir } from 'node:fs/promises';
 | 
				
			||||||
import { resolve } from 'node:path';
 | 
					import { resolve } from 'node:path';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue