org.linguafranca.pwdb.kdbx.jaxb.JaxbDatabase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of KeePassJava2-jaxb Show documentation
Show all versions of KeePassJava2-jaxb Show documentation
Contains a JAXB implementation for KDBX.
The newest version!
/*
* Copyright 2015 Jo Rabin
*
* Licensed 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 org.linguafranca.pwdb.kdbx.jaxb;
import org.jetbrains.annotations.NotNull;
import org.linguafranca.pwdb.Credentials;
import org.linguafranca.pwdb.StreamConfiguration;
import org.linguafranca.pwdb.StreamFormat;
import org.linguafranca.pwdb.base.AbstractDatabase;
import org.linguafranca.pwdb.kdbx.KdbxHeader;
import org.linguafranca.pwdb.kdbx.KdbxStreamFormat;
import org.linguafranca.pwdb.kdbx.jaxb.binding.KeePassFile;
import org.linguafranca.pwdb.kdbx.jaxb.binding.ObjectFactory;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Date;
import java.util.Objects;
import java.util.UUID;
/**
* Implementation of {@link org.linguafranca.pwdb.Database} for JAXB.
*
* @author jo
*/
public class JaxbDatabase extends AbstractDatabase {
private final KeePassFile keePassFile;
private final ObjectFactory objectFactory = new ObjectFactory();
private final JaxbGroup root;
private StreamFormat> streamFormat;
public JaxbDatabase() {
this(createEmptyDatabase().getKeePassFile(), null);
}
private JaxbDatabase(KeePassFile keePassFile, StreamFormat> streamFormat) {
this.keePassFile = keePassFile;
this.root = new JaxbGroup(this, keePassFile.getRoot().getGroup());
this.streamFormat = streamFormat;
}
public static JaxbDatabase createEmptyDatabase() {
InputStream inputStream = JaxbDatabase.class.getClassLoader().getResourceAsStream("base.kdbx.xml");
KeePassFile keePassFile = new JaxbSerializableDatabase().load(inputStream).keePassFile;
keePassFile.getRoot().getGroup().setUUID(UUID.randomUUID());
return new JaxbDatabase(keePassFile, null);
}
public static JaxbDatabase load(Credentials creds, InputStream inputStream) throws IOException {
return load(new KdbxStreamFormat(), creds, inputStream);
}
@NotNull
public static JaxbDatabase load(StreamFormat format, Credentials creds, InputStream inputStream) throws IOException {
JaxbSerializableDatabase db = new JaxbSerializableDatabase();
format.load(db, creds, inputStream);
return new JaxbDatabase(db.getKeePassFile(), format);
}
@Override
public void save(Credentials creds, OutputStream outputStream) throws IOException {
if (Objects.isNull(this.streamFormat)){
this.streamFormat = new KdbxStreamFormat(new KdbxHeader(4));
}
save(this.streamFormat, creds, outputStream);
}
public void save(StreamFormat format, Credentials creds, OutputStream outputStream) throws IOException {
keePassFile.getMeta().setGenerator("KeePassJava2-JAXB");
JaxbSerializableDatabase jsd = new JaxbSerializableDatabase(this.keePassFile);
format.save(jsd, creds, outputStream);
setDirty(false);
}
@Override
public JaxbGroup getRootGroup() {
return root;
}
@Override
public JaxbGroup getRecycleBin() {
UUID recycleBinUuid = this.keePassFile.getMeta().getRecycleBinUUID();
JaxbGroup g = findGroup(recycleBinUuid);
if (g == null && !isRecycleBinEnabled()) {
return null;
}
if (g == null) {
g = newGroup("Recycle Bin");
getRootGroup().addGroup(g);
this.keePassFile.getMeta().setRecycleBinUUID(g.getUuid());
this.keePassFile.getMeta().setRecycleBinChanged(new Date());
}
return g;
}
@Override
public boolean isRecycleBinEnabled() {
return this.keePassFile.getMeta().getRecycleBinEnabled();
}
@Override
public void enableRecycleBin(boolean enable) {
this.keePassFile.getMeta().setRecycleBinEnabled(enable);
}
@Override
public JaxbGroup newGroup() {
return new JaxbGroup(this);
}
@Override
public JaxbEntry newEntry() {
return new JaxbEntry(this);
}
@Override
public JaxbIcon newIcon() {
return new JaxbIcon();
}
@Override
public JaxbIcon newIcon(Integer i) {
return new JaxbIcon(i);
}
@Override
public String getDescription() {
return keePassFile.getMeta().getDatabaseDescription();
}
@Override
public void setDescription(String description) {
keePassFile.getMeta().setDatabaseDescription(description);
}
@Override
public boolean shouldProtect(String propertyName) {
switch (propertyName.toLowerCase()) {
case "title":
return keePassFile.getMeta().getMemoryProtection().getProtectTitle();
case "username":
return keePassFile.getMeta().getMemoryProtection().getProtectUserName();
case "password":
return keePassFile.getMeta().getMemoryProtection().getProtectPassword();
case "url":
return keePassFile.getMeta().getMemoryProtection().getProtectURL();
case "notes":
return keePassFile.getMeta().getMemoryProtection().getProtectNotes();
default:
return false;
}
}
@Override
public String getName() {
return keePassFile.getMeta().getDatabaseName();
}
@Override
public void setName(String s) {
keePassFile.getMeta().setDatabaseName(s);
keePassFile.getMeta().setDatabaseNameChanged(new Date());
}
public KeePassFile getKeePassFile() {
return keePassFile;
}
ObjectFactory getObjectFactory() {
return objectFactory;
}
public void createBinary(byte[] value, Integer index) {
JaxbSerializableDatabase.addBinary(getKeePassFile(), getObjectFactory(), index, value);
}
@SuppressWarnings("unchecked")
@Override
public StreamFormat> getStreamFormat(){
return streamFormat;
}
}