io.uhndata.cards.patients.internal.DraftsAnswersCleanupScheduler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cards-patient-portal Show documentation
Show all versions of cards-patient-portal Show documentation
Support for patients to fill in their forms
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package io.uhndata.cards.patients.internal;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.apache.sling.commons.scheduler.ScheduleOptions;
import org.apache.sling.commons.scheduler.Scheduler;
import org.osgi.service.component.ComponentContext;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.uhndata.cards.patients.api.PatientAccessConfiguration;
import io.uhndata.cards.resolverProvider.ThreadResourceResolverProvider;
/**
* Schedule the cleanup of patient draft answers.
*
* @version $Id: 0ff04a00534376aba3a44d524b444fa70ac11801 $
* @since 0.9.6
*/
@Component(immediate = true)
public class DraftsAnswersCleanupScheduler
{
/** Default log. */
private static final Logger LOGGER = LoggerFactory.getLogger(DraftsAnswersCleanupScheduler.class);
private static final String SCHEDULER_JOB_NAME = "DraftsAnswersCleanup";
/** Provides access to resources. */
@Reference
private ResourceResolverFactory resolverFactory;
/** For sharing the resource resolver with other services. */
@Reference
private ThreadResourceResolverProvider rrp;
/** Grab details on the number of days draft responses from patients are kept. */
@Reference
private PatientAccessConfiguration patientAccessConfiguration;
/** The scheduler for rescheduling jobs. */
@Reference
private Scheduler scheduler;
@Activate
protected void activate(final ComponentContext componentContext) throws Exception
{
try {
// Every night at midnight
final ScheduleOptions options = this.scheduler.EXPR("0 0 0 * * ? *");
options.name(SCHEDULER_JOB_NAME);
options.canRunConcurrently(false);
final Runnable cleanupJob = new DraftsAnswersCleanupTask(this.resolverFactory, this.rrp,
this.patientAccessConfiguration);
this.scheduler.schedule(cleanupJob, options);
} catch (final Exception e) {
LOGGER.error("DraftsAnswersCleanup failed to schedule: {}", e.getMessage(), e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy