mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-08 08:04:24 +00:00
Refactor a bunch of crap and handle prerequisites
This commit is contained in:
parent
35cb6c51a3
commit
736defdd0a
|
@ -10,10 +10,18 @@ struct quatalog_data_t {
|
||||||
Json::Value list_of_terms;
|
Json::Value list_of_terms;
|
||||||
Json::Value catalog;
|
Json::Value catalog;
|
||||||
};
|
};
|
||||||
|
enum struct TAG { BEGIN, END, INLINE };
|
||||||
bool create_dir_if_not_exist(const fs::path&);
|
bool create_dir_if_not_exist(const fs::path&);
|
||||||
void generate_course_page(const std::string&,const quatalog_data_t&,std::ostream&);
|
void generate_course_page(const std::string&,const quatalog_data_t&,std::ostream&);
|
||||||
void generate_list(const Json::Value&,const std::string&,const std::string&,const quatalog_data_t&,std::ostream& os);
|
|
||||||
std::string get_course_title(const std::string&,const quatalog_data_t&);
|
std::string get_course_title(const std::string&,const quatalog_data_t&);
|
||||||
|
void generate_list(const Json::Value&,const std::string&,const std::string&,const quatalog_data_t&,std::ostream&);
|
||||||
|
void generate_prereq_display(const Json::Value&,const quatalog_data_t&,std::ostream&);
|
||||||
|
void generate_course_pill(const std::string&,const quatalog_data_t&,std::ostream&);
|
||||||
|
void generate_prereq(const Json::Value&,const quatalog_data_t&,std::ostream&);
|
||||||
|
void generate_or_prereq(const Json::Value&,const quatalog_data_t&,std::ostream&);
|
||||||
|
void generate_and_prereq(const Json::Value&,const quatalog_data_t&,std::ostream&);
|
||||||
|
std::ostream& indent(std::ostream&,const int);
|
||||||
|
std::ostream& tag(std::ostream&,enum TAG,const std::string& = "");
|
||||||
|
|
||||||
int main(const int argc,
|
int main(const int argc,
|
||||||
const char** argv) {
|
const char** argv) {
|
||||||
|
@ -50,8 +58,11 @@ int main(const int argc,
|
||||||
list_of_terms_file >> quatalog_data.list_of_terms;
|
list_of_terms_file >> quatalog_data.list_of_terms;
|
||||||
catalog_file >> quatalog_data.catalog;
|
catalog_file >> quatalog_data.catalog;
|
||||||
|
|
||||||
generate_course_page("LGHT-4830",quatalog_data,std::cout);
|
for(const auto& course : quatalog_data.catalog.getMemberNames()) {
|
||||||
generate_course_page("MATH-4150",quatalog_data,std::cout);
|
std::cerr << course << std::endl;
|
||||||
|
generate_course_page(course,quatalog_data,std::cout);
|
||||||
|
}
|
||||||
|
//generate_course_page("CSCI-4260",quatalog_data,std::cout);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool create_dir_if_not_exist(const fs::path& path) {
|
bool create_dir_if_not_exist(const fs::path& path) {
|
||||||
|
@ -98,56 +109,149 @@ void generate_course_page(const std::string& course_id,
|
||||||
"They are often recycled and used for new/experimental courses.";
|
"They are often recycled and used for new/experimental courses.";
|
||||||
}
|
}
|
||||||
|
|
||||||
os << R"R(<html>
|
tag(os,TAG::BEGIN,"html");
|
||||||
<head>
|
tag(os,TAG::BEGIN,"head");
|
||||||
<title>)R" << course_id << " - " << course_name << R"R(</title>"
|
tag(os,TAG::BEGIN,"title");
|
||||||
</head>
|
tag(os,TAG::INLINE) << course_id << " - " << course_name << '\n';
|
||||||
<body>
|
tag(os,TAG::END,"title");
|
||||||
<div id="cd-flex">
|
tag(os,TAG::END,"head");
|
||||||
<div id="course-info-container">
|
tag(os,TAG::BEGIN,"body");
|
||||||
<h1 id="name">)R" << course_name << R"R(</h1>
|
tag(os,TAG::BEGIN,R"(div id="cd-flex")");
|
||||||
<h2 id="code">)R" << course_id << R"R(</h2>
|
tag(os,TAG::BEGIN,R"(div id="course-info-container")");
|
||||||
<p>)R" << description << R"R(</p>
|
tag(os,TAG::BEGIN,R"(h1 id="name")");
|
||||||
<div id="cattrs-container">
|
tag(os,TAG::INLINE) << course_name << '\n';
|
||||||
<span id="credits-pill" class="attr-pill">
|
tag(os,TAG::END,"h1");
|
||||||
<span>)R" << credit_string << " " << (credMax == 1 ? "credit" : "credits") << R"R(</span>
|
tag(os,TAG::INLINE) << R"(<h2 id="code">)" << course_id << "</h2>" << '\n';
|
||||||
</span>
|
tag(os,TAG::BEGIN,"p");
|
||||||
</div>)R" << '\n';
|
tag(os,TAG::INLINE) << description << '\n';
|
||||||
generate_list(prereqs_entry["cross_listings"],"Cross-listed with:","crosslist",quatalog_data,os);
|
tag(os,TAG::END,"p");
|
||||||
generate_list(prereqs_entry["corequisites"],"Corequisites:","coreq",quatalog_data,os);
|
tag(os,TAG::BEGIN,R"(div id="cattrs-container")");
|
||||||
os << R"R( </div>
|
tag(os,TAG::BEGIN,R"(span id="credits-pill" class="attr-pill")");
|
||||||
</div>
|
tag(os,TAG::INLINE) << credit_string << " " << (credMax == 1 ? "credit" : "credits") << '\n';
|
||||||
</body>
|
tag(os,TAG::END,"span");
|
||||||
</html>)R" << std::endl;
|
tag(os,TAG::END,"div");
|
||||||
|
generate_list(prereqs_entry["cross_listings"],"Cross-listed with:","crosslist",quatalog_data,os);
|
||||||
|
generate_list(prereqs_entry["corequisites"],"Corequisites:","coreq",quatalog_data,os);
|
||||||
|
generate_prereq_display(prereqs_entry["prerequisites"],quatalog_data,os);
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::END,"body");
|
||||||
|
tag(os,TAG::END,"html");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string get_course_title(const std::string& course_id,const quatalog_data_t& quatalog_data) {
|
std::string get_course_title(const std::string& course_id,
|
||||||
|
const quatalog_data_t& quatalog_data) {
|
||||||
const auto& catalog_entry = quatalog_data.catalog[course_id];
|
const auto& catalog_entry = quatalog_data.catalog[course_id];
|
||||||
const auto& terms_offered = quatalog_data.terms_offered[course_id];
|
const auto& terms_offered = quatalog_data.terms_offered[course_id];
|
||||||
const auto& latest_term = terms_offered["latest_term"].asString();
|
const auto& latest_term = terms_offered["latest_term"].asString();
|
||||||
if(catalog_entry) {
|
if(catalog_entry) {
|
||||||
return catalog_entry["name"].asString();
|
return catalog_entry["name"].asString();
|
||||||
} else {
|
} else {
|
||||||
return terms_offered[latest_term]["name"].asString();
|
return terms_offered[latest_term]["title"].asString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void generate_list(const Json::Value& list,const std::string& list_name,const std::string& css_prefix,const quatalog_data_t& qlog,std::ostream& os) {
|
void generate_course_pill(const std::string& course_id,
|
||||||
if(!list.empty()) {
|
const quatalog_data_t& qlog,
|
||||||
os << R"R( <div id=")R" << css_prefix << R"R(-container" class="hidden">
|
std::ostream& os) {
|
||||||
<div id=")R" << css_prefix << R"R(-title" class="rel-info-title">
|
const auto& title = get_course_title(course_id,qlog);
|
||||||
)R" << list_name << R"R(
|
tag(os,TAG::INLINE) << R"R(<a class="course-pill" href=")R" << course_id
|
||||||
</div>
|
<< R"R(.html">)R"
|
||||||
<div id=")R" << css_prefix << R"R(-classes" class="rel-info-courses">)R";
|
<< course_id;
|
||||||
for(const auto& cl : list) {
|
if(!title.empty()) {
|
||||||
const auto& clstr = cl.asString();
|
os << " " << title;
|
||||||
os << R"R(
|
}
|
||||||
<a class="course-pill" href=")R" << clstr
|
os << "</a>";
|
||||||
<< R"R(.html">)R"
|
}
|
||||||
<< clstr << " " << get_course_title(clstr,qlog)
|
|
||||||
<< "</a>\n";
|
void generate_list(const Json::Value& list,
|
||||||
}
|
const std::string& list_name,
|
||||||
os << " </div>\n";
|
const std::string& css_prefix,
|
||||||
os << " </div>\n";
|
const quatalog_data_t& qlog,
|
||||||
|
std::ostream& os) {
|
||||||
|
if(list.empty()) return;
|
||||||
|
tag(os,TAG::BEGIN,R"(div id=")" + css_prefix + R"(-container")");
|
||||||
|
tag(os,TAG::BEGIN,R"(div id=")" + css_prefix + R"(-title" class="rel-info-title")");
|
||||||
|
tag(os,TAG::INLINE) << list_name << '\n';
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::BEGIN,"div id=" + css_prefix + R"(-classes" class="rel-info-courses")");
|
||||||
|
for(const auto& cl : list) {
|
||||||
|
generate_course_pill(cl.asString(),qlog,os);
|
||||||
|
os << '\n';
|
||||||
|
}
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
}
|
||||||
|
|
||||||
|
void generate_prereq_display(const Json::Value& prereqs,const quatalog_data_t& qlog,std::ostream& os) {
|
||||||
|
if(prereqs.empty()) return;
|
||||||
|
tag(os,TAG::BEGIN,R"(div id="prereq-container" class="rel-info-container")");
|
||||||
|
tag(os,TAG::BEGIN,R"(div id="prereq-title" class="rel-info-title")");
|
||||||
|
tag(os,TAG::INLINE) << "Prereqs:" << '\n';
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::BEGIN,R"(div id="prereq-classes" class="rel-info-courses")");
|
||||||
|
generate_prereq(prereqs,qlog,os);
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
}
|
||||||
|
|
||||||
|
void generate_prereq(const Json::Value& prereq,
|
||||||
|
const quatalog_data_t& qlog,
|
||||||
|
std::ostream& os) {
|
||||||
|
if(prereq["type"] == "course") {
|
||||||
|
std::string course = prereq["course"].asString();
|
||||||
|
course[4] = '-';
|
||||||
|
generate_course_pill(course,qlog,os);
|
||||||
|
os << '\n';
|
||||||
|
} else if(prereq["type"] == "or") {
|
||||||
|
generate_or_prereq(prereq["nested"],qlog,os);
|
||||||
|
} else if(prereq["type"] == "and") {
|
||||||
|
generate_and_prereq(prereq["nested"],qlog,os);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void generate_or_prereq(const Json::Value& prereqs,
|
||||||
|
const quatalog_data_t& qlog,
|
||||||
|
std::ostream& os) {
|
||||||
|
tag(os,TAG::BEGIN,R"(div class="pr-or-con")");
|
||||||
|
tag(os,TAG::BEGIN,R"(div class="pr-or-title")");
|
||||||
|
tag(os,TAG::INLINE) << "one of:" << '\n';
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::BEGIN,R"(div class="pr-or")");
|
||||||
|
for(const auto& pr : prereqs) {
|
||||||
|
generate_prereq(pr,qlog,os);
|
||||||
|
}
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
tag(os,TAG::END,"div");
|
||||||
|
}
|
||||||
|
|
||||||
|
void generate_and_prereq(const Json::Value& prereqs,
|
||||||
|
const quatalog_data_t& qlog,
|
||||||
|
std::ostream& os) {
|
||||||
|
generate_prereq(prereqs[0],qlog,os);
|
||||||
|
for(Json::Value::ArrayIndex i = 1; i != prereqs.size();i++) {
|
||||||
|
tag(os,TAG::INLINE) << R"R(<div class="pr-and">and</div>)R" << '\n';
|
||||||
|
generate_prereq(prereqs[i],qlog,os);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::ostream& tag(std::ostream& os,enum TAG mode,const std::string& tagname /* = "" */) {
|
||||||
|
static int indent_w = 0;
|
||||||
|
switch(mode) {
|
||||||
|
case TAG::INLINE:
|
||||||
|
return indent(os,indent_w);
|
||||||
|
case TAG::BEGIN:
|
||||||
|
return indent(os,indent_w++) << '<' << tagname << '>' << '\n';
|
||||||
|
case TAG::END:
|
||||||
|
return indent(os,--indent_w) << "</" << tagname << '>' << '\n';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::ostream& indent(std::ostream& os,
|
||||||
|
const int indent_w) {
|
||||||
|
const std::string& INDENT = " ";
|
||||||
|
for(int i = 0;i < indent_w;i++) {
|
||||||
|
os << INDENT;
|
||||||
|
}
|
||||||
|
return os;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue