-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
221 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
import fs from 'fs'; | ||
import path from 'path'; | ||
import { execSync } from 'child_process'; | ||
import yaml from 'js-yaml'; | ||
|
||
const getGitHubUrl = (rootPath) => { | ||
try { | ||
// Get the GitHub repository URL | ||
const remoteUrl = execSync('git config --get remote.origin.url', { cwd: rootPath, encoding: 'utf-8' }).trim(); | ||
|
||
// Convert SSH format to HTTPS format | ||
const httpsUrl = remoteUrl.replace(/^git@github\.com:/, 'https://github.com/').replace(/\.git$/, ''); | ||
|
||
return httpsUrl; | ||
} catch (error) { | ||
console.error(`Error getting GitHub repository URL: ${error.message}`); | ||
return null; | ||
} | ||
}; | ||
|
||
const getCurrentBranch = (rootPath) => { | ||
try { | ||
// Get the current branch name | ||
const branchName = execSync('git branch --show-current', { cwd: rootPath, encoding: 'utf-8' }).trim(); | ||
return branchName; | ||
} catch (error) { | ||
console.error(`Error getting current branch: ${error.message}`); | ||
return null; | ||
} | ||
}; | ||
|
||
const getRepositoryRoot = (rootPath) => { | ||
try { | ||
// Get the root folder of the repository | ||
const repositoryRoot = execSync('git rev-parse --show-toplevel', { cwd: rootPath, encoding: 'utf-8' }).trim(); | ||
return repositoryRoot; | ||
} catch (error) { | ||
console.error(`Error getting repository root: ${error.message}`); | ||
return null; | ||
} | ||
}; | ||
|
||
const searchPackages = (directory, outputFilename, indexUrl) => { | ||
const result = { packages: [] }; | ||
|
||
const repositoryRoot = getRepositoryRoot(directory); | ||
const gitHubUrl = getGitHubUrl(repositoryRoot); | ||
const currentBranch = getCurrentBranch(repositoryRoot); | ||
|
||
if (!repositoryRoot || !gitHubUrl || !currentBranch) { | ||
return; | ||
} | ||
|
||
const search = (dir, rootPath) => { | ||
const files = fs.readdirSync(dir); | ||
|
||
for (const file of files) { | ||
const filePath = path.join(dir, file); | ||
const isDirectory = fs.statSync(filePath).isDirectory(); | ||
|
||
if (isDirectory) { | ||
search(filePath, rootPath); | ||
} else { | ||
const isPackageJson = file === 'package.json'; | ||
const isManifestPy = file === 'manifest.py'; | ||
|
||
if (isPackageJson || isManifestPy) { | ||
const packageInfo = { | ||
name: path.basename(dir), | ||
docs: constructGitHubUrl(gitHubUrl, currentBranch, repositoryRoot, dir), | ||
index: indexUrl, | ||
}; | ||
|
||
if (isManifestPy) { | ||
try { | ||
const content = fs.readFileSync(filePath, 'utf8'); | ||
const descriptionMatch = /description="(.*?)"/.exec(content); | ||
|
||
if (descriptionMatch && descriptionMatch[1]) { | ||
packageInfo.description = descriptionMatch[1]; | ||
} | ||
} catch (error) { | ||
console.error(`Error reading ${file}: ${error.message}`); | ||
} | ||
} | ||
|
||
result.packages.push(packageInfo); | ||
} | ||
} | ||
} | ||
}; | ||
|
||
const constructGitHubUrl = (baseUrl, branch, repositoryRoot, dirPath) => { | ||
const relativePath = path.relative(repositoryRoot, dirPath); | ||
const normalizedPath = relativePath.replace(/\\/g, '/'); // Normalize path separators for Windows | ||
|
||
return `${baseUrl}/tree/${branch}/${normalizedPath}`; | ||
}; | ||
|
||
search(directory, repositoryRoot); | ||
|
||
try { | ||
const yamlData = yaml.dump(result); | ||
fs.writeFileSync(outputFilename, `---\n${yamlData}`); | ||
console.log(`YAML file saved to ${outputFilename}`); | ||
} catch (error) { | ||
console.error(`Error writing YAML file: ${error.message}`); | ||
} | ||
}; | ||
|
||
// Check if command line arguments are provided | ||
if (process.argv.length < 5) { | ||
// Note: Official MicroPython lib index is: https://micropython.org/pi/v2 | ||
// Example usage: node create-index.mjs ../micropython-lib/micropython micropython-lib.yml https://micropython.org/pi/v2 | ||
console.error('Usage: node create-index.mjs <directory> <outputFilename.yml> <indexUrl>'); | ||
} else { | ||
const directory = process.argv[2]; | ||
const outputFilename = process.argv[3]; | ||
const indexUrl = process.argv[4]; | ||
|
||
searchPackages(directory, outputFilename, indexUrl); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// This script helps to find packages in the Arduino package index that are missing the package.json file. | ||
// Without the package.json file, the package cannot be installed using mpremote or the Arduino Package Installer. | ||
|
||
import yaml from 'js-yaml'; | ||
|
||
function convertToRawURL(url, suffix = null) { | ||
url = url.replace('https://github.com/', ''); | ||
const parts = url.split('/'); | ||
const owner = parts[0]; | ||
const repoName = parts[1]; | ||
const branch = 'HEAD'; | ||
let path = parts[2] ? "/" + parts[2] : ''; | ||
if (suffix) { | ||
path += "/" + suffix; | ||
} | ||
return `https://raw.githubusercontent.com/${owner}/${repoName}/${branch}${path}`; | ||
} | ||
|
||
const indexURL = "https://raw.githubusercontent.com/arduino/package-index-py/refs/heads/main/package-list.yaml"; | ||
const data = await fetch(indexURL); | ||
const doc = yaml.load(await data.text()); | ||
|
||
// Filter packages that have the package_descriptor field | ||
// which overrides the package.json file | ||
doc.packages = doc.packages.filter(pkg => pkg.package_descriptor == undefined); | ||
doc.packages.map(pkg => { | ||
// Convert the URLs to https://raw.githubusercontent.com/... format | ||
pkg.rawURL = convertToRawURL(pkg.url, 'package.json'); | ||
return pkg; | ||
}); | ||
|
||
let incompletePackages = []; | ||
|
||
// Check the existence of the package.json file for each package | ||
for (const aPackage of doc.packages) { | ||
const response = await fetch(aPackage.rawURL); | ||
if (!response.ok) { | ||
incompletePackages.push(aPackage.url); | ||
console.log(`❌ Package file ${aPackage.rawURL} not found.`); | ||
} else { | ||
console.log(`✅ Package file ${aPackage.rawURL} found.`); | ||
} | ||
} | ||
|
||
console.log("\n👀 Packages with missing package.json:"); | ||
console.log(incompletePackages); | ||
const message = ` | ||
Consider making pull requests to add a package.json file to these repositories | ||
or add the package_descriptor field to the package in the package-list.yaml file | ||
`; | ||
console.log(message); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "tools", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"description": "", | ||
"dependencies": { | ||
"js-yaml": "^4.1.0" | ||
} | ||
} |