Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 95ce1343f588d964018da587fceeeac035819f26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*******************************************************************************
 * Copyright (c) 2010, 2018 Red Hat, Inc.
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Alexander Kurtakov (Red Hat) - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.changelog.core;

import java.net.UnknownHostException;

import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
import org.eclipse.jface.preference.IPreferenceStore;

public class ChangelogPreferenceInitializer extends
        AbstractPreferenceInitializer {

    @Override
    public void initializeDefaultPreferences() {
        IPreferenceStore store = ChangelogPlugin.getDefault()
                .getPreferenceStore();
        store.setDefault("IChangeLogConstants.DATE_FORMAT", "true"); // $NON-NLS-1$
                                                                        // //
                                                                        // $NON-NLS-2$
        store.setDefault("IChangeLogConstants.APPEND_RESOURCE_PATH", "false"); // $NON-NLS-1$
                                                                                // //
                                                                                // $NON-NLS-2$

        store.setDefault("IChangeLogConstants.AUTHOR_NAME", // $NON-NLS-1$
                getUserRealName());
        store.setDefault("IChangeLogConstants.AUTHOR_EMAIL", // $NON-NLS-2$
                getUserEmail());
        store.setDefault("IChangeLogConstants.DEFAULT_FORMATTER", // $NON-NLS-1$
                Messages.getString("ChangeLogPreferencesPage.gnuFormatter")); // $NON-NLS-1$
        store.setDefault("IChangeLogConstants.DEFAULT_EDITOR", // $NON-NLS-1$
                Messages.getString("ChangeLogPreferencesPage.gnuEditorConfig")); // $NON-NLS-1$
    }

    private String getUserRealName() {
        String realUserName = System.getenv("ECLIPSE_CHANGELOG_REALNAME"); // $NON-NLS-1$
        if (realUserName != null)
            return realUserName;
        return System.getProperty("gnu.gcj.user.realname", //$NON-NLS-1$
                getUserName());
    }

    private String getUserEmail() {
        String emailID = System.getenv("ECLIPSE_CHANGELOG_EMAIL"); // $NON-NLS-1$
        if (emailID != null)
            return emailID;
        return getUserName() + "@" + getHostName(); // $NON-NLS-1$
    }

    private String getUserName() {
        return System.getProperty("user.name"); //$NON-NLS-1$
    }

    private String getHostName() {
        try {
            return java.net.InetAddress.getLocalHost().getHostName();
        } catch (UnknownHostException e) {
            // instead of throwing exception, return default host name
            // RH bug#194406
            return "localhost.localdomain"; //$NON-NLS-1$
        }
    }

}

Back to the top