/src/main/java/org/atlasapi/equiv/OddJobRandomTaskModule.java
https://github.com/atlasapi/atlas · Java · 69 lines · 58 code · 11 blank · 0 comment · 0 complexity · cc236b91f5cee198694f20a8c5badc50 MD5 · raw file
- package org.atlasapi.equiv;
- import javax.annotation.PostConstruct;
- import org.atlasapi.equiv.update.tasks.ScheduleTaskProgressStore;
- import org.atlasapi.media.entity.Publisher;
- import org.atlasapi.persistence.audit.NoLoggingPersistenceAuditLog;
- import org.atlasapi.persistence.content.ContentResolver;
- import org.atlasapi.persistence.content.listing.ContentLister;
- import org.atlasapi.persistence.content.people.PersonStore;
- import org.atlasapi.persistence.lookup.mongo.MongoLookupEntryStore;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import com.metabroadcast.common.persistence.mongo.DatabasedMongo;
- import com.metabroadcast.common.scheduling.RepetitionRules;
- import com.metabroadcast.common.scheduling.SimpleScheduler;
- import com.mongodb.ReadPreference;
- @Configuration
- public class OddJobRandomTaskModule {
- private @Autowired ContentLister lister;
- private @Autowired ContentResolver resolver;
- private @Autowired DatabasedMongo mongo;
- private @Autowired ScheduleTaskProgressStore progressStore;
- private @Autowired SimpleScheduler scheduler;
- private @Autowired PersonStore personStore;
- @PostConstruct
- public void setup() {
- scheduler.schedule(childRefUpdateTask(), RepetitionRules.NEVER);
- scheduler.schedule(personRefUpdateTask(), RepetitionRules.NEVER);
- scheduler.schedule(personLookupPopulationTask(), RepetitionRules.NEVER);
- scheduler.schedule(lookupRefUpdateTask(), RepetitionRules.NEVER);
- }
-
- @Bean
- public ChildRefUpdateController childRefUpdateTaskController() {
- return new ChildRefUpdateController(childRefUpdateTask(), resolver);
- }
-
- @Bean
- public ChildRefUpdateTask childRefUpdateTask() {
- return new ChildRefUpdateTask(lister, resolver, mongo, progressStore)
- .forPublishers(Publisher.all().toArray(new Publisher[]{}));
- }
-
- @Bean
- public PersonRefUpdateTask personRefUpdateTask() {
- return new PersonRefUpdateTask(lister, mongo, progressStore)
- .forPublishers(Publisher.RADIO_TIMES, Publisher.BBC, Publisher.PA);
- }
-
- @Bean
- public PersonLookupPopulationTask personLookupPopulationTask() {
- return new PersonLookupPopulationTask(mongo.collection("people"),
- new MongoLookupEntryStore(mongo.collection("peopleLookup"),
- new NoLoggingPersistenceAuditLog(),
- ReadPreference.primary()));
- }
-
- @Bean
- public LookupRefUpdateTask lookupRefUpdateTask() {
- return new LookupRefUpdateTask(mongo.collection("lookup"),
- mongo.collection("scheduling"));
- }
- }