You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

112 lines
3.0 KiB

import moment from "moment";
import sendFormAnswer from "../../api/Ingestion/sendFormAnswer";
async function AssembleIngestionObject(
{ images, description },
user,
situation,
code,
location,
date,
time,
address
) {
const ingestionObject = {
responseData: {
array_to_json: [
{
formcode: code,
formsanswersuserinformer: user.username,
fieldsanswerslongitude: location["longitude"],
fieldsanswerslatitude: location["latitude"],
fields: [
{
fieldsanswerssituation: situation ? situation : "CHUVA FRACA",
fieldsanswerseventaddress: address,
fieldsanswerseventdate: moment(date).format("DD-MM-YYYY"),
fieldsanswerseventtime: moment(time).format("HH:mm"),
fieldsanswerscomments: description,
},
],
},
],
},
};
return sendFormAnswer(ingestionObject);
}
const AssembleIngestionPluviometer = async ({
pluviometer,
description,
images,
user,
date,
time,
}) => {
const pluviometerObject = {
responseData: {
array_to_json: [
{
formcode: "PLUVIOMETER_FORM",
formsanswersuserinformer: user.username,
fieldsanswerslongitude: user.pluviometer.coordinates["long"],
fieldsanswerslatitude: user.pluviometer.coordinates["lat"],
fields: [
{
fieldsanswerssituation: null,
fieldsanswerseventaddress: user.pluviometer.address,
fieldsanswerseventdate: moment(date).format("DD-MM-YYYY"),
fieldsanswerseventtime: moment(time).format("HH:mm"),
fieldsanswersrainamount: pluviometer,
fieldsanswerscomments: description,
},
],
},
],
},
};
const a = await sendFormAnswer(pluviometerObject);
return a;
};
async function AssembleIngestionPluvRegistration(
date,
time,
user,
address,
coordinates
) {
const pluvResgistrationObject = {
responseData: {
array_to_json: [
{
formcode: "PLUVIOMETER_REGISTRATION",
formsanswersuserinformer: user.username,
fieldsanswerslongitude: coordinates["longitude"],
fieldsanswerslatitude: coordinates["latitude"],
fields: [
{
fieldsanswerseventaddress: address,
fieldsanswerseventdate: moment(date).format("DD-MM-YYYY"),
fieldsanswerseventtime: moment(time).format("HH:mm"),
fieldsanswersinstitutename: user.institutionName
? user.institutionName
: null,
fieldsanswerrinstitutetype: user.institutionType
? user.institutionType
: null,
},
],
},
],
},
};
const a = await sendFormAnswer(pluvResgistrationObject);
return a;
}
export {
AssembleIngestionObject,
AssembleIngestionPluviometer,
AssembleIngestionPluvRegistration,
};