Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.downloader / org.gvsig.downloader.lib / org.gvsig.downloader.lib.impl / src / main / java / org / gvsig / downloader / lib / impl / types / httpbasic / DownloaderHTTPBasicAuthenticationRequester.java @ 47823

History | View | Annotate | Download (2.75 KB)

1
/*
2
 * gvSIG. Desktop Geographic Information System.
3
 * 
4
 * Copyright (C) 2007-2020 gvSIG Association.
5
 * 
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 * 
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 * 
16
 * You should have received a copy of the GNU General Public License 
17
 * along with this program. If not, see <https://www.gnu.org/licenses/>. 
18
 * 
19
 * For any additional information, do not hesitate to contact us
20
 * at info AT gvsig.com, or visit our website www.gvsig.com.
21
 */
22

    
23
package org.gvsig.downloader.lib.impl.types.httpbasic;
24

    
25
import java.awt.event.ActionEvent;
26
import javax.swing.SwingUtilities;
27
import org.apache.commons.lang3.mutable.MutableBoolean;
28
import org.gvsig.downloader.DownloaderAuthenticationRequester;
29
import org.gvsig.downloader.spi.AbstractDownloaderAuthenticationRequester;
30

    
31
/**
32
 *
33
 * @author gvSIG Team
34
 */
35
@SuppressWarnings("UseSpecificCatch")
36
public class DownloaderHTTPBasicAuthenticationRequester
37
        extends AbstractDownloaderAuthenticationRequester
38
        implements DownloaderAuthenticationRequester
39
    {
40
    
41
    private DownloaderHTTPBasicCredentials credentials = null;
42
    
43
    public DownloaderHTTPBasicAuthenticationRequester(DownloaderHTTPBasicAuthenticationConfig config) {
44
        super(config);
45
        this.credentials = null;
46
    }  
47
    
48
    @Override
49
    public boolean requestAuthorization() {
50
        if( !SwingUtilities.isEventDispatchThread() ) {
51
            try {
52
                MutableBoolean r = new MutableBoolean();
53
                SwingUtilities.invokeAndWait(() -> {
54
                    r.setValue(requestAuthorization());
55
                });
56
                return r.booleanValue();
57
            } catch (Exception ex) {
58
                return false;
59
            }
60
        }
61
        LoginDialog logginDialog = new LoginDialog();
62
        logginDialog.addActionListener((ActionEvent e) -> {
63
                credentials = new DownloaderHTTPBasicCredentials(
64
                        this.getConfig().getBaseUrl(),
65
                        logginDialog.getName(), 
66
                        logginDialog.getPassword()
67
                );
68
        });
69
        if( !logginDialog.showDialog() ) {
70
            return false;
71
        }
72
        if( this.credentials==null ) {
73
            return false;
74
        }
75
        return true;
76
    }
77

    
78
    @Override
79
    public DownloaderHTTPBasicCredentials getCredentials() {
80
        return this.credentials;
81
    }
82

    
83
}