70 lines
2.8 KiB
TypeScript
70 lines
2.8 KiB
TypeScript
// .wundergraph/operations/getPaperless.ts
|
|
import { createOperation, z } from '../generated/wundergraph.factory';
|
|
import axios from 'axios';
|
|
|
|
export default createOperation.query({
|
|
input: z.object({}),
|
|
handler: async () => {
|
|
console.log('Making request to Paperless API');
|
|
const { data } = await axios.get('https://paperless.andert.me/api/documents/', {
|
|
headers: {
|
|
Authorization: process.env.PAPERLESS_TOKEN,
|
|
},
|
|
});
|
|
|
|
// Add download link, thumbnail link, preview link, PDF data, and metadata to each document
|
|
const documentsWithLinksDataAndMetadata = await Promise.all(data.results.map(async doc => {
|
|
const response = await axios.get(`https://paperless.andert.me/api/documents/${doc.id}/preview/`, {
|
|
responseType: 'arraybuffer',
|
|
headers: {
|
|
Authorization: process.env.PAPERLESS_TOKEN,
|
|
},
|
|
});
|
|
|
|
const pdfData = Buffer.from(response.data, 'binary').toString('base64');
|
|
|
|
let correspondent = null;
|
|
if (doc.correspondent) {
|
|
const correspondentResponse = await axios.get(`https://paperless.andert.me/api/correspondents/${doc.correspondent}/`, {
|
|
headers: {
|
|
Authorization: process.env.PAPERLESS_TOKEN,
|
|
},
|
|
});
|
|
correspondent = correspondentResponse.data;
|
|
}
|
|
|
|
let tags = [];
|
|
if (doc.tags) {
|
|
const tagsResponse = await Promise.all(doc.tags.map(tag => axios.get(`https://paperless.andert.me/api/tags/${tag}/`, {
|
|
headers: {
|
|
Authorization: process.env.PAPERLESS_TOKEN,
|
|
},
|
|
})));
|
|
tags = tagsResponse.map(response => response.data);
|
|
}
|
|
|
|
let documentType = null;
|
|
if (doc.document_type) {
|
|
const documentTypeResponse = await axios.get(`https://paperless.andert.me/api/document_types/${doc.document_type}/`, {
|
|
headers: {
|
|
Authorization: process.env.PAPERLESS_TOKEN,
|
|
},
|
|
});
|
|
documentType = documentTypeResponse.data;
|
|
}
|
|
|
|
return {
|
|
...doc,
|
|
downloadLink: `https://paperless.andert.me/api/documents/${doc.id}/download/`,
|
|
thumbnailLink: `https://paperless.andert.me/api/documents/${doc.id}/thumb/`,
|
|
previewLink: `https://paperless.andert.me/api/documents/${doc.id}/preview/`,
|
|
pdfData,
|
|
correspondent,
|
|
tags,
|
|
documentType,
|
|
};
|
|
}));
|
|
|
|
return documentsWithLinksDataAndMetadata;
|
|
},
|
|
}); |