-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
147 lines (133 loc) · 4.26 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
var axios = require("axios");
const env = require("./config.env");
const express = require("express");
var cors = require("cors");
const app = express();
const PORT = process.env.PORT || 5000;
const bodyParser = require("body-parser");
app.use(bodyParser.json());
app.use(cors());
app.listen(PORT, () => console.log(`Example app listening on port ${PORT}!`));
app.get("/", (req, res) => {
res.send("/");
});
app.get("/checkValidity/:pageName", async (req, res) => {
const missingFields = [];
const { data: approData } = await axios.get(
`https://www.appropedia.org/w/rest.php/semantic/v0/${encodeURIComponent(
req.params.pageName
)}`
);
if (approData) {
const affliations = approData["Affiliations"];
const pageAuthors = approData["Page authors"];
const mapResult = approData["Map result"];
const title = approData["Title"];
const url = approData["URL"];
const uses = approData["Uses"]?.split(", ");
var primaryType, country;
const keywords = approData["Keywords"]?.split(", "); // not required
if (!affliations) missingFields.push("Affiliations");
if (!pageAuthors) missingFields.push("Page author");
if (!title) missingFields.push("Title");
if (!url) missingFields.push("URL");
var optionsConfig = {
method: "get",
url: "https://certificationapi.oshwa.org/api/options",
headers: {
Authorization: `Bearer ${process.env.OSHWA || env.OSHWA}`,
},
};
const {
data: { countryOptions, primaryTypeOptions },
} = await axios(optionsConfig);
const {
data: {
expandtemplates: { wikitext },
},
} = await axios.get(
`https://www.appropedia.org/w/api.php?action=query&action=expandtemplates&text=%7B%7BDatabox/name%7C${encodeURIComponent(
pageAuthors
)}%7D%7D&prop=wikitext&format=json`
);
const bindingParty = wikitext.substring(
wikitext.indexOf("|") + 1,
wikitext.length - 2
);
if (!mapResult) {
missingFields.push("Country");
} else {
const mapResults = mapResult
?.substr(0, mapResult.indexOf("~"))
?.split(", ");
for (const result of mapResults) {
// @todo get appro to have same locations or add more here
if ("United States") {
country = "United States of America";
} else {
for (const countryOption of countryOptions) {
if (result.toLowerCase() == countryOption.toLowerCase()) {
country = result;
}
}
}
}
if (!country) {
missingFields.push("Country");
}
}
if (!uses) {
missingFields.push("Uses");
} else {
for (const use of uses) {
for (const primaryTypeOption of primaryTypeOptions) {
if (use.toLowerCase() == primaryTypeOption.toLowerCase()) {
primaryType = primaryTypeOption;
}
}
}
if (!primaryType) {
missingFields.push("Uses");
}
}
if (missingFields.length > 0) {
return res.send(missingFields);
} else {
const parsedApproData = {
responsiblePartyType: "Organization", //r "Organization"
responsibleParty: affliations, //r [Affliations]
bindingParty: bindingParty, //r [Page authors]
country: country, //r [Map result]
projectName: title, //r [Title]
projectWebsite: url, // [URL]
primaryType: primaryType, //r [Uses]
hardwareLicense: "Other", //r "Other"
softwareLicense: "Other", //r "Other"
documentationLicense: "Other", //r "Other"
};
res.setHeader("Content-Type", "text/html");
res.setHeader("Cache-Control", "s-max-age=1, stale-while-revalidate");
return res.send(parsedApproData);
}
} else {
return res.send("No response from Appropedia.");
}
});
app.post("/submitCertification", async (req, res) => {
var config = {
method: "post",
url: "https://certificationapi.oshwa.org/api/projects/",
headers: {
Authorization: `Bearer ${process.env.OSHWA || env.OSHWA}`,
"Content-Type": "application/json",
},
data: JSON.stringify(req.body),
};
axios(config)
.then(function (response) {
res.send(JSON.stringify(response.data));
})
.catch(function (error) {
res.send(error);
});
});