mirror of
https://github.com/classchartsapi/classcharts-api-js.git
synced 2026-05-14 11:58:13 +00:00
feat: helper functions
This commit is contained in:
parent
67fe788090
commit
97292756dc
6 changed files with 102 additions and 20 deletions
55
src/api.ts
Normal file
55
src/api.ts
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
/**
|
||||||
|
* Helper functions for requesting individual students instead of making a whole client
|
||||||
|
* Using a client should be prefered over performance reasons
|
||||||
|
*/
|
||||||
|
import { ClasschartsClient } from '.'
|
||||||
|
import {
|
||||||
|
ActivityResponse,
|
||||||
|
BehaviourResponse,
|
||||||
|
GetActivityOptions,
|
||||||
|
GetBehaviourOptions,
|
||||||
|
GetHomeworkOptions,
|
||||||
|
GetLessonsOptions,
|
||||||
|
HomeworksResponse,
|
||||||
|
LessonsResponse,
|
||||||
|
Student,
|
||||||
|
} from './types'
|
||||||
|
export async function getStudentInfo(
|
||||||
|
studentCode: string,
|
||||||
|
dateOfBirth: string | null
|
||||||
|
): Promise<Student> {
|
||||||
|
const client = new ClasschartsClient(studentCode, dateOfBirth)
|
||||||
|
return await client.getStudentInfo()
|
||||||
|
}
|
||||||
|
export async function getActivity(
|
||||||
|
studentCode: string,
|
||||||
|
dateOfBirth: string | null,
|
||||||
|
options: GetActivityOptions | null
|
||||||
|
): Promise<ActivityResponse> {
|
||||||
|
const client = new ClasschartsClient(studentCode, dateOfBirth)
|
||||||
|
return await client.getActivity(options)
|
||||||
|
}
|
||||||
|
export async function getBehaviour(
|
||||||
|
studentCode: string,
|
||||||
|
dateOfBirth: string | null,
|
||||||
|
options: GetBehaviourOptions | null
|
||||||
|
): Promise<BehaviourResponse> {
|
||||||
|
const client = new ClasschartsClient(studentCode, dateOfBirth)
|
||||||
|
return await client.getBehaviour(options)
|
||||||
|
}
|
||||||
|
export async function listHomeworks(
|
||||||
|
studentCode: string,
|
||||||
|
dateOfBirth: string | null,
|
||||||
|
options: GetHomeworkOptions | null
|
||||||
|
): Promise<HomeworksResponse> {
|
||||||
|
const client = new ClasschartsClient(studentCode, dateOfBirth)
|
||||||
|
return await client.listHomeworks(options)
|
||||||
|
}
|
||||||
|
export async function getLessons(
|
||||||
|
studentCode: string,
|
||||||
|
dateOfBirth: string | null,
|
||||||
|
options: GetLessonsOptions
|
||||||
|
): Promise<LessonsResponse> {
|
||||||
|
const client = new ClasschartsClient(studentCode, dateOfBirth)
|
||||||
|
return await client.getLessons(options)
|
||||||
|
}
|
||||||
|
|
@ -11,8 +11,11 @@ import {
|
||||||
HomeworksResponse,
|
HomeworksResponse,
|
||||||
LessonsResponse,
|
LessonsResponse,
|
||||||
Student,
|
Student,
|
||||||
} from '../types'
|
} from './types'
|
||||||
import { API_BASE, BASE_URL } from './consts'
|
import { API_BASE, BASE_URL } from './consts'
|
||||||
|
/**
|
||||||
|
* The base client
|
||||||
|
*/
|
||||||
export class ClasschartsClient {
|
export class ClasschartsClient {
|
||||||
public studentCode = ''
|
public studentCode = ''
|
||||||
public dateOfBirth = ''
|
public dateOfBirth = ''
|
||||||
|
|
@ -20,7 +23,12 @@ export class ClasschartsClient {
|
||||||
public studentName = ''
|
public studentName = ''
|
||||||
private authCookies: Array<string> | undefined
|
private authCookies: Array<string> | undefined
|
||||||
private sessionId = ''
|
private sessionId = ''
|
||||||
constructor(studentCode: unknown, dateOfBirth: unknown) {
|
/**
|
||||||
|
*
|
||||||
|
* @param studentCode Classcharts student code
|
||||||
|
* @param dateOfBirth Student's date of birth
|
||||||
|
*/
|
||||||
|
constructor(studentCode: string, dateOfBirth: string | null) {
|
||||||
this.studentCode = String(studentCode)
|
this.studentCode = String(studentCode)
|
||||||
this.dateOfBirth = String(dateOfBirth)
|
this.dateOfBirth = String(dateOfBirth)
|
||||||
}
|
}
|
||||||
|
|
@ -48,8 +56,10 @@ export class ClasschartsClient {
|
||||||
}
|
}
|
||||||
return responseJSON.data
|
return responseJSON.data
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
async init() {
|
* Initialises the client and authenticates with classcharts
|
||||||
|
*/
|
||||||
|
async init(): Promise<void> {
|
||||||
if (!this.studentCode) throw new Error('Student Code not inputted')
|
if (!this.studentCode) throw new Error('Student Code not inputted')
|
||||||
const formData = new URLSearchParams()
|
const formData = new URLSearchParams()
|
||||||
formData.append('_method', 'POST')
|
formData.append('_method', 'POST')
|
||||||
|
|
@ -82,6 +92,10 @@ export class ClasschartsClient {
|
||||||
this.studentId = user.id
|
this.studentId = user.id
|
||||||
this.studentName = user.name
|
this.studentName = user.name
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Gets general information about the logged in student
|
||||||
|
* @returns Student object
|
||||||
|
*/
|
||||||
async getStudentInfo(): Promise<Student> {
|
async getStudentInfo(): Promise<Student> {
|
||||||
if (!this.authCookies) throw new Error('Not authenticated')
|
if (!this.authCookies) throw new Error('Not authenticated')
|
||||||
const data = await this.makeAuthedRequest(API_BASE + '/ping', {
|
const data = await this.makeAuthedRequest(API_BASE + '/ping', {
|
||||||
|
|
@ -90,6 +104,11 @@ export class ClasschartsClient {
|
||||||
})
|
})
|
||||||
return data?.user
|
return data?.user
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Get's the logged in student's general activity
|
||||||
|
* @param options GetActivityOptions
|
||||||
|
* @returns Activity data
|
||||||
|
*/
|
||||||
async getActivity(
|
async getActivity(
|
||||||
options: GetActivityOptions | null
|
options: GetActivityOptions | null
|
||||||
): Promise<ActivityResponse> {
|
): Promise<ActivityResponse> {
|
||||||
|
|
@ -103,6 +122,11 @@ export class ClasschartsClient {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Gets the logged in students behaviour points
|
||||||
|
* @param options GetBehaviourOptions
|
||||||
|
* @returns Array of behaviour points
|
||||||
|
*/
|
||||||
async getBehaviour(
|
async getBehaviour(
|
||||||
options: GetBehaviourOptions | null
|
options: GetBehaviourOptions | null
|
||||||
): Promise<BehaviourResponse> {
|
): Promise<BehaviourResponse> {
|
||||||
|
|
@ -117,6 +141,11 @@ export class ClasschartsClient {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Gets a list of the logged in student's homeworks
|
||||||
|
* @param options GetHomeworkOptions
|
||||||
|
* @returns Array of homeworks
|
||||||
|
*/
|
||||||
async listHomeworks(
|
async listHomeworks(
|
||||||
options: GetHomeworkOptions | null
|
options: GetHomeworkOptions | null
|
||||||
): Promise<HomeworksResponse> {
|
): Promise<HomeworksResponse> {
|
||||||
|
|
@ -142,6 +171,11 @@ export class ClasschartsClient {
|
||||||
}
|
}
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Gets the logged in student's lessons for a day
|
||||||
|
* @param options GetLessonsOptions
|
||||||
|
* @returns Array of lessons
|
||||||
|
*/
|
||||||
async getLessons(options: GetLessonsOptions): Promise<LessonsResponse> {
|
async getLessons(options: GetLessonsOptions): Promise<LessonsResponse> {
|
||||||
if (!this.authCookies) throw new Error('Not authenticated')
|
if (!this.authCookies) throw new Error('Not authenticated')
|
||||||
if (!options?.date) throw new Error('No date specified')
|
if (!options?.date) throw new Error('No date specified')
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
export * from './client'
|
export * from './client'
|
||||||
|
export * from './api'
|
||||||
|
|
|
||||||
|
|
@ -22,14 +22,6 @@ function main() {
|
||||||
__dirname + '/version.txt',
|
__dirname + '/version.txt',
|
||||||
Buffer.from(sourceObj.version, 'utf-8')
|
Buffer.from(sourceObj.version, 'utf-8')
|
||||||
)
|
)
|
||||||
try {
|
|
||||||
fs.mkdirSync(__dirname + '/types/')
|
|
||||||
} catch {}
|
|
||||||
|
|
||||||
fs.copyFileSync(
|
|
||||||
__dirname + '/../types/index.d.ts',
|
|
||||||
__dirname + '/types/index.d.ts'
|
|
||||||
)
|
|
||||||
fs.copyFileSync(__dirname + '/../.npmignore', __dirname + '/.npmignore')
|
fs.copyFileSync(__dirname + '/../.npmignore', __dirname + '/.npmignore')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
14
types/index.d.ts → src/types.d.ts
vendored
14
types/index.d.ts → src/types.d.ts
vendored
|
|
@ -51,10 +51,10 @@ export interface ActivityResponse {
|
||||||
timeline: Array<ActivityTimelinePoint>
|
timeline: Array<ActivityTimelinePoint>
|
||||||
positiveReasons: Record<string, string>
|
positiveReasons: Record<string, string>
|
||||||
negative_reasons: Record<string, string>
|
negative_reasons: Record<string, string>
|
||||||
other_positive: Array
|
other_positive: Array<any>
|
||||||
other_negative: Array
|
other_negative: Array<any>
|
||||||
other_positive_count: Array
|
other_positive_count: Array<any>
|
||||||
other_negative_count: Array
|
other_negative_count: Array<any>
|
||||||
}
|
}
|
||||||
export interface GetBehaviourOptions {
|
export interface GetBehaviourOptions {
|
||||||
from: string | undefined
|
from: string | undefined
|
||||||
|
|
@ -114,11 +114,11 @@ export interface Homework {
|
||||||
allow_attachments: string
|
allow_attachments: string
|
||||||
first_seen_date: string
|
first_seen_date: string
|
||||||
last_seen_date: string
|
last_seen_date: string
|
||||||
attachments: Array
|
attachments: Array<any>
|
||||||
has_feedback: boolean
|
has_feedback: boolean
|
||||||
}
|
}
|
||||||
validated_links: Array
|
validated_links: Array<any>
|
||||||
validated_attachments: Array
|
validated_attachments: Array<any>
|
||||||
}
|
}
|
||||||
export type HomeworksResponse = Array<Homework>
|
export type HomeworksResponse = Array<Homework>
|
||||||
export interface GetLessonsOptions {
|
export interface GetLessonsOptions {
|
||||||
|
|
@ -87,6 +87,6 @@
|
||||||
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
||||||
/* Completeness */
|
/* Completeness */
|
||||||
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
||||||
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
// "skipLibCheck": true /* Skip type checking all .d.ts files. */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue