ch.cyberduck.core.BookmarkNameProvider.java Source code

Java tutorial

Introduction

Here is the source code for ch.cyberduck.core.BookmarkNameProvider.java

Source

package ch.cyberduck.core;

/*
 * Copyright (c) 2002-2014 David Kocher. All rights reserved.
 * http://cyberduck.ch/
 *
 * 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.
 *
 * Bug fixes, suggestions and comments should be sent to:
 * feedback@cyberduck.ch
 */

import org.apache.commons.lang3.StringUtils;

public final class BookmarkNameProvider {

    private BookmarkNameProvider() {
        //
    }

    public static String toString(final Host bookmark) {
        return toString(bookmark, false);
    }

    public static String toString(final Host bookmark, final boolean username) {
        if (StringUtils.isEmpty(bookmark.getNickname())) {
            final String prefix;
            // Return default bookmark name
            if (username && !bookmark.getCredentials().isAnonymousLogin()
                    && StringUtils.isNotBlank(bookmark.getCredentials().getUsername())) {
                prefix = String.format("%s@", bookmark.getCredentials().getUsername());
            } else {
                prefix = StringUtils.EMPTY;
            }
            if (StringUtils.isNotBlank(bookmark.getHostname())) {
                return String.format("%s%s \u2013 %s", prefix, StringUtils.strip(bookmark.getHostname()),
                        bookmark.getProtocol().getName());
            }
            if (StringUtils.isNotBlank(bookmark.getProtocol().getDefaultHostname())) {
                return String.format("%s%s \u2013 %s", prefix,
                        StringUtils.strip(bookmark.getProtocol().getDefaultHostname()),
                        bookmark.getProtocol().getName());
            }
            return String.format("%s%s", prefix, bookmark.getProtocol().getName());
        }
        // Return custom bookmark name set
        return bookmark.getNickname();
    }
}