-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from Giveth/feat/handle-rf-projects-rounds
Feat/handle rf projects rounds
- Loading branch information
Showing
16 changed files
with
146 additions
and
98 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,13 @@ | ||
module.exports = class Data1724279465327 { | ||
name = "Data1724279465327"; | ||
|
||
async up(db) { | ||
await db.query(`ALTER TABLE "project" DROP COLUMN "source_status"`); | ||
await db.query(`ALTER TABLE "project" ADD "rf_rounds" integer array`); | ||
} | ||
|
||
async down(db) { | ||
await db.query(`ALTER TABLE "project" DROP COLUMN "rf_rounds"`); | ||
await db.query(`ALTER TABLE "project" ADD "source_status" text`); | ||
} | ||
}; |
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
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
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 @@ | ||
import { SourceConfig } from "../types"; | ||
|
||
export const RF_API_URL = | ||
process.env.RF4_API_URL || "https://vote.optimism.io/api/v1"; | ||
|
||
export const rfSourceConfig: SourceConfig = { | ||
source: "rf", | ||
idField: "id", | ||
titleField: "name", | ||
descriptionField: "description", | ||
imageField: "projectCoverImageUrl", | ||
urlField: "url", | ||
rfRoundField: "rfRound", | ||
}; |
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,26 @@ | ||
import { updateOrCreateProject } from "../helpers"; | ||
import { rfSourceConfig } from "./constants"; | ||
import { RfProjectInfo } from "./type"; | ||
|
||
export const generateRfUrl = (project: RfProjectInfo) => { | ||
return `/project/${project.id}`; | ||
}; | ||
|
||
const processProject = (project: RfProjectInfo, round: number) => { | ||
const projectData = { | ||
...project, | ||
url: generateRfUrl(project), | ||
rfRound: round, | ||
}; | ||
return projectData; | ||
}; | ||
|
||
export const saveBatchProjects = async ( | ||
projects: RfProjectInfo[], | ||
round: number | ||
) => { | ||
for (const _project of projects) { | ||
const project = processProject(_project, round); | ||
await updateOrCreateProject(project, rfSourceConfig); | ||
} | ||
}; |
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,42 @@ | ||
import { RF_API_URL } from "./constants"; | ||
import { saveBatchProjects } from "./helpers"; | ||
import { RfApiResponse, RfProjectInfo } from "./type"; | ||
|
||
export const fetchRFProjectsByRound = async (round: number) => { | ||
let offset = 0; | ||
const limit = 10; | ||
let hasNext = true; | ||
|
||
try { | ||
while (hasNext) { | ||
const response = await fetch( | ||
`${RF_API_URL}/retrofunding/rounds/${round}/projects?limit=${limit}&offset=${offset}`, | ||
{ | ||
method: "GET", | ||
headers: { | ||
"Content-Type": "application/json", | ||
Authorization: `Bearer ${process.env.AGORA_API_KEY}`, | ||
}, | ||
} | ||
); | ||
|
||
if (!response.ok) { | ||
throw new Error( | ||
`HTTP error! status: ${response.status} for round: ${round} at offset: ${offset}` | ||
); | ||
} | ||
|
||
const res: RfApiResponse = await response.json(); | ||
|
||
await saveBatchProjects(res.data, round); | ||
|
||
hasNext = res.meta.has_next; | ||
offset = res.meta.next_offset; | ||
} | ||
} catch (error) { | ||
console.error( | ||
`Error fetching projects for round: ${round} at offset: ${offset}`, | ||
error | ||
); | ||
} | ||
}; |
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,22 @@ | ||
export interface RfProjectInfo { | ||
id: string; | ||
category: string; | ||
organization: string | null; | ||
name: string; | ||
description: string; | ||
profileAvatarUrl: string; | ||
projectCoverImageUrl: string; | ||
team: string[]; | ||
github: string[]; | ||
packages: string[]; | ||
links: string[]; | ||
} | ||
|
||
export interface RfApiResponse { | ||
meta: { | ||
has_next: boolean; | ||
total_returned: number; | ||
next_offset: number; | ||
}; | ||
data: RfProjectInfo[]; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
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