V = {
const vote = (body, year, number) =>
new AFile(
`roll_${body}_${year}_${number}`,
() => F.readVotes(body, year, number),
'application/json'
);
F.readVotes = async (body, year, roll) => {
const votes = await rollCall(body, year, roll);
return parse_votes(body, year, roll, votes);
};
const votes = body => attached => {
const getYearVotes = year => (fs, path, name, version, rest, tree) => [
vote(body, year, name)
];
const getVotes = (fs, path, year, version, rest, tree) => ({
[FILE]: getYearVotes(year)
});
return {
[DIRECTORY]: getVotes,
...Object.entries(attached).reduce((acc, [year, value]) => {
acc[year] = {
[FILE]: getYearVotes(year),
...Object.entries(value).reduce((yacc, [number, versions]) => {
yacc[number] = [vote(body, year, number), ...versions];
return yacc;
}, {})
};
return acc;
}, {})
};
};
const tree = {
congress: {
house: {
votes: votes('house')({
2021: {
10: [FileAttachment("ROLL_HOUSE_2021_10@2.json")],
11: [FileAttachment("ROLL_HOUSE_2021_11.json")],
14: [FileAttachment("ROLL_HOUSE_2021_14.json")],
16: [FileAttachment("ROLL_HOUSE_2021_16.json")],
17: [FileAttachment("ROLL_HOUSE_2021_17.json")]
},
2020: {
253: [FileAttachment("ROLL_HOUSE_2020_253.json")]
},
2019: {
1: [FileAttachment("ROLL_HOUSE_2019_1.json")]
},
2018: {
500: [FileAttachment("ROLL_HOUSE_2018_500.json")]
},
2017: {
1: [FileAttachment("ROLL_HOUSE_2017_1.json")]
}
})
},
senate: {
votes: votes('senate')({
2021: {
1: [
FileAttachment("ROLL_SENATE_2021_1.json"),
FileAttachment("ROLL_SENATE_2021_1@1.json")
],
2: [FileAttachment("ROLL_SENATE_2021_2@1.json")]
},
2020: {
292: [
FileAttachment("ROLL_SENATE_2020_292.json"),
FileAttachment("ROLL_SENATE_2020_292@1.json")
]
},
2019: {
1: [
FileAttachment("ROLL_SENATE_2019_1.json"),
FileAttachment("ROLL_SENATE_2019_1@1.json")
]
},
2018: {
274: [
FileAttachment("ROLL_SENATE_2018_274.json"),
FileAttachment("ROLL_SENATE_2018_274@1.json")
]
},
2017: {
// With Jeff Sessions
1: [
FileAttachment("ROLL_SENATE_2017_1.json"),
FileAttachment("ROLL_SENATE_2017_1@1.json")
],
// Use this later roll call to pick up Luther Strange
200: [
FileAttachment("ROLL_SENATE_2017_200.json"),
FileAttachment("ROLL_SENATE_2017_200@1.json")
]
},
2016: {
163: [FileAttachment("ROLL_SENATE_2016_163.json")]
},
2015: {
1: [FileAttachment("ROLL_SENATE_2015_1.json")]
},
2014: {
366: [
FileAttachment("ROLL_SENATE_2014_366.json"),
FileAttachment("ROLL_SENATE_2014_366@1.json")
]
},
2013: {
1: [
FileAttachment("ROLL_SENATE_2013_1.json"),
FileAttachment("ROLL_SENATE_2013_1@1.json")
]
}
})
}
}
};
F.tree.congress.house = tree.congress.house;
F.tree.congress.senate = tree.congress.senate;
return F;
}