1
1
import jsYaml from 'js-yaml' ;
2
2
import _ from 'lodash' ;
3
3
4
- import { knex } from '../../../../db/knex-database-connection.js' ;
5
4
import { Answer } from '../../../evaluation/domain/models/Answer.js' ;
6
5
import { DomainTransaction } from '../../domain/DomainTransaction.js' ;
7
6
import { ChallengeAlreadyAnsweredError , NotFoundError } from '../../domain/errors.js' ;
@@ -38,7 +37,8 @@ const COLUMNS = Object.freeze([
38
37
] ) ;
39
38
40
39
const get = async function ( id ) {
41
- const answerDTO = await knex . select ( COLUMNS ) . from ( 'answers' ) . where ( { id } ) . first ( ) ;
40
+ const knexConn = DomainTransaction . getConnection ( ) ;
41
+ const answerDTO = await knexConn . select ( COLUMNS ) . from ( 'answers' ) . where ( { id } ) . first ( ) ;
42
42
43
43
if ( ! answerDTO ) {
44
44
throw new NotFoundError ( `Not found answer for ID ${ id } ` ) ;
@@ -48,7 +48,8 @@ const get = async function (id) {
48
48
} ;
49
49
50
50
const findByChallengeAndAssessment = async function ( { challengeId, assessmentId } ) {
51
- const answerDTO = await knex
51
+ const knexConn = DomainTransaction . getConnection ( ) ;
52
+ const answerDTO = await knexConn
52
53
. select ( COLUMNS )
53
54
. from ( 'answers' )
54
55
. where ( { challengeId, assessmentId } )
@@ -63,14 +64,16 @@ const findByChallengeAndAssessment = async function ({ challengeId, assessmentId
63
64
} ;
64
65
65
66
const findByAssessment = async function ( assessmentId ) {
66
- const answerDTOs = await knex . select ( COLUMNS ) . from ( 'answers' ) . where ( { assessmentId } ) . orderBy ( 'createdAt' ) ;
67
+ const knexConn = DomainTransaction . getConnection ( ) ;
68
+ const answerDTOs = await knexConn . select ( COLUMNS ) . from ( 'answers' ) . where ( { assessmentId } ) . orderBy ( 'createdAt' ) ;
67
69
const answerDTOsWithoutDuplicate = _ . uniqBy ( answerDTOs , 'challengeId' ) ;
68
70
69
71
return _toDomainArray ( answerDTOsWithoutDuplicate ) ;
70
72
} ;
71
73
72
74
const findByAssessmentExcludingChallengeIds = async function ( { assessmentId, excludedChallengeIds = [ ] } ) {
73
- const answerDTOs = await knex
75
+ const knexConn = DomainTransaction . getConnection ( ) ;
76
+ const answerDTOs = await knexConn
74
77
. with ( 'all-first-answers' , ( qb ) => {
75
78
qb . select ( '*' )
76
79
. distinctOn ( 'challengeId' , 'assessmentId' )
@@ -86,7 +89,8 @@ const findByAssessmentExcludingChallengeIds = async function ({ assessmentId, ex
86
89
} ;
87
90
88
91
const findChallengeIdsFromAnswerIds = async function ( ids ) {
89
- return knex . distinct ( ) . pluck ( 'challengeId' ) . from ( 'answers' ) . whereInArray ( 'id' , ids ) ;
92
+ const knexConn = DomainTransaction . getConnection ( ) ;
93
+ return knexConn . distinct ( ) . pluck ( 'challengeId' ) . from ( 'answers' ) . whereInArray ( 'id' , ids ) ;
90
94
} ;
91
95
92
96
const save = async function ( { answer } ) {
0 commit comments