
de.psdev.licensesdialog.NoticesHtmlBuilder Maven / Gradle / Ivy
/*
* Copyright 2013 Philip Schiffer
*
* 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 de.psdev.licensesdialog;
import android.content.Context;
import de.psdev.licensesdialog.licenses.License;
import de.psdev.licensesdialog.model.Notice;
import de.psdev.licensesdialog.model.Notices;
public final class NoticesHtmlBuilder {
private final Context mContext;
private Notices mNotices;
private Notice mNotice;
private String mStyle;
private boolean mShowFullLicenseText;
public static NoticesHtmlBuilder create(final Context context) {
return new NoticesHtmlBuilder(context);
}
private NoticesHtmlBuilder(final Context context) {
mContext = context;
mStyle = context.getResources().getString(R.string.notices_default_style);
mShowFullLicenseText = false;
}
public NoticesHtmlBuilder setNotices(final Notices notices) {
mNotices = notices;
mNotice = null;
return this;
}
public NoticesHtmlBuilder setNotice(final Notice notice) {
mNotice = notice;
mNotices = null;
return this;
}
public NoticesHtmlBuilder setStyle(final String style) {
mStyle = style;
return this;
}
public NoticesHtmlBuilder setShowFullLicenseText(final boolean showFullLicenseText) {
mShowFullLicenseText = showFullLicenseText;
return this;
}
public String build() {
final StringBuilder noticesHtmlBuilder = new StringBuilder(500);
appendNoticesContainerStart(noticesHtmlBuilder);
if (mNotice != null) {
appendNoticeBlock(noticesHtmlBuilder, mNotice);
} else if (mNotices != null) {
for (final Notice notice : mNotices.getNotices()) {
appendNoticeBlock(noticesHtmlBuilder, notice);
}
} else {
throw new IllegalStateException("no notice(s) set");
}
appendNoticesContainerEnd(noticesHtmlBuilder);
return noticesHtmlBuilder.toString();
}
//
private void appendNoticesContainerStart(final StringBuilder noticesHtmlBuilder) {
noticesHtmlBuilder.append("")
.append("")
.append("");
}
private void appendNoticeBlock(final StringBuilder noticesHtmlBuilder, final Notice notice) {
noticesHtmlBuilder.append("- ").append(notice.getName());
final String currentNoticeUrl = notice.getUrl();
if (currentNoticeUrl != null && currentNoticeUrl.length() > 0) {
noticesHtmlBuilder.append(" (").append(currentNoticeUrl).append(")");
}
noticesHtmlBuilder.append("
");
noticesHtmlBuilder.append("");
final String copyright = notice.getCopyright();
if (copyright != null) {
noticesHtmlBuilder.append(copyright).append("
");
}
noticesHtmlBuilder.append(getLicenseText(notice.getLicense())).append("
");
}
private void appendNoticesContainerEnd(final StringBuilder noticesHtmlBuilder) {
noticesHtmlBuilder.append("");
}
private String getLicenseText(final License license) {
if (license != null) {
return mShowFullLicenseText ? license.getFullText(mContext) : license.getSummaryText(mContext);
}
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy