npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

guc-client

v1.0.0

Published

A programmatic API for the GUC system (students).

Downloads

4

Readme

GUC Client

A node library that provides a programmatic API for GUC students, implementing the functionality of the admin system (currently for students).

1. Introduction

The library uses puppeteer, a chromium headless browser. Since the GUC has no API (as of the time of writing this), this solution might not be the fastest, but it is the best that can be done for now.

The implementation covers the perspective of a student, if any staff members would like to contribute to include their own functionalities, please check the contribution section.

1.1. Features

  • Full transcript of the student in a relatively fast time (without having to wait a minute between requests)
  • Current semester's grades (Course work & Midterms)
  • Current semester schedule
  • Reports specific errors when the GUC system is down, course evaluation is required, etc.

2. Installation

Requires Node 8.9.0+ due to puppeteer's requirements.

npm i guc-client

Note: When you install the package, it installs Puppeteer, which in turn downloads a recent version of Chromium (~170MB Mac, ~282MB Linux, ~280MB Win) that is guaranteed to work with the API. To skip the download, please check Skipping Chromium Download.

3. Usage

First require the client class, and set the credentials object

const { GucClient, errors } = require('guc-client');
const credentials = { username: 'john.doe', password: '123' };

The following is a basic example for fetching the grades, while catching an error if the authentication failed. The implementation is based on promises, it is recommended to use async/await for easier syntax

(async () => {
  try {
    const client = await GucClient.create(credentials);
    const grades = await client.getGrades();
    console.log(grades);
    await client.terminate();
  } catch (error) {
    if (error instanceof errors.InvalidCredentialsError) {
      console.log('Invalid username or password!');
    }
  }
})();

Or using normal then/catch syntax as so

GucClient.create(credentials)
  .then(instance => {
    instance.getGrades().then(grades => {
      console.log(grades);
      instance.terminate();
    });
  })
  .catch(error => {
    if (error instanceof errors.InvalidCredentialsError) {
      console.log('Invalid username or password!');
    }
  });

3.1. Important Notes

  • The GucClient.create is asynchronous, and it can throw an error, mainly for invalid credentials, but also if the GUC system is down. You should always handle such errors as described in the errors-section.
  • You must call the .terminate() function after your code is no longer using the client, and await it, or else the application process won't stop (the spawned browser process won't be closed otherwise).

3.2. API

Since the library is written in TypeScript, the typing will be skipped in the docs as they can be inferred (use an editor with Intellisense for easier development)

3.2.1 GucClient.create()

A factory function that asynchronously creates a client instance (given the user's login information), it tests the system by logging in with the provided credentials, and can throw any of the following system errors:

  • InvalidCredentialsError
  • SystemError
  • UnknownSystemError

3.2.2 GucClient.getTranscript()

Returns the full transcript (all available years) for the logged in student. The function may throw EvaluationRequiredError if the GUC system is requiring evaluation before showing the transcript.

3.2.3 GucClient.getGrades()

Returns the logged in user's semester grades: both the coursework of all current courses, as well as the midterm grades if any.

3.2.4 GucClient.getSchedule()

Returns the logged in user's current semester schedule.

4. Configuration

4.1 Skipping Chromium Download

When running npm install, you can skip the download of the chromium binaries by setting the following environment variable:

export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true

However you must provide an executable path to a chromium binary (which is done via the CHROMIUM_EXECUTABLE_PATH environment variable). In the following example, it's assumed the default path to google-chrome, on an Ubuntu machine.

export CHROMIUM_EXECUTABLE_PATH=/usr/bin/google-chrome

This can be done via a .env file for easier configuration.

4.2 Configuring Puppeteer Options

When creating a client instance, you can provide an optional puppeteer browser instance, this will allow you to set any options you would like to the browser instance (and this can be used to specify the executable path without the use of env as mentioned above).

So for example, if you would like to run the library in a non-headless mode (see the browser interaction being rendered), you can run the following:

const { GucClient } = require('guc-client');
const puppeteer = require('puppeteer');
const customOptions = {
  headless: true
  // any other options ...
};
(async () => {
  const browser = await puppeteer.launch(customOptions);
  const client = GucClient.create({ username: 'john.doe', password: '123' }, browser);
  // Use the client instance regularly ...
})();

5. Errors

The following errors can be thrown, you should try your best to handle each of them, and be as specific as possible:

5.1 InvalidCredentialsError

Thrown when the provided credentials fail to login. No further data is associated with the error.

5.2 SystemError

Thrown whenever the system faces a handled error (for instance, trying to access a page you are not authorized to).

The error object has the following properties:

  • message: A string containing the title displayed on the error page
  • details: A string containing further details displayed on the error page

5.2 UnknownSystemError

The error gets thrown whenever the system raises an exception that was not handled (500 on the GUC server basically).

The error object doesn't contain any further metadata, for the sake of privacy, since such errors dump the stacktrace (as of the time of writing this).

6. Contribution

For any feedback or issues, feel free to open an issue, make sure to keep it as detailed as possible.

If you would like to contribute, feel free to fork the repo, and open a PR. However, please create an issue first with the feature/bug-fix you would like to implement, since it might be in-work already.

7. License

The library is open source under the MIT License.

DISCLAIMER: This library is in no way legally associated with the GUC. It is simply a personal project for automating day-to-day tasks involving the GUC system.