Update Batch from Testing
[aaf/authz.git] / auth / auth-batch / src / main / java / org / onap / aaf / auth / batch / actions / CredPunt.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.batch.actions;
23
24 import java.io.IOException;
25 import java.util.Date;
26 import java.util.List;
27
28 import org.onap.aaf.auth.dao.cass.CredDAO;
29 import org.onap.aaf.auth.env.AuthzTrans;
30 import org.onap.aaf.auth.layer.Result;
31 import org.onap.aaf.misc.env.APIException;
32 import org.onap.aaf.misc.env.util.Chrono;
33
34 import com.datastax.driver.core.Cluster;
35
36 public class CredPunt extends ActionPuntDAO<CredDAO.Data,Void,String> {
37     
38     public CredPunt(AuthzTrans trans, Cluster cluster, int months, int range, boolean dryRun) throws IOException, APIException {
39         super(trans,cluster,months, dryRun);
40     }
41
42     public CredPunt(AuthzTrans trans, ActionDAO<?,?,?> adao, int months, int range) throws IOException {
43         super(trans, adao, months);
44     }
45
46     public Result<Void> exec(AuthzTrans trans, CredDAO.Data cdd,String text) {
47         Result<Void> rv = null;
48         Result<List<CredDAO.Data>> read = q.credDAO.read(trans, cdd);
49         if (read.isOKhasData()) {
50             for (CredDAO.Data data : read.value) {
51                 Date from = data.expires;
52                 data.expires = puntDate(from);
53                 if (data.expires.compareTo(from)<=0) {
54                     trans.debug().printf("Error: %s is before %s", Chrono.dateOnlyStamp(data.expires), Chrono.dateOnlyStamp(from));
55                 } else {
56                     if (dryRun) {
57                         trans.info().log("Would Update Cred",cdd.id, CredPrint.type(cdd.type), "from",Chrono.dateOnlyStamp(from),"to",Chrono.dateOnlyStamp(data.expires));
58                     } else {
59                         trans.info().log("Updated Cred",cdd.id, CredPrint.type(cdd.type), "from",Chrono.dateOnlyStamp(from),"to",Chrono.dateOnlyStamp(data.expires));
60                         rv = q.credDAO.update(trans, data);
61                     }
62                 }
63             }
64         }
65         if (rv==null) {
66             rv=Result.err(read);
67         }
68         return rv;
69     }
70 }