1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00

Merge pull request #1 from ZelrDev/main

Improve types, get detentions
This commit is contained in:
James Cook 2022-02-06 10:47:00 +00:00 committed by GitHub
commit cb7be6e70b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 64 additions and 4 deletions

View file

@ -4,6 +4,7 @@ import {
ActivityResponse, ActivityResponse,
BadgesResponse, BadgesResponse,
BehaviourResponse, BehaviourResponse,
DetentionsResponse,
GetActivityOptions, GetActivityOptions,
GetBehaviourOptions, GetBehaviourOptions,
GetHomeworkOptions, GetHomeworkOptions,
@ -119,7 +120,7 @@ export class ClasschartsClient {
*/ */
async getActivity(options?: GetActivityOptions): Promise<ActivityResponse> { async getActivity(options?: GetActivityOptions): Promise<ActivityResponse> {
const params = new URLSearchParams(); const params = new URLSearchParams();
options?.from && params.append("form", options?.from); options?.from && params.append("from", options?.from);
options?.to && params.append("to", options?.to); options?.to && params.append("to", options?.to);
return this.makeAuthedRequest( return this.makeAuthedRequest(
API_BASE + "/activity/" + this.sessionId + "?" + params.toString(), API_BASE + "/activity/" + this.sessionId + "?" + params.toString(),
@ -137,7 +138,7 @@ export class ClasschartsClient {
options?: GetBehaviourOptions options?: GetBehaviourOptions
): Promise<BehaviourResponse> { ): Promise<BehaviourResponse> {
const params = new URLSearchParams(); const params = new URLSearchParams();
options?.from && params.append("form", options?.from); options?.from && params.append("from", options?.from);
options?.to && params.append("to", options?.to); options?.to && params.append("to", options?.to);
options?.last_id && params.append("last_id", options?.last_id); options?.last_id && params.append("last_id", options?.last_id);
return await this.makeAuthedRequest( return await this.makeAuthedRequest(
@ -158,6 +159,7 @@ export class ClasschartsClient {
const params = new URLSearchParams(); const params = new URLSearchParams();
if (options?.displayDate) if (options?.displayDate)
params.append("display_date", String(options?.displayDate)); params.append("display_date", String(options?.displayDate));
options?.fromDate && params.append("from", String(options?.fromDate)); options?.fromDate && params.append("from", String(options?.fromDate));
options?.toDate && params.append("to", String(options?.toDate)); options?.toDate && params.append("to", String(options?.toDate));
const data: Array<Homework> = await this.makeAuthedRequest( const data: Array<Homework> = await this.makeAuthedRequest(
@ -166,12 +168,16 @@ export class ClasschartsClient {
method: "GET", method: "GET",
} }
); );
for (let i = 0; i < data.length; i++) { for (let i = 0; i < data.length; i++) {
data[i].description_raw = data[i].description;
// homework.lesson.replace(/\\/g, '') // homework.lesson.replace(/\\/g, '')
data[i].description = data[i].description.replace(/(<([^>]+)>)/gi, ""); data[i].description = data[i].description.replace(/(<([^>]+)>)/gi, "");
data[i].description = data[i].description.replace(/&nbsp;/g, ""); data[i].description = data[i].description.replace(/&nbsp;/g, "");
data[i].description = data[i].description.trim(); data[i].description = data[i].description.trim();
} }
return data; return data;
} }
/** /**
@ -202,4 +208,16 @@ export class ClasschartsClient {
} }
); );
} }
/**
* Gets the logged in student's detentions
* @returns Array of detentions
*/
async getDetentions(): Promise<DetentionsResponse> {
return await this.makeAuthedRequest(
API_BASE + "/detentions/" + this.studentId,
{
method: "GET",
}
);
}
} }

View file

@ -107,6 +107,7 @@ export interface Homework {
title: string; title: string;
meta_title: string; meta_title: string;
description: string; description: string;
description_raw: string,
issue_date: string; issue_date: string;
due_date: string; due_date: string;
completion_time_unit: string; completion_time_unit: string;
@ -114,7 +115,7 @@ export interface Homework {
publish_time: string; publish_time: string;
status: { status: {
id: number; id: number;
state: any | null; state: "not_completed" | "late" | "completed" | null;
mark: any | null; mark: any | null;
mark_relative: number; mark_relative: number;
ticked: "yes" | "no"; ticked: "yes" | "no";
@ -180,3 +181,44 @@ export interface Badge {
icon_url: string; icon_url: string;
} }
export type BadgesResponse = Array<Badge>; export type BadgesResponse = Array<Badge>;
export interface Detention {
id: number;
attended: "yes" | "no" | "upscaled" | "pending";
date: string | null;
length: number | null;
location: string | null;
notes: string | null;
time: string | null;
pupil: {
id: number;
first_name: string;
last_name: string;
school: {
opt_notes_names: "yes" | "no";
opt_notes_comments: "yes" | "no";
opt_notes_comments_pupils: "yes" | "no";
};
};
lesson: {
id: number;
name: string;
subject: {
id: number;
name: string;
};
};
lesson_pupil_behaviour: {
reason: string;
};
teacher: {
id: number;
first_name: string;
last_name: string;
title: string;
};
detention_type: {
name: string;
};
}
export type DetentionsResponse = Array<Detention>;