summaryrefslogtreecommitdiffstats
path: root/authz-batch/src/main/java/com/att/authz/actions/URPunt.java
blob: e76852f0ef20527e11f4931c23a102e692996014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*******************************************************************************
 * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
 *******************************************************************************/
package com.att.authz.actions;

import java.io.IOException;
import java.util.Date;
import java.util.List;

import com.att.authz.env.AuthzTrans;
import com.att.authz.helpers.UserRole;
import com.att.authz.layer.Result;
import com.att.dao.aaf.cass.UserRoleDAO;
import com.att.dao.aaf.cass.UserRoleDAO.Data;
import org.onap.aaf.inno.env.APIException;
import org.onap.aaf.inno.env.util.Chrono;
import com.datastax.driver.core.Cluster;

public class URPunt extends ActionPuntDAO<UserRole,Void> {
	public URPunt(AuthzTrans trans, Cluster cluster, int months, int range) throws APIException, IOException {
		super(trans,cluster, months, range);
	}

	public URPunt(AuthzTrans trans, ActionDAO<?,?> adao, int months, int range) {
		super(trans, adao, months, range);
	}

	public Result<Void> exec(AuthzTrans trans, UserRole ur) {
		Result<List<Data>> read = q.userRoleDAO.read(trans, ur.user, ur.role);
		if(read.isOK()) {
			for(UserRoleDAO.Data data : read.value) {
				Date from = data.expires;
				data.expires = puntDate();
				if(data.expires.before(from)) {
					trans.error().printf("Error: %s is before %s", Chrono.dateOnlyStamp(data.expires), Chrono.dateOnlyStamp(from));
				} else {
					q.userRoleDAO.update(trans, data);
					trans.info().log("Updated User",ur.user,"and Role", ur.role, "from",Chrono.dateOnlyStamp(from),"to",Chrono.dateOnlyStamp(data.expires));
				}
			}
			return Result.ok();
		} else {
			return Result.err(read);
		}
	}
}