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 @ 47824

History | View | Annotate | Download (2.86 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 java.util.concurrent.Executor;
27
import javax.swing.SwingUtilities;
28
import org.apache.commons.lang3.mutable.MutableBoolean;
29
import org.gvsig.downloader.DownloaderAuthenticationRequester;
30
import org.gvsig.downloader.spi.AbstractDownloaderAuthenticationRequester;
31

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

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

    
85
}