-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add task for moving a problem to a chapter
- Loading branch information
Showing
7 changed files
with
163 additions
and
0 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
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
96 changes: 96 additions & 0 deletions
96
.../judgels-server-app/src/main/java/judgels/jerahmeel/problem/MoveProblemToChapterTask.java
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,96 @@ | ||
package judgels.jerahmeel.problem; | ||
|
||
import io.dropwizard.hibernate.UnitOfWork; | ||
import io.dropwizard.servlets.tasks.Task; | ||
import java.io.PrintWriter; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
import judgels.jerahmeel.persistence.ChapterDao; | ||
import judgels.jerahmeel.persistence.ChapterModel; | ||
import judgels.jerahmeel.persistence.ChapterProblemDao; | ||
import judgels.jerahmeel.persistence.ChapterProblemModel; | ||
import judgels.jerahmeel.persistence.ProblemSetProblemDao; | ||
import judgels.jerahmeel.persistence.ProblemSetProblemModel; | ||
import judgels.jerahmeel.persistence.ProgrammingSubmissionDao; | ||
import judgels.sandalphon.api.problem.ProblemType; | ||
import judgels.sandalphon.persistence.ProblemDao; | ||
import judgels.sandalphon.persistence.ProblemModel; | ||
|
||
public class MoveProblemToChapterTask extends Task { | ||
private final ProblemDao problemDao; | ||
private final ChapterDao chapterDao; | ||
private final ChapterProblemDao chapterProblemDao; | ||
private final ProblemSetProblemDao problemSetProblemDao; | ||
private final ProgrammingSubmissionDao programmingSubmissionDao; | ||
|
||
public MoveProblemToChapterTask( | ||
ProblemDao problemDao, | ||
ChapterDao chapterDao, | ||
ChapterProblemDao chapterProblemDao, | ||
ProblemSetProblemDao problemSetProblemDao, | ||
ProgrammingSubmissionDao programmingSubmissionDao) { | ||
|
||
super("jerahmeel-move-problem-to-chapter"); | ||
|
||
this.problemDao = problemDao; | ||
this.chapterDao = chapterDao; | ||
this.chapterProblemDao = chapterProblemDao; | ||
this.problemSetProblemDao = problemSetProblemDao; | ||
this.programmingSubmissionDao = programmingSubmissionDao; | ||
} | ||
|
||
@Override | ||
@UnitOfWork | ||
public void execute(Map<String, List<String>> parameters, PrintWriter out) { | ||
List<String> problemSlugs = parameters.get("problemSlug"); | ||
if (problemSlugs == null || problemSlugs.isEmpty()) { | ||
return; | ||
} | ||
String problemSlug = problemSlugs.get(0); | ||
|
||
List<String> toChapterJids = parameters.get("toChapterJid"); | ||
if (toChapterJids == null || toChapterJids.isEmpty()) { | ||
return; | ||
} | ||
String toChapterJid = toChapterJids.get(0); | ||
|
||
List<String> aliases = parameters.get("alias"); | ||
if (aliases == null || aliases.isEmpty()) { | ||
return; | ||
} | ||
String alias = aliases.get(0); | ||
|
||
Optional<ProblemModel> maybeProblemModel = problemDao.selectBySlug(problemSlug); | ||
if (maybeProblemModel.isEmpty()) { | ||
return; | ||
} | ||
String problemJid = maybeProblemModel.get().jid; | ||
|
||
Optional<ChapterModel> maybeChapterModel = chapterDao.selectByJid(toChapterJid); | ||
if (maybeChapterModel.isEmpty()) { | ||
return; | ||
} | ||
|
||
Optional<ChapterProblemModel> maybeChapterProblemModel = chapterProblemDao.selectByProblemJid(problemJid); | ||
if (maybeChapterProblemModel.isPresent()) { | ||
ChapterProblemModel model = maybeChapterProblemModel.get(); | ||
|
||
model.chapterJid = toChapterJid; | ||
model.alias = alias; | ||
chapterProblemDao.update(model); | ||
} else { | ||
ChapterProblemModel model = new ChapterProblemModel(); | ||
model.chapterJid = toChapterJid; | ||
model.alias = alias; | ||
model.problemJid = problemJid; | ||
model.type = ProblemType.PROGRAMMING.name(); | ||
chapterProblemDao.insert(model); | ||
} | ||
|
||
List<ProblemSetProblemModel> problemSetProblemModels = problemSetProblemDao.selectAllByProblemJid(problemJid); | ||
problemSetProblemModels.forEach(problemSetProblemDao::delete); | ||
|
||
programmingSubmissionDao.updateContainer(problemJid, toChapterJid); | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...ls-backends/judgels-server-app/src/main/java/judgels/jerahmeel/problem/ProblemModule.java
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,42 @@ | ||
package judgels.jerahmeel.problem; | ||
|
||
import dagger.Module; | ||
import dagger.Provides; | ||
import io.dropwizard.hibernate.UnitOfWorkAwareProxyFactory; | ||
import javax.inject.Singleton; | ||
import judgels.jerahmeel.persistence.ChapterDao; | ||
import judgels.jerahmeel.persistence.ChapterProblemDao; | ||
import judgels.jerahmeel.persistence.ProblemSetProblemDao; | ||
import judgels.jerahmeel.persistence.ProgrammingSubmissionDao; | ||
import judgels.sandalphon.persistence.ProblemDao; | ||
|
||
@Module | ||
public class ProblemModule { | ||
private ProblemModule() {} | ||
|
||
@Provides | ||
@Singleton | ||
static MoveProblemToChapterTask problemMoveToChapterTask( | ||
UnitOfWorkAwareProxyFactory unitOfWorkAwareProxyFactory, | ||
ProblemDao problemDao, | ||
ChapterDao chapterDao, | ||
ChapterProblemDao chapterProblemDao, | ||
ProblemSetProblemDao problemSetProblemDao, | ||
ProgrammingSubmissionDao programmingSubmissionDao) { | ||
|
||
return unitOfWorkAwareProxyFactory.create( | ||
MoveProblemToChapterTask.class, | ||
new Class<?>[] { | ||
ProblemDao.class, | ||
ChapterDao.class, | ||
ChapterProblemDao.class, | ||
ProblemSetProblemDao.class, | ||
ProgrammingSubmissionDao.class}, | ||
new Object[] { | ||
problemDao, | ||
chapterDao, | ||
chapterProblemDao, | ||
problemSetProblemDao, | ||
programmingSubmissionDao}); | ||
} | ||
} |
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