Apologize for the lack of information in the title, I couldn't come up a better one to describe my problem.
I'm currently building a simple script that scrapes data from another website and eventually, after customizing the fetched data,
output the results as JSON
.
There's nothing "wrong" or "broken" with the code nor do I get any errors, just need to improve my script a bit.
Underneath is the script I wrote with Express to fetch the players for other website:
router.get('/teams/:id/roster', function(req, res) {
var id = req.params.id;
var url = 'http://www.testdata.dev/api/teams/' + id;
request(url, function (error, response, html) {
if (!error && response.statusCode == 200) {
var $ = cheerio.load(html); // load the DOM with Cheerio
$('#roster').filter(function () {
var player, line, lines = [], forward = {}, defense = {};
line = {
"forwards": forward
};
// Iterate over all the forwards
$("#forwards > tbody > tr > td").each(function(index) {
var that = $(this);
player = that.text().trim(); // F.e "Lebron James", "Michael Jordan"
// Create a new line after every three players (in total of 12 forwards, in total of 4 lines)
if(index % 3 == 0) {
lines.push({
"line": {
"forwards": [player]
}
});
} else {
lines[lines.length - 1]["line"]["forwards"].push(player);
}
});
// Output results as JSON
res.contentType('application/json');
res.json(lines);
});
} else {
console.log("Request was not made");
}
});
});
Current JSON output:
[
{
"line": {
"forwards": [
"Player 1",
"Player 2",
"Player 3"
]
}
},
{
"line": {
"forwards": [
"Player 4",
"Player 5",
"Player 6"
]
}
},
// ...
// In total of 4 lines
]
So the code does it's job and I'm able to output the JSON
as described above. However, I'd like to give each player a property based on the following rule set: The first player outputted in each "line" object will always be a LW (Left Winger), second player will always be a C (Centerman) and third RW (Right Winger).
Unfortunately, I was unable to implement this by myself and that's where I need your help. Thanks in advance!
Expected JSON output:
{
"lines": [{
"line": {
"forwards": {
"LW": "Player 1",
"C": "Player 2",
"RW": "Player 3"
}
}
}, {
"line": {
"forwards": {
"LW": "Player 1",
"C": "Player 2",
"RW": "Player 3"
}
}
}]
}
This proposal assumes, that
forwards
is an object, not an array, because of the properties.You could introduce an array with the sides
and change the code a bit to