-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/rsc' of github.com:cisagov/XFD into RSC-Dashboard
- Loading branch information
Showing
11 changed files
with
317 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
import { validateBody, wrapHandler, NotFound, Unauthorized } from './helpers'; | ||
import { Assessment, connectToDatabase } from '../models'; | ||
import { isUUID } from 'class-validator'; | ||
|
||
/** | ||
* @swagger | ||
* | ||
* /assessments: | ||
* post: | ||
* description: Save an RSC assessment to the XFD database. | ||
* tags: | ||
* - Assessments | ||
*/ | ||
export const createAssessment = wrapHandler(async (event) => { | ||
const body = await validateBody(Assessment, event.body); | ||
|
||
await connectToDatabase(); | ||
|
||
const assessment = Assessment.create(body); | ||
await Assessment.save(assessment); | ||
|
||
return { | ||
statusCode: 200, | ||
body: JSON.stringify(assessment) | ||
}; | ||
}); | ||
|
||
/** | ||
* @swagger | ||
* | ||
* /assessments: | ||
* get: | ||
* description: Lists all assessments for the logged-in user. | ||
* tags: | ||
* - Assessments | ||
*/ | ||
export const list = wrapHandler(async (event) => { | ||
const userId = event.requestContext.authorizer!.id; | ||
|
||
if (!userId) { | ||
return Unauthorized; | ||
} | ||
|
||
await connectToDatabase(); | ||
|
||
const assessments = await Assessment.find({ | ||
where: { user: userId } | ||
}); | ||
|
||
return { | ||
statusCode: 200, | ||
body: JSON.stringify(assessments) | ||
}; | ||
}); | ||
|
||
/** | ||
* @swagger | ||
* | ||
* /assessments/{id}: | ||
* get: | ||
* description: Return user responses and questions organized by category for a specific assessment. | ||
* parameters: | ||
* - in: path | ||
* name: id | ||
* description: Assessment id | ||
* tags: | ||
* - Assessments | ||
*/ | ||
export const get = wrapHandler(async (event) => { | ||
const assessmentId = event.pathParameters?.id; | ||
|
||
if (!assessmentId || !isUUID(assessmentId)) { | ||
return NotFound; | ||
} | ||
|
||
await connectToDatabase(); | ||
|
||
const assessment = await Assessment.findOne(assessmentId, { | ||
relations: [ | ||
'responses', | ||
'responses.question', | ||
'responses.question.category' | ||
] | ||
}); | ||
|
||
if (!assessment) { | ||
return NotFound; | ||
} | ||
|
||
const responsesByCategory = assessment.responses.reduce((acc, response) => { | ||
const categoryName = response.question.category.name; | ||
if (!acc[categoryName]) { | ||
acc[categoryName] = []; | ||
} | ||
acc[categoryName].push(response); | ||
return acc; | ||
}, {}); | ||
|
||
return { | ||
statusCode: 200, | ||
body: JSON.stringify(responsesByCategory) | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { | ||
BaseEntity, | ||
Column, | ||
CreateDateColumn, | ||
Entity, | ||
ManyToOne, | ||
OneToMany, | ||
PrimaryGeneratedColumn, | ||
UpdateDateColumn | ||
} from 'typeorm'; | ||
import { Response } from './response'; | ||
import { User } from './user'; | ||
|
||
@Entity() | ||
export class Assessment extends BaseEntity { | ||
@PrimaryGeneratedColumn('uuid') | ||
id: string; | ||
|
||
@CreateDateColumn() | ||
createdAt: Date; | ||
|
||
@UpdateDateColumn() | ||
updatedAt: Date; | ||
|
||
@Column() | ||
type: string; | ||
|
||
@ManyToOne(() => User, (user) => user.assessments) | ||
user: User; | ||
|
||
@OneToMany(() => Response, (response) => response.assessment) | ||
responses: Response[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { | ||
BaseEntity, | ||
Column, | ||
Entity, | ||
OneToMany, | ||
PrimaryGeneratedColumn | ||
} from 'typeorm'; | ||
import { Question } from './question'; | ||
|
||
@Entity() | ||
export class Category extends BaseEntity { | ||
@PrimaryGeneratedColumn('uuid') | ||
id: string; | ||
|
||
@Column() | ||
name: string; | ||
|
||
@Column({ nullable: true }) | ||
number: number; | ||
|
||
@Column({ nullable: true }) | ||
shortName: string; | ||
|
||
@OneToMany(() => Question, (question) => question.category) | ||
questions: Question[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { | ||
BaseEntity, | ||
Column, | ||
Entity, | ||
Index, | ||
JoinTable, | ||
ManyToMany, | ||
ManyToOne, | ||
OneToMany, | ||
PrimaryGeneratedColumn | ||
} from 'typeorm'; | ||
import { Category } from './category'; | ||
import { Resource } from './resource'; | ||
import { Response } from './response'; | ||
|
||
@Entity() | ||
@Index(['category', 'number'], { unique: true }) | ||
export class Question extends BaseEntity { | ||
@PrimaryGeneratedColumn('uuid') | ||
id: string; | ||
|
||
@Column() | ||
name: string; | ||
|
||
@Column() | ||
longForm: string; | ||
|
||
@Column() | ||
number: number; | ||
|
||
@ManyToMany(() => Resource, (resource) => resource.questions) | ||
@JoinTable() | ||
resources: Resource[]; | ||
|
||
@ManyToOne(() => Category, (category) => category.questions) | ||
category: Category; | ||
|
||
@OneToMany(() => Response, (response) => response.question) | ||
responses: Response[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { | ||
BaseEntity, | ||
Column, | ||
Entity, | ||
ManyToMany, | ||
ManyToOne, | ||
PrimaryGeneratedColumn | ||
} from 'typeorm'; | ||
import { Question } from './question'; | ||
|
||
@Entity() | ||
export class Resource extends BaseEntity { | ||
@PrimaryGeneratedColumn('uuid') | ||
id: string; | ||
|
||
@Column() | ||
description: string; | ||
|
||
@Column() | ||
name: string; | ||
|
||
@Column('varchar', { array: true }) | ||
possibleResponses: string[]; | ||
|
||
@Column() | ||
type: string; | ||
|
||
@Column() | ||
url: string; | ||
|
||
@ManyToMany(() => Question, (question) => question.resources) | ||
questions: Question[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { | ||
BaseEntity, | ||
Column, | ||
Entity, | ||
Index, | ||
ManyToOne, | ||
PrimaryGeneratedColumn | ||
} from 'typeorm'; | ||
import { Assessment } from './assessment'; | ||
import { Question } from './question'; | ||
|
||
@Entity() | ||
@Index(['assessment', 'question'], { unique: true }) | ||
export class Response extends BaseEntity { | ||
@PrimaryGeneratedColumn('uuid') | ||
id: string; | ||
|
||
@Column() | ||
text: string; | ||
|
||
@ManyToOne(() => Assessment, (assessment) => assessment.responses) | ||
assessment: Assessment; | ||
|
||
@ManyToOne(() => Question, (question) => question.responses) | ||
question: Question; | ||
} |
Oops, something went wrong.