generated from proofoftom/buidler-waffle-typechain-quasar
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add task to export project logo images
- Loading branch information
Showing
2 changed files
with
75 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
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,74 @@ | ||
/** | ||
* Export the project logo images in a ClrFund round. | ||
* | ||
* Sample usage: | ||
* yarn hardhat export-images \ | ||
* --output-dir ../vue-apps/public/ipfs | ||
* --gateway https://ipfs.io | ||
* --round-file ../vue-app/src/rounds/arbitrum/0x4A2d90844EB9C815eF10dB0371726F0ceb2848B0.json | ||
* | ||
* Notes: | ||
* 1) This script assumes the round has been exported using the `export-round` hardhat task | ||
*/ | ||
|
||
import { task } from 'hardhat/config' | ||
import { FetchRequest } from 'ethers' | ||
import { isPathExist, makeDirectory } from '../../utils/misc' | ||
import fs from 'fs' | ||
|
||
/** | ||
* Download the IPFS file with the ipfsHash to the output directory | ||
* @param baseUrl IPFS gateway base url | ||
* @param ipfsHash IPFS hash of the file to download | ||
* @param outputDir The directory to store the downloaded file | ||
*/ | ||
async function download({ | ||
baseUrl, | ||
ipfsHash, | ||
outputDir, | ||
}: { | ||
baseUrl: string | ||
ipfsHash: string | ||
outputDir: string | ||
}) { | ||
const url = new URL(ipfsHash, baseUrl) | ||
const req = new FetchRequest(url.href) | ||
const res = await req.send() | ||
if (res.hasBody()) { | ||
console.log('Downloading', ipfsHash) | ||
fs.writeFileSync(`${outputDir}/${ipfsHash}`, res.body) | ||
} | ||
} | ||
|
||
task('export-images', 'Export project logo images') | ||
.addParam('outputDir', 'The output directory') | ||
.addParam('roundFile', 'The exported funding round file path') | ||
.addParam('gateway', 'The IPFS gateway url') | ||
.setAction(async ({ outputDir, roundFile, gateway }) => { | ||
console.log('Starting to download from ipfs') | ||
|
||
if (!isPathExist(outputDir)) { | ||
makeDirectory(outputDir) | ||
} | ||
|
||
const data = fs.readFileSync(roundFile, { encoding: 'utf-8' }) | ||
const round = JSON.parse(data) | ||
const projects = round.projects | ||
const images = projects.map((project: any) => { | ||
const { bannerImageHash, thumbnailImageHash } = project.metadata | ||
return { bannerImageHash, thumbnailImageHash } | ||
}) | ||
|
||
for (let i = 0; i < images.length; i++) { | ||
await download({ | ||
baseUrl: gateway, | ||
ipfsHash: images[i].bannerImageHash, | ||
outputDir, | ||
}) | ||
await download({ | ||
baseUrl: gateway, | ||
ipfsHash: images[i].thumbnailImageHash, | ||
outputDir, | ||
}) | ||
} | ||
}) |