@@ -10,6 +10,10 @@ import { BadRequestException } from '@nestjs/common';
10
10
export class ContestService {
11
11
constructor ( private readonly prisma : PrismaService ) { }
12
12
13
+ /**
14
+ * It fetches all the contests from clist.by and sorts them into different categories according to their start date.
15
+ * @param {string } token - The token that is generated when a user logs in.
16
+ */
13
17
async getContests ( token : string ) : Promise < GetContestOutput > {
14
18
await decode ( token , this . prisma ) ;
15
19
try {
@@ -18,21 +22,46 @@ export class ContestService {
18
22
) ;
19
23
const contests : ClistContest [ ] = res . data . objects ;
20
24
const result : GetContestOutput = {
25
+ active : [ ] ,
21
26
today : [ ] ,
22
27
tomorrow : [ ] ,
23
28
week : [ ] ,
24
29
upcoming : [ ] ,
25
30
} ;
31
+ contests . sort (
32
+ ( a , b ) => new Date ( a . start ) . getTime ( ) - new Date ( b . start ) . getTime ( ) ,
33
+ ) ;
26
34
for ( const contest of contests ) {
27
35
contest . start = new Date ( contest . start ) ;
28
- contest . end = new Date ( contest . end ) ;
29
- if ( contest . start . getDate ( ) === new Date ( ) . getDate ( ) ) {
36
+ const today = new Date ( ) ;
37
+ const tomorrow = new Date ( ) ;
38
+ const week = new Date ( ) ;
39
+ tomorrow . setDate ( tomorrow . getDate ( ) + 1 ) ;
40
+ week . setDate ( week . getDate ( ) + 7 ) ;
41
+ let isActive = false ;
42
+ if ( contest . start < today ) {
43
+ isActive = true ;
44
+ result . active . push ( contest ) ;
45
+ }
46
+ if (
47
+ contest . start . getDate ( ) === today . getDate ( ) &&
48
+ contest . start . getMonth ( ) === today . getMonth ( ) &&
49
+ contest . start . getFullYear ( ) === today . getFullYear ( )
50
+ )
30
51
result . today . push ( contest ) ;
31
- } else if ( contest . start . getDate ( ) === new Date ( ) . getDate ( ) + 1 ) {
52
+ else if (
53
+ contest . start . getDate ( ) === tomorrow . getDate ( ) &&
54
+ contest . start . getMonth ( ) === tomorrow . getMonth ( ) &&
55
+ contest . start . getFullYear ( ) === tomorrow . getFullYear ( )
56
+ )
32
57
result . tomorrow . push ( contest ) ;
33
- } else if ( contest . start . getDate ( ) <= new Date ( ) . getDate ( ) + 7 ) {
58
+ else if (
59
+ contest . start . getDate ( ) <= week . getDate ( ) &&
60
+ contest . start . getMonth ( ) <= week . getMonth ( ) &&
61
+ contest . start . getFullYear ( ) <= week . getFullYear ( )
62
+ )
34
63
result . week . push ( contest ) ;
35
- } else result . upcoming . push ( contest ) ;
64
+ else if ( ! isActive ) result . upcoming . push ( contest ) ;
36
65
}
37
66
return result ;
38
67
} catch ( error ) {
0 commit comments