mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
584 lines
14 KiB
JavaScript
584 lines
14 KiB
JavaScript
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
const ELECTRON_MAIN_MODULES = new Set([
|
|
'app',
|
|
'autoUpdater',
|
|
'BaseWindow',
|
|
'BrowserView',
|
|
'BrowserWindow',
|
|
'contentTracing',
|
|
'desktopCapturer',
|
|
'dialog',
|
|
'globalShortcut',
|
|
'inAppPurchase',
|
|
'ipcMain',
|
|
'Menu',
|
|
'MenuItem',
|
|
'MessageChannelMain',
|
|
'MessagePortMain',
|
|
'nativeTheme',
|
|
'net',
|
|
'netLog',
|
|
'Notification',
|
|
'powerMonitor',
|
|
'powerSaveBlocker',
|
|
'process',
|
|
'protocol',
|
|
'pushNotifications',
|
|
'safeStorage',
|
|
'screen',
|
|
'session',
|
|
'ShareMenu',
|
|
'shell',
|
|
'systemPreferences',
|
|
'TouchBar',
|
|
'Tray',
|
|
'utilityProcess',
|
|
'webContents',
|
|
'WebContentsView',
|
|
'webFrameMain',
|
|
'View',
|
|
]);
|
|
const ELECTRON_RENDERER_MODULES = new Set([
|
|
'contextBridge',
|
|
'ipcRenderer',
|
|
'webFrame',
|
|
'webUtils',
|
|
]);
|
|
const ELECTRON_SHARED_MODULES = new Set([
|
|
'clipboard',
|
|
'crashReporter',
|
|
'nativeImage',
|
|
]);
|
|
|
|
// Packages that use Node.js APIs (file system, etc)
|
|
const NODE_PACKAGES = new Set([
|
|
'@electron/asar',
|
|
'@indutny/dicer',
|
|
'@indutny/mac-screen-share',
|
|
'@indutny/range-finder',
|
|
'@indutny/simple-windows-notifications',
|
|
'@signalapp/libsignal-client',
|
|
'@signalapp/mute-state-change',
|
|
'@signalapp/ringrtc',
|
|
'@signalapp/sqlcipher',
|
|
'@signalapp/windows-ucv',
|
|
'cirbuf',
|
|
'config',
|
|
'dashdash',
|
|
'encoding',
|
|
'fast-glob',
|
|
'fs-extra',
|
|
'fs-xattr',
|
|
'got',
|
|
'growing-file',
|
|
'node-fetch',
|
|
'proxy-agent',
|
|
'read-last-lines',
|
|
'split2',
|
|
'websocket',
|
|
'write-file-atomic',
|
|
|
|
// Dev dependencies
|
|
'@electron/fuses',
|
|
'@electron/notarize',
|
|
'@electron/symbolicate-mac',
|
|
'@indutny/parallel-prettier',
|
|
'@indutny/rezip-electron',
|
|
'@napi-rs/canvas',
|
|
'@signalapp/mock-server',
|
|
'@tailwindcss/cli',
|
|
'@tailwindcss/postcss',
|
|
'better-blockmap',
|
|
'chokidar-cli',
|
|
'cross-env',
|
|
'electron-builder',
|
|
'electron-mocha',
|
|
'endanger',
|
|
'enhanced-resolve',
|
|
'enquirer',
|
|
'esbuild',
|
|
'execa',
|
|
'html-webpack-plugin',
|
|
'http-server',
|
|
'json-to-ast',
|
|
'log-symbols',
|
|
'mini-css-extract-plugin',
|
|
'node-gyp',
|
|
'node-gyp-build',
|
|
'npm-run-all',
|
|
'p-limit',
|
|
'pixelmatch',
|
|
'playwright',
|
|
'postcss',
|
|
'postcss-loader',
|
|
'prettier',
|
|
'prettier-plugin-tailwindcss',
|
|
'protobufjs-cli',
|
|
'react-devtools',
|
|
'react-devtools-core',
|
|
'resedit',
|
|
'resolve-url-loader',
|
|
'sass',
|
|
'sass-loader',
|
|
'style-loader',
|
|
'stylelint',
|
|
'stylelint-config-css-modules',
|
|
'stylelint-config-recommended-scss',
|
|
'stylelint-use-logical-spec',
|
|
'svgo',
|
|
'synckit',
|
|
'tailwindcss',
|
|
'terser-webpack-plugin',
|
|
'ts-node',
|
|
'typescript',
|
|
'wait-on',
|
|
'webpack',
|
|
'webpack-cli',
|
|
'webpack-dev-server',
|
|
]);
|
|
|
|
// Packages that use DOM APIs
|
|
const DOM_PACKAGES = new Set([
|
|
'@popperjs/core',
|
|
'@radix-ui/react-tooltip',
|
|
'@react-aria/focus',
|
|
'@react-aria/interactions',
|
|
'@react-aria/utils',
|
|
'@react-spring/web',
|
|
'@tanstack/react-virtual',
|
|
'blob-util',
|
|
'blueimp-load-image',
|
|
'copy-text-to-clipboard',
|
|
'dom-accessibility-api',
|
|
'fabric',
|
|
'focus-trap-react',
|
|
'radix-ui',
|
|
'react-aria',
|
|
'react-aria-components',
|
|
'react-blurhash',
|
|
'react-popper',
|
|
'react-virtualized',
|
|
// Note that: react-dom/server is categorized separately
|
|
'react-dom',
|
|
|
|
// Dev dependencies
|
|
'@storybook/addon-a11y',
|
|
'@storybook/addon-actions',
|
|
'@storybook/addon-controls',
|
|
'@storybook/addon-interactions',
|
|
'@storybook/addon-jest',
|
|
'@storybook/addon-measure',
|
|
'@storybook/addon-toolbars',
|
|
'@storybook/addon-viewport',
|
|
'@storybook/addon-webpack5-compiler-swc',
|
|
'@storybook/csf',
|
|
'@storybook/preview-api',
|
|
'@storybook/react',
|
|
'@storybook/react-webpack5',
|
|
'@storybook/test',
|
|
'@storybook/test-runner',
|
|
'@storybook/types',
|
|
'storybook',
|
|
]);
|
|
|
|
// Packages that can run in both browser/node
|
|
const STD_PACKAGES = new Set([
|
|
'@babel/core',
|
|
'@babel/plugin-proposal-class-properties',
|
|
'@babel/plugin-proposal-nullish-coalescing-operator',
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-transform-typescript',
|
|
'@babel/preset-react',
|
|
'@babel/preset-typescript',
|
|
'@formatjs/fast-memoize',
|
|
'@formatjs/icu-messageformat-parser',
|
|
'@formatjs/intl',
|
|
'@formatjs/intl-localematcher',
|
|
'@indutny/sneequals',
|
|
'@internationalized/date',
|
|
'@react-types/shared',
|
|
'@signalapp/minimask',
|
|
'@signalapp/quill-cjs',
|
|
'@typescript-eslint/eslint-plugin',
|
|
'@typescript-eslint/parser',
|
|
'axe-core',
|
|
'babel-core',
|
|
'babel-loader',
|
|
'babel-plugin-lodash',
|
|
'blurhash',
|
|
'buffer',
|
|
'card-validator',
|
|
'casual',
|
|
'chai',
|
|
'chai-as-promised',
|
|
'chalk',
|
|
'changedpi',
|
|
'classnames',
|
|
'country-codes-list',
|
|
'credit-card-type',
|
|
'css-loader',
|
|
'csv-parse',
|
|
'danger',
|
|
'debug',
|
|
'direction',
|
|
'emoji-datasource',
|
|
'emoji-datasource-apple',
|
|
'emoji-regex',
|
|
'eslint',
|
|
'eslint-config-airbnb-typescript-prettier',
|
|
'eslint-config-prettier',
|
|
'eslint-plugin-better-tailwindcss',
|
|
'eslint-plugin-import',
|
|
'eslint-plugin-local-rules',
|
|
'eslint-plugin-mocha',
|
|
'eslint-plugin-more',
|
|
'eslint-plugin-react',
|
|
'filesize',
|
|
'firstline',
|
|
'form-data',
|
|
'framer-motion',
|
|
'fuse.js',
|
|
'google-libphonenumber',
|
|
'heic-convert',
|
|
'humanize-duration',
|
|
'intl-tel-input',
|
|
'js-yaml',
|
|
'linkify-it',
|
|
'lodash',
|
|
'long',
|
|
'lru-cache',
|
|
'memoizee',
|
|
'mocha',
|
|
'moment',
|
|
'mp4box',
|
|
'nop',
|
|
'normalize-path',
|
|
'p-map',
|
|
'p-queue',
|
|
'p-timeout',
|
|
'parsecurrency',
|
|
'pify',
|
|
'pino',
|
|
'pngjs',
|
|
'protobufjs',
|
|
'qrcode-generator',
|
|
'react',
|
|
'react-intl',
|
|
'react-redux',
|
|
'redux',
|
|
'redux-logger',
|
|
'redux-promise-middleware',
|
|
'redux-thunk',
|
|
'reselect',
|
|
'semver',
|
|
'sinon',
|
|
'tinykeys',
|
|
'type-fest',
|
|
'url',
|
|
'urlpattern-polyfill',
|
|
'uuid',
|
|
'zod',
|
|
]);
|
|
|
|
/** @type {import("eslint").Rule.RuleModule} */
|
|
module.exports = {
|
|
meta: {
|
|
type: 'problem',
|
|
hasSuggestions: false,
|
|
fixable: false,
|
|
schema: [],
|
|
},
|
|
create(context) {
|
|
const { filename, sourceCode } = context;
|
|
|
|
let fileSuffix;
|
|
|
|
const nodeUses = [];
|
|
const domUses = [];
|
|
const preloadUses = [];
|
|
const mainUses = [];
|
|
|
|
const invalidUsesBySuffix = {
|
|
std: [nodeUses, domUses, preloadUses, mainUses],
|
|
node: [domUses, preloadUses, mainUses],
|
|
dom: [nodeUses, preloadUses, mainUses],
|
|
preload: [mainUses],
|
|
main: [domUses, preloadUses],
|
|
};
|
|
|
|
function trackLocalDep(node, source) {
|
|
if (!source.endsWith('.js')) {
|
|
return;
|
|
}
|
|
|
|
const match = source.match(/\.([^.\/]+)(?:\.stories)?\.js$/);
|
|
if (match == null) {
|
|
context.report({
|
|
node,
|
|
message: `Missing file suffix in ${source} import`,
|
|
});
|
|
return;
|
|
}
|
|
|
|
const [, depSuffix] = match;
|
|
if (depSuffix === 'node') {
|
|
nodeUses.push(node);
|
|
} else if (depSuffix === 'dom') {
|
|
domUses.push(node);
|
|
} else if (depSuffix === 'preload') {
|
|
preloadUses.push(node);
|
|
} else if (depSuffix === 'main') {
|
|
mainUses.push(node);
|
|
} else if (depSuffix === 'std') {
|
|
// Ignore
|
|
} else {
|
|
context.report({
|
|
node,
|
|
message:
|
|
`Unrecognized file suffix in ${source}, ` +
|
|
`expected: node/preload/main/std, found: ${depSuffix}`,
|
|
});
|
|
}
|
|
}
|
|
|
|
function processUse(node, source, specifiers) {
|
|
if (source.startsWith('.')) {
|
|
trackLocalDep(node, source);
|
|
return;
|
|
}
|
|
|
|
// Node APIs
|
|
if (source.startsWith('node:')) {
|
|
nodeUses.push(node);
|
|
return;
|
|
}
|
|
|
|
// Electron
|
|
if (source === 'electron' && specifiers == null) {
|
|
context.report({
|
|
node,
|
|
message: 'CJS import of electron is not allowed',
|
|
});
|
|
return;
|
|
} else if (source === 'electron') {
|
|
for (const s of specifiers) {
|
|
if (s.importKind === 'type') {
|
|
continue;
|
|
}
|
|
// We implicitly skip:
|
|
// they are used in scripts
|
|
if (s.type === 'ImportSpecifier') {
|
|
if (ELECTRON_MAIN_MODULES.has(s.imported.name)) {
|
|
mainUses.push(s);
|
|
} else if (ELECTRON_RENDERER_MODULES.has(s.imported.name)) {
|
|
preloadUses.push(s);
|
|
} else if (ELECTRON_SHARED_MODULES.has(s.imported.name)) {
|
|
// no-op
|
|
} else {
|
|
context.report({
|
|
node: s,
|
|
message:
|
|
`Uncategorized electron API: "${s.imported.name}". ` +
|
|
'Please update .eslint/rules/file-suffix.js and add it to ' +
|
|
'ELECTRON_MAIN_MODULES/ELECTRON_RENDERER_MODULES/' +
|
|
'ELECTRON_SHARED_MODULES',
|
|
});
|
|
}
|
|
} else if (s.type === 'ImportNamespaceSpecifier') {
|
|
// import * as electron from 'electron';
|
|
context.report({
|
|
node: s,
|
|
message: 'Unsupported namespace import specifier for electron',
|
|
});
|
|
nodeUses.push(s);
|
|
} else if (s.type === 'ImportDefaultSpecifier') {
|
|
// import ELECTRON_CLI from 'electron';
|
|
nodeUses.push(s);
|
|
} else {
|
|
context.report({
|
|
node: s,
|
|
message: 'Unsupported import specifier for electron',
|
|
});
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
const [, moduleName] = source.match(/^([^@\/]+|@[^\/]+\/[^\/]+)/);
|
|
if (NODE_PACKAGES.has(moduleName)) {
|
|
nodeUses.push(node);
|
|
} else if (source === 'react-dom/server') {
|
|
// no-op
|
|
} else if (
|
|
DOM_PACKAGES.has(moduleName) ||
|
|
source === 'react-dom/client'
|
|
) {
|
|
domUses.push(node);
|
|
} else if (!STD_PACKAGES.has(moduleName)) {
|
|
context.report({
|
|
node,
|
|
message:
|
|
`Uncategorized dependency "${moduleName}". ` +
|
|
'Please update .eslint/rules/file-suffix.js and add it to either ' +
|
|
'of NODE_PACKAGES/DOM_PACKAGES/STD_PACKAGES',
|
|
});
|
|
}
|
|
}
|
|
|
|
function processESMReference(node) {
|
|
if (
|
|
node.importKind === 'type' ||
|
|
(node.specifiers?.length &&
|
|
node.specifiers.every(x => x.importKind === 'type'))
|
|
) {
|
|
return;
|
|
}
|
|
if (!node.source) {
|
|
return;
|
|
}
|
|
if (node.source.type !== 'Literal') {
|
|
return;
|
|
}
|
|
const {
|
|
specifiers,
|
|
source: { value: source },
|
|
} = node;
|
|
|
|
processUse(node, source, specifiers);
|
|
}
|
|
|
|
return {
|
|
Program: node => {
|
|
if (filename.endsWith('.d.ts')) {
|
|
// Skip types
|
|
return;
|
|
}
|
|
|
|
const match = filename.match(/\.([^.\/]+)(?:\.stories)?\.(?:ts|tsx)$/);
|
|
if (match == null) {
|
|
context.report({
|
|
node: node,
|
|
message:
|
|
'Missing file suffix. Has to be one of: node/preload/main/std',
|
|
});
|
|
return;
|
|
}
|
|
|
|
fileSuffix = match[1];
|
|
},
|
|
'Program:exit': node => {
|
|
if (fileSuffix == null) {
|
|
return;
|
|
}
|
|
|
|
let expectedSuffix;
|
|
if (mainUses.length > 0) {
|
|
expectedSuffix = 'main';
|
|
} else if (preloadUses.length > 0) {
|
|
expectedSuffix = 'preload';
|
|
} else if (nodeUses.length > 0) {
|
|
if (domUses.length > 0) {
|
|
expectedSuffix = 'preload';
|
|
} else {
|
|
expectedSuffix = 'node';
|
|
}
|
|
} else if (domUses.length > 0) {
|
|
expectedSuffix = 'dom';
|
|
} else {
|
|
expectedSuffix = 'std';
|
|
}
|
|
|
|
// All .tsx files should normally be .dom.tsx, but could also be
|
|
// .std.tsx.
|
|
if (
|
|
expectedSuffix === 'std' &&
|
|
filename.endsWith('.tsx') &&
|
|
fileSuffix !== 'std'
|
|
) {
|
|
expectedSuffix = 'dom';
|
|
}
|
|
|
|
if (fileSuffix !== expectedSuffix) {
|
|
context.report({
|
|
node,
|
|
message: `Invalid suffix ${fileSuffix}, expected: ${expectedSuffix}`,
|
|
});
|
|
}
|
|
|
|
const invalid = invalidUsesBySuffix[expectedSuffix].flat();
|
|
for (const use of invalid) {
|
|
context.report({
|
|
node: use,
|
|
message: `Invalid import/reference for suffix: ${expectedSuffix}`,
|
|
});
|
|
}
|
|
},
|
|
ImportDeclaration(node) {
|
|
processESMReference(node);
|
|
},
|
|
ExportAllDeclaration(node) {
|
|
processESMReference(node);
|
|
},
|
|
ExportNamedDeclaration(node) {
|
|
processESMReference(node);
|
|
},
|
|
CallExpression(node) {
|
|
if (
|
|
node.callee.type !== 'Identifier' ||
|
|
node.callee.name !== 'require'
|
|
) {
|
|
return;
|
|
}
|
|
|
|
const scope = sourceCode.getScope(node);
|
|
const ref = scope.references.find(r => r.identifier === node.callee);
|
|
if (ref.resolved.scope.type !== 'global') {
|
|
return;
|
|
}
|
|
const { arguments: args } = node;
|
|
if (args.length !== 1) {
|
|
context.report({
|
|
node,
|
|
message: 'Invalid require() argument count',
|
|
});
|
|
return;
|
|
}
|
|
const [arg] = args;
|
|
|
|
let source;
|
|
if (arg.type === 'Literal') {
|
|
source = arg.value;
|
|
} else if (
|
|
arg.type === 'TSAsExpression' &&
|
|
arg.expression.type === 'Literal'
|
|
) {
|
|
source = arg.expression.value;
|
|
} else {
|
|
// Ignore other expressions
|
|
return;
|
|
}
|
|
|
|
processUse(node, source, undefined);
|
|
},
|
|
Identifier(node) {
|
|
if (node.name !== 'window' && node.name !== 'document') {
|
|
return;
|
|
}
|
|
const scope = sourceCode.getScope(node);
|
|
const ref = scope.references.find(r => r.identifier === node);
|
|
if (ref == null) {
|
|
// Not part of expression
|
|
return;
|
|
}
|
|
if (ref.resolved.scope.type !== 'global') {
|
|
return;
|
|
}
|
|
domUses.push(node);
|
|
},
|
|
};
|
|
},
|
|
};
|