* 2.24.1 - Updated dependencies - MCP Server: better compatibility with Windows - MCP Server: allow using a custom root for better flexibility - Version Check: use package.json version instead of number of commits - Prettier: reformatted some files - Add SSH_AUTH_SOCK to dev passThroughEnv to solve SSH issues; handle execSync errors - Use GIT_SSH to fix SSH issues on Windows - Updated Stripe version - Updated application version from 2.24.0 to 2.24.1 in package.json. - Enhanced error handling in billing services to include error causes for better debugging.
164 lines
3.8 KiB
JavaScript
164 lines
3.8 KiB
JavaScript
import { execFileSync } from 'node:child_process';
|
|
import { readFileSync } from 'node:fs';
|
|
import path from 'node:path';
|
|
|
|
const endpoint = 'https://makerkit.dev/api/license/check';
|
|
|
|
function runGitCommand(...args) {
|
|
try {
|
|
return execFileSync('git', args, {
|
|
encoding: 'utf8',
|
|
stdio: 'pipe',
|
|
}).trim();
|
|
} catch {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
async function checkLicense() {
|
|
let gitUser, gitEmail;
|
|
|
|
gitUser = runGitCommand('config', 'user.username');
|
|
|
|
if (!gitUser) {
|
|
gitUser = runGitCommand('config', 'user.name');
|
|
}
|
|
|
|
gitEmail = runGitCommand('config', 'user.email');
|
|
|
|
if (!gitUser || !gitEmail) {
|
|
throw new Error(
|
|
"Please set the git user name with the command 'git config user.username <username>'. The username needs to match the GitHub username in your Makerkit organization.",
|
|
);
|
|
}
|
|
|
|
const searchParams = new URLSearchParams();
|
|
|
|
searchParams.append('username', gitUser);
|
|
|
|
if (gitEmail) {
|
|
searchParams.append('email', gitEmail);
|
|
}
|
|
|
|
try {
|
|
const makerkitConfig =
|
|
JSON.parse(
|
|
readFileSync(path.resolve(process.cwd(), '../../.makerkitrc'), 'utf8'),
|
|
) || {};
|
|
|
|
if (makerkitConfig.projectName) {
|
|
searchParams.append('projectName', makerkitConfig.projectName);
|
|
}
|
|
|
|
if (makerkitConfig.username) {
|
|
searchParams.append('projectUsername', makerkitConfig.username);
|
|
}
|
|
} catch {}
|
|
|
|
const res = await fetch(`${endpoint}?${searchParams.toString()}`);
|
|
|
|
if (res.status === 200) {
|
|
return Promise.resolve();
|
|
} else {
|
|
return Promise.reject(
|
|
new Error(
|
|
`License check failed. Please set the git user name with the command 'git config user.username <username>'. The username needs to match the GitHub username in your Makerkit organization.`,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
function checkVisibility() {
|
|
let remoteUrl;
|
|
|
|
try {
|
|
remoteUrl = runGitCommand('config', '--get', 'remote.origin.url');
|
|
} catch (error) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
if (!remoteUrl.includes('github.com')) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
let ownerRepo;
|
|
|
|
if (remoteUrl.startsWith('https://github.com/')) {
|
|
ownerRepo = remoteUrl.slice('https://github.com/'.length);
|
|
} else if (remoteUrl.startsWith('git@github.com:')) {
|
|
ownerRepo = remoteUrl.slice('git@github.com:'.length);
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
ownerRepo = ownerRepo.replace(/\.git$/, '');
|
|
|
|
return fetch(`https://api.github.com/repos/${ownerRepo}`)
|
|
.then((res) => {
|
|
if (res.status === 200) {
|
|
return res.json();
|
|
} else if (res.status === 404) {
|
|
return Promise.resolve();
|
|
} else {
|
|
return Promise.reject(
|
|
new Error(
|
|
`GitHub API request failed with status code: ${res.status}`,
|
|
),
|
|
);
|
|
}
|
|
})
|
|
.then((data) => {
|
|
if (data && !data.private) {
|
|
console.error(
|
|
'The repository has been LEAKED on GitHub. Please delete the repository. A DMCA Takedown Request will automatically be requested in the coming hours.',
|
|
);
|
|
|
|
process.exit(1);
|
|
}
|
|
});
|
|
}
|
|
|
|
async function isOnline() {
|
|
const { lookup } = await import('dns');
|
|
|
|
try {
|
|
return await new Promise((resolve, reject) => {
|
|
lookup('google.com', (err) => {
|
|
if (err && err.code === 'ENOTFOUND') {
|
|
reject(false);
|
|
} else {
|
|
resolve(true);
|
|
}
|
|
});
|
|
}).catch(() => false);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
async function main() {
|
|
try {
|
|
const isUserOnline = await isOnline();
|
|
|
|
// disable the check if the user is offline
|
|
if (!isUserOnline) {
|
|
return process.exit(0);
|
|
}
|
|
|
|
await checkVisibility();
|
|
|
|
await checkLicense().catch((error) => {
|
|
console.error(`Check failed with error: ${error.message}`);
|
|
process.exit(1);
|
|
});
|
|
|
|
process.exit(0);
|
|
} catch (error) {
|
|
console.error(`Check failed with error: ${error.message}`);
|
|
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
void main();
|