Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
examsAndAdmissions
Commits
178666da
Commit
178666da
authored
1 year ago
by
jay pratap singh
Browse files
Options
Download
Patches
Plain Diff
adding code for pending verifications of enrolments
parent
0a60efc1
main
1 merge request
!8
adding code for pending verifications of enrolments
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
upsmf-entity/pom.xml
+8
-0
upsmf-entity/pom.xml
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/StudentController.java
+25
-2
...psmf/examsAndAdmissions/controller/StudentController.java
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/Student.java
+5
-0
...a/com/tarento/upsmf/examsAndAdmissions/model/Student.java
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/VerificationStatus.java
+1
-1
...to/upsmf/examsAndAdmissions/model/VerificationStatus.java
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/dto/StudentDto.java
+2
-0
...arento/upsmf/examsAndAdmissions/model/dto/StudentDto.java
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/repository/StudentRepository.java
+4
-0
...psmf/examsAndAdmissions/repository/StudentRepository.java
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/service/StudentService.java
+18
-0
...ento/upsmf/examsAndAdmissions/service/StudentService.java
with
63 additions
and
3 deletions
+63
-3
upsmf-entity/pom.xml
+
8
−
0
View file @
178666da
...
...
@@ -92,6 +92,14 @@
<artifactId>
modelmapper
</artifactId>
<version>
3.0.0
</version>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
</dependency>
<dependency>
<groupId>
ch.qos.logback
</groupId>
<artifactId>
logback-classic
</artifactId>
</dependency>
<dependency>
<groupId>
org.upsmf
</groupId>
<artifactId>
upsmf-es-utils
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/StudentController.java
+
25
−
2
View file @
178666da
...
...
@@ -8,6 +8,8 @@ import org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
javax.validation.Valid
;
import
java.io.IOException
;
...
...
@@ -17,7 +19,7 @@ import java.util.Optional;
@RestController
@RequestMapping
(
"/students"
)
public
class
StudentController
{
private
final
Logger
logger
=
LoggerFactory
.
getLogger
(
StudentController
.
class
);
@Autowired
private
StudentService
studentService
;
...
...
@@ -56,7 +58,27 @@ public class StudentController {
return
ResponseEntity
.
badRequest
().
build
();
}
}
@PutMapping
(
"/closePendingFor14Days"
)
public
ResponseEntity
<?>
updateStudentStatusToClosed
()
{
try
{
List
<
Student
>
updatedStudents
=
studentService
.
updateStudentStatusToClosed
();
return
ResponseEntity
.
ok
(
updatedStudents
);
}
catch
(
Exception
e
)
{
logger
.
error
(
"Error updating student status based on days"
,
e
);
return
ResponseEntity
.
status
(
HttpStatus
.
INTERNAL_SERVER_ERROR
).
body
(
"An error occurred while updating student status."
);
}
}
@GetMapping
(
"/pendingFor21Days"
)
public
ResponseEntity
<?>
getStudentsPendingFor21Days
()
{
try
{
List
<
Student
>
students
=
studentService
.
getStudentsPendingForMoreThan21Days
();
return
ResponseEntity
.
ok
(
students
);
}
catch
(
Exception
e
)
{
logger
.
error
(
"Error fetching students pending for 21 days"
,
e
);
return
ResponseEntity
.
status
(
HttpStatus
.
INTERNAL_SERVER_ERROR
).
body
(
"An error occurred while fetching students."
);
}
}
@DeleteMapping
(
"/{id}"
)
public
ResponseEntity
<
Void
>
deleteStudent
(
@PathVariable
Long
id
)
{
try
{
...
...
@@ -68,9 +90,10 @@ public class StudentController {
}
@PutMapping
(
"/{studentId}/verify"
)
public
ResponseEntity
<
Student
>
verifyStudent
(
@PathVariable
Long
studentId
,
@RequestParam
(
"status"
)
VerificationStatus
status
)
{
public
ResponseEntity
<
Student
>
verifyStudent
(
@PathVariable
Long
studentId
,
@RequestParam
(
"status"
)
VerificationStatus
status
,
@RequestParam
(
"remarks"
)
String
remarks
)
{
Student
student
=
studentService
.
findById
(
studentId
);
student
.
setVerificationStatus
(
status
);
student
.
setAdminRemarks
(
remarks
);
studentService
.
save
(
student
);
return
ResponseEntity
.
ok
(
student
);
}
...
...
This diff is collapsed.
Click to expand it.
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/Student.java
+
5
−
0
View file @
178666da
...
...
@@ -51,8 +51,13 @@ public class Student {
private
String
highSchoolYearOfPassing
;
private
String
intermediateRollNo
;
private
String
intermediateYearOfPassing
;
@Enumerated
(
EnumType
.
STRING
)
private
VerificationStatus
verificationStatus
=
VerificationStatus
.
PENDING
;
private
String
provisionalEnrollmentNumber
;
private
String
adminRemarks
;
private
LocalDate
enrollmentDate
;
private
LocalDate
verificationDate
;
@ManyToOne
@JoinColumn
(
name
=
"course_id"
)
private
Course
course
;
...
...
This diff is collapsed.
Click to expand it.
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/VerificationStatus.java
+
1
−
1
View file @
178666da
package
com.tarento.upsmf.examsAndAdmissions.model
;
public
enum
VerificationStatus
{
PENDING
,
VERIFIED
,
REJECTED
PENDING
,
VERIFIED
,
REJECTED
,
CLOSED
}
This diff is collapsed.
Click to expand it.
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/dto/StudentDto.java
+
2
−
0
View file @
178666da
...
...
@@ -39,6 +39,8 @@ public class StudentDto {
private
String
highSchoolYearOfPassing
;
private
String
intermediateRollNo
;
private
String
intermediateYearOfPassing
;
private
String
adminRemarks
;
private
MultipartFile
highSchoolMarksheet
;
private
MultipartFile
highSchoolCertificate
;
...
...
This diff is collapsed.
Click to expand it.
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/repository/StudentRepository.java
+
4
−
0
View file @
178666da
...
...
@@ -5,10 +5,14 @@ import com.tarento.upsmf.examsAndAdmissions.model.VerificationStatus;
import
org.springframework.data.jpa.repository.JpaRepository
;
import
org.springframework.stereotype.Repository
;
import
java.time.LocalDate
;
import
java.util.List
;
@Repository
public
interface
StudentRepository
extends
JpaRepository
<
Student
,
Long
>
{
List
<
Student
>
findByVerificationStatus
(
VerificationStatus
status
);
List
<
Student
>
findByVerificationDateBeforeAndVerificationStatusNot
(
LocalDate
date
,
VerificationStatus
status
);
List
<
Student
>
findByVerificationDateBeforeAndVerificationStatus
(
LocalDate
date
,
VerificationStatus
status
);
}
This diff is collapsed.
Click to expand it.
upsmf-entity/src/main/java/com/tarento/upsmf/examsAndAdmissions/service/StudentService.java
+
18
−
0
View file @
178666da
...
...
@@ -21,6 +21,7 @@ import java.io.IOException;
import
java.nio.file.Files
;
import
java.nio.file.Path
;
import
java.nio.file.Paths
;
import
java.time.LocalDate
;
import
java.util.List
;
import
java.util.Optional
;
import
java.util.UUID
;
...
...
@@ -130,6 +131,23 @@ public class StudentService {
return
studentRepository
.
save
(
existingStudent
);
}
public
List
<
Student
>
updateStudentStatusToClosed
()
{
LocalDate
cutoffDate
=
LocalDate
.
now
().
minusDays
(
14
);
List
<
Student
>
studentsToClose
=
studentRepository
.
findByVerificationDateBeforeAndVerificationStatusNot
(
cutoffDate
,
VerificationStatus
.
CLOSED
);
logger
.
info
(
"Students found to close: "
+
studentsToClose
.
size
());
for
(
Student
student
:
studentsToClose
)
{
student
.
setVerificationStatus
(
VerificationStatus
.
CLOSED
);
}
return
studentRepository
.
saveAll
(
studentsToClose
);
}
public
List
<
Student
>
getStudentsPendingForMoreThan21Days
()
{
LocalDate
twentyOneDaysAgo
=
LocalDate
.
now
().
minusDays
(
21
);
return
studentRepository
.
findByVerificationDateBeforeAndVerificationStatus
(
twentyOneDaysAgo
,
VerificationStatus
.
PENDING
);
}
private
void
deleteFile
(
String
filePath
)
{
if
(
filePath
==
null
||
filePath
.
isEmpty
())
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets