Home Purdue Course PHP Package
Post
Cancel

Purdue Course PHP Package

Purdue Course

Synopsis

10+ years have been already passed, since concept of Software Development became more like a stacking multiple blocks of package. According to the npmjs official blog (no longer active), the number of packages in npmjs alone is about 1.3 million as of 2020. It is already 2022 today as I am writing this post with my coffee next to it, the number must be still on the rise.

This PHP package is one of many wrapper packages in the packagist that can be installed via composer dependency manager through dongyukang/purduecourse. I wrote this php library at 2017 (5 years ago from today) in hope for enhancing user experience by simplifying API query. Basically, dongyukang/purduecourse is a wrapper package, it completely depends on Purdue API, a restful api that allows users to get the Purdue University’s course catalogs through OData queries. By utilizing this package, users are able to reduce repeating process of requesting data, parsing data, and all other time consuming tasks, and they can only focus on one major duty, retrieving Purdue course catalogs. This is the core objective to this project.

Brief introduction of the package

Once installing and setup process is finished, retrieving Purdue course data becomes a pushover. If user wants to retrieve all of informtion of a course name called ‘CS 180’ during fall semester of 2016, a single line of code can achieve a such job.

1
 Purdue::fall(2016)->course('cs 180')->all();

The line above will result in:

Result_Screen_Shot

According to Purdue API Entities Hierarchy, the entity chaining consists of following structure:

Purdue API Entities Hierarchy Purdue API Entities Hierarchy (Purdue API)

Each entity has its own properties, so that properties can be accessible by method chaining. For instance:

1
2
3
4
5
Purdue::course('cs 180')->creditHours; // 4.0
Purdue::course('phys 172')->countCourses(); // 2 'Regular' and 'Honors'

Purdue::summer(2016)->termBegin;
Purdue::summer(2016)->termEnd;

Additionally, the package also offers filtering methods such as:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 // Returns sections that 'Type' is matched with $type. 'CS 180' has 'Lecture' and 'Laboratory'.
Purdue::course('cs 180')
       ->classes()
       ->sections()
       ->type('Lecture')
       ->getSections();
      
// Returns sections that have 'Remaining Space' greater than 20 and less then 60.
Purdue::course('cs 180')
        ->classes()
        ->sections()
        ->type('Laboratory')
        ->spaceGreaterThan(20)
        ->spaceLessThan(60)
        ->getSections();

For more details, please refer to this wiki.

Application

All set with the coding (although there’s a lot more to fix and add), so did I accomplish the objective to this project? Here is another project I wrote with laravel php framework, named Purlanner. Shortly describing, the meaning of it is a combination of two words, Purdue + Planner. Basically, it is an agenda that helps users to organize school assignments, projects, tests and any other academic related tasks and enable them to plainly check all the due dates that is registered. Writing such application, I thought it would be better if users can access course info, instead of having them manually register every course that they are taking. Additionally, I also thought of building a huge online communication system sharing students’ thoughts based on their assignments that they registered to Purlanner, I thought being able to access Purdue’s massive course info was necessary. So circling back to the first question, did I accomplish the objective to this project? Yes, definitely. It clearly helped me to code much efficient way. I was able to build this web app much faster than I thought through ‘easy-to-read & write’ method chaining. Repeating process of parsing data and requesting data was no longer an issue while developing this web app.

Summing up

So I wrote the package dongyukang/purduecourse 5 years ago. I also wrote the Purlanner 5 years ago. Though I was not able to achieve my ultimate end-game goal of building a huge online community, I believe this is because not many people knew and used my application. Even if my product was well-advertised, I doubt that it would become popular among Purdue students. But I consider this as one of my trials, and I can take it as lesson to improve on.

This post is licensed under CC BY 4.0 by the author.
Contents

Unpredicted direction of voyage

-

Comments powered by Disqus.