fetchers-v3 WIP
This commit is contained in:
parent
571d968aab
commit
1ec6f34908
|
@ -68,6 +68,29 @@ export const getRobot = <Context>(
|
||||||
|
|
||||||
async schedule({ url, context = {} }) {
|
async schedule({ url, context = {} }) {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
|
|
||||||
|
const oldJob = await prisma.robot.findFirst({
|
||||||
|
where: {
|
||||||
|
platform: platform.name,
|
||||||
|
url,
|
||||||
|
completed: {
|
||||||
|
equals: null,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (oldJob) {
|
||||||
|
await prisma.robot.update({
|
||||||
|
where: {
|
||||||
|
id: oldJob.id,
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
created: now,
|
||||||
|
scheduled: now,
|
||||||
|
context,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} else {
|
||||||
await prisma.robot.create({
|
await prisma.robot.create({
|
||||||
data: {
|
data: {
|
||||||
url,
|
url,
|
||||||
|
@ -77,6 +100,7 @@ export const getRobot = <Context>(
|
||||||
context,
|
context,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user