]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms/src/org/argeo/cms/internal/backup/OpenLdapBackup.java
Adapt to changes in CMS framework
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / internal / backup / OpenLdapBackup.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.cms.internal.backup;
17
18 import org.apache.commons.vfs2.FileObject;
19 import org.argeo.ArgeoException;
20
21 /** Backups an OpenLDAP server using slapcat */
22 public class OpenLdapBackup extends OsCallBackup {
23 private String slapcatLocation = "/usr/sbin/slapcat";
24 private String slapdConfLocation = "/etc/openldap/slapd.conf";
25 private String baseDn;
26
27 public OpenLdapBackup() {
28 super();
29 }
30
31 public OpenLdapBackup(String baseDn) {
32 super();
33 this.baseDn = baseDn;
34 }
35
36 @Override
37 public void writeBackup(FileObject targetFo) {
38 if (baseDn == null)
39 throw new ArgeoException("Base DN must be set");
40
41 if (getCommand() == null)
42 setCommand(slapcatLocation
43 + " -f ${slapdConfLocation} -b '${baseDn}'");
44 getVariables().put("slapdConfLocation", slapdConfLocation);
45 getVariables().put("baseDn", baseDn);
46
47 super.writeBackup(targetFo);
48 }
49
50 public void setSlapcatLocation(String slapcatLocation) {
51 this.slapcatLocation = slapcatLocation;
52 }
53
54 public void setSlapdConfLocation(String slapdConfLocation) {
55 this.slapdConfLocation = slapdConfLocation;
56 }
57
58 public void setBaseDn(String baseDn) {
59 this.baseDn = baseDn;
60 }
61
62 }