acm-roster
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

version 1.0.0 open issues

acm-roster

acm-roster is an npm (node.js) package that fetches the roster data of an ACM Student Chapter. This is intended to be used by ACM Student Chapters that need to access their chapter members data for use in their applications. The script provides the member number, first name, last name, e-mail, affiliation, membership type, date added, expiration date, and ACM membership status for all current chapter members.

Typescript declarations included.

Dependencies:

  • axios
  • csv-parse

Contributions

If you would like to make a contribution, please make sure you run npm run lint:check and npm run build before submitting any pull requests. Any PR's that have linting issues will not be merged. The build script only needs to run when a type change has occured.

What you need to know

  1. To log your client in, you need the ACM Administrator Panel username and password for your chapter.
  2. You MUST log in before using any other methods.
  3. When logging in to the ACM panel with the client, it is strongly recommended that you do not enter your username and password as inline plaintext. An alternative is to use a .json or .env file to hold your username and password, import the data fields, and add the file to .gitignore.
  4. The login() and refreshRoster() methods are asynchronous and can take several seconds to execute due to server latency.

Installation

Run the command npm install acm-roster to add this package to your project.

Usage

Since the login and refresh methods are asynchronous, they must be called within an async function or within a promise. It is important that the login method finishes its job before the next method begins. Both techniques are show, below:

Within an async function:

const Chapter = require("acm-roster");

async function main() {
    // creating new client
    const client = new Chapter();
    try {
      // log in to chapters ACM account
      await client.login("acm-username", "acm-password");

      // retrives Treasurer member data
      const treasurer = client.getMembersByType("Treasurer");
      console.log(`${treasurer.firstName} ${treasurer.lastName} is the clubs Treasurer.`);
    } catch (err) {
      throw err;
    }
}

Within a promise:

const Chapter = require("acm-roster");

// creating new client
const client = new Chapter();

// log in to chapters ACM account with client
client.login("acm-username", "acm-password").then((res) => {
    // initial login method returns full member list
    console.log(res);
	
    // get all members with active membership
    const activeMembers = client.getCurrentMembers();
    console.log(activeMembers);
});

Available Methods

To see more details on the method, such as the return type and input parameters, click the method name or visit the Wiki.

  • login - Logs your client into ACM Panel to access your chapter roster data.
  • refreshRoster - Updates member list with the most recent roster data. Used when changes have been made to the roster and you want to refresh the members.
  • getAllMembers - Retrieves the entire list of members from your chapter.
  • getMemberByID - Fetches a members data based on a specific ACM ID.
  • getMemberByEmail - Searches roster for members with a certain email address.
  • getMembersByFirstName - Retrieves all members with a specific first name.
  • getMembersByLastName - Retrieves all members with a specific last name.
  • getMembersByType - Retrieves all members of a specific type. Types can include Chapter Member, Secretary, Treasurer, Vice Chair, Chair, Faculty Sponsor, or any other chapter roles you may have created.
  • getSubscribers - Retrieves all members with an ACM Subscription.
  • getNonSubscribers - Retrieves all members that do not have an active ACM subscription.
  • getCurrentMembers - Retrieves active members of the club, that are non-expired.
  • getExpiredMembers - Retrieves inactive members of the club, that are expired.
  • isMember - Determines if a user is a registered member of your chapter.
  • isActiveMember - Determines if a user is an active ACM Member.
  • isOfficer - Determines if a user is an Officer of the Club. Typically, the Club Officers consist of the Secretary, Treasurer, Vice Chair, and Chair. It is possible to add more officer positions through ACM (such as Web Master).
  • chapterSize - Returns the total number of chapter members.
  • acmSubSize - Returns the number of chapter members subscribed to ACM.
  • inactiveSize - Returns the number of inactive/expired chapter members.
  • activeSize - Returns the number of active/non-expired chapter members.

How it works

  1. The script begins by supplying your login credentials to a x-www-form-urlencoded, and the form is sent in a post request to the ACM host url. This will log you into the ACM admin panel.

  2. Upon successfully logging into the admin panel, a CFID and CFTOKEN are given in the response of the post request, which are required for the roster retrieval API.

  3. After parsing the CFID and CFTOKEN from the response, a GET request is then sent to the ACM host to obtain the list of chapter members. The response will return a long CSV string.

  4. The CSV string is then parsed into an array of objects, which can be manipulated however you desire. For example, updating a MongoDB database with the most recent roster data.

Documentation

You can find the documentation here.

Contact

email-svg

Package Sidebar

Install

npm i acm-roster

Weekly Downloads

19

Version

1.0.1

License

MIT

Unpacked Size

34.1 kB

Total Files

8

Last publish

Collaborators

  • mgrist