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

History | View | Annotate | Download (3.3 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
                executorUI.execute(new Runnable() {
59
                    @Override
60
                    public void run() {
61
                        r.setValue(requestAuthorization(executorUI));
62
                    }
63

    
64
                    @Override
65
                    public String toString() {
66
                        return DownloaderHTTPBasicAuthenticationRequester.this.toString();
67
                    }
68
                    
69
                });
70
                return r.booleanValue();
71
            } catch (Exception ex) {
72
                return false;
73
            }
74
        }
75
        LoginDialog logginDialog = new LoginDialog();
76
        logginDialog.addActionListener((ActionEvent e) -> {
77
                credentials = new DownloaderHTTPBasicCredentials(
78
                        this.getConfig().getServiceUrl(),
79
                        logginDialog.getName(), 
80
                        logginDialog.getPassword()
81
                );
82
        });
83
        if( !logginDialog.showDialog() ) {
84
            return false;
85
        }
86
        if( this.credentials==null ) {
87
            return false;
88
        }
89
        return true;
90
    }
91

    
92
    @Override
93
    public DownloaderHTTPBasicCredentials getCredentials() {
94
        return this.credentials;
95
    }
96

    
97
}