1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 10:49:24 +02:00
FBReaderJ/src/org/geometerplus/fbreader/network/NetworkBookItem.java

207 lines
6.8 KiB
Java

/*
* Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
package org.geometerplus.fbreader.network;
import java.util.*;
import java.io.File;
import org.geometerplus.zlibrary.core.network.ZLNetworkException;
import org.geometerplus.fbreader.network.urlInfo.*;
import org.geometerplus.fbreader.network.authentication.NetworkAuthenticationManager;
public class NetworkBookItem extends NetworkItem {
public static class AuthorData implements Comparable<AuthorData> {
public final String DisplayName;
public final String SortKey;
/**
* Creates new AuthorData instance.
*
* @param displayName author's name. Must be not <code>null</code>.
* @param sortKey string that defines sorting order of book's authors.
*/
public AuthorData(String displayName, String sortKey) {
DisplayName = displayName.intern();
SortKey = sortKey != null ? sortKey.intern() : DisplayName.toLowerCase().intern();
}
public int compareTo(AuthorData data) {
final int key = SortKey.compareTo(data.SortKey);
if (key != 0) {
return key;
}
return DisplayName.compareTo(data.DisplayName);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof AuthorData)) {
return false;
}
final AuthorData data = (AuthorData) o;
return SortKey.equals(data.SortKey) && DisplayName.equals(data.DisplayName);
}
@Override
public int hashCode() {
return SortKey.hashCode() + DisplayName.hashCode();
}
}
public final int Index;
public final String Id;
//public final String Language;
//public final String Date;
public final LinkedList<AuthorData> Authors;
public final LinkedList<String> Tags;
public final String SeriesTitle;
public final float IndexInSeries;
/**
* Creates new NetworkBookItem instance.
*
* @param link corresponding NetworkLink object. Must be not <code>null</code>.
* @param id string that uniquely identifies this book item. Must be not <code>null</code>.
* @param index sequence number of this book in corresponding catalog
* @param title title of this book. Must be not <code>null</code>.
* @param summary description of this book. Can be <code>null</code>.
* //@param langage string specifies language of this book. Can be <code>null</code>.
* //@param date string specifies release date of this book. Can be <code>null</code>.
* @param authors list of book authors. Should contain at least one author.
* @param tags list of book tags. Must be not <code>null</code> (can be empty).
* @param seriesTitle title of this book's series. Can be <code>null</code>.
* @param indexInSeries sequence number of this book within book's series. Ignored if seriesTitle is <code>null</code>.
* @param urls list of urls related to this book. Can be <code>null</code>.
*/
public NetworkBookItem(INetworkLink link, String id, int index,
String title, String summary, /*String language, String date,*/
List<AuthorData> authors, List<String> tags, String seriesTitle, float indexInSeries,
UrlInfoCollection urls) {
super(link, title, summary, urls);
Index = index;
Id = id;
//Language = language;
//Date = date;
Authors = new LinkedList<AuthorData>(authors);
Tags = new LinkedList<String>(tags);
SeriesTitle = seriesTitle;
IndexInSeries = indexInSeries;
}
public boolean isFullyLoaded() {
return true;
}
public void loadFullInformation() throws ZLNetworkException {
}
public BookUrlInfo reference(UrlInfo.Type type) {
BookUrlInfo reference = null;
for (UrlInfo r : getAllInfos(type)) {
if (!(r instanceof BookUrlInfo)) {
continue;
}
final BookUrlInfo br = (BookUrlInfo)r;
if (reference == null || br.BookFormat > reference.BookFormat) {
reference = br;
}
}
if (reference == null && type == UrlInfo.Type.Book) {
reference = this.reference(UrlInfo.Type.BookConditional);
if (reference != null) {
NetworkAuthenticationManager authManager = Link.authenticationManager();
if (authManager == null || authManager.needPurchase(this)) {
return null;
}
reference = authManager.downloadReference(this);
}
}
if (reference == null &&
type == UrlInfo.Type.Book &&
this.reference(UrlInfo.Type.BookBuy) == null &&
this.reference(UrlInfo.Type.BookBuyInBrowser) == null) {
reference = this.reference(UrlInfo.Type.BookFullOrDemo);
}
if (reference == null &&
type == UrlInfo.Type.BookDemo &&
(this.reference(UrlInfo.Type.BookBuy) != null ||
this.reference(UrlInfo.Type.BookBuyInBrowser) != null)) {
reference = this.reference(UrlInfo.Type.BookFullOrDemo);
}
return reference;
}
public String localCopyFileName() {
final boolean hasBuyReference =
this.reference(UrlInfo.Type.BookBuy) != null ||
this.reference(UrlInfo.Type.BookBuyInBrowser) != null;
BookUrlInfo reference = null;
String fileName = null;
for (UrlInfo r : getAllInfos()) {
if (!(r instanceof BookUrlInfo)) {
continue;
}
final BookUrlInfo br = (BookUrlInfo)r;
final UrlInfo.Type type = br.InfoType;
if ((type == UrlInfo.Type.Book ||
type == UrlInfo.Type.BookConditional ||
(!hasBuyReference && type == UrlInfo.Type.BookFullOrDemo)) &&
(reference == null || br.BookFormat > reference.BookFormat)) {
String name = br.localCopyFileName(UrlInfo.Type.Book);
if (name != null) {
reference = br;
fileName = name;
}
}
}
return fileName;
}
public void removeLocalFiles() {
final boolean hasBuyReference =
this.reference(UrlInfo.Type.BookBuy) != null ||
this.reference(UrlInfo.Type.BookBuyInBrowser) != null;
for (UrlInfo r : getAllInfos()) {
if (!(r instanceof BookUrlInfo)) {
continue;
}
final BookUrlInfo br = (BookUrlInfo)r;
final UrlInfo.Type type = br.InfoType;
if (type == UrlInfo.Type.Book ||
type == UrlInfo.Type.BookConditional ||
(!hasBuyReference && type == UrlInfo.Type.BookFullOrDemo)) {
String fileName = br.localCopyFileName(UrlInfo.Type.Book);
if (fileName != null) {
// TODO: remove a book from the library
// TODO: remove a record from the database
new File(fileName).delete();
}
}
}
}
}