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

History | View | Annotate | Download (3.12 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
                executorUI.execute(new Runnable() {
55
                    @Override
56
                    public void run() {
57
                        r.setValue(requestAuthorization(executorUI));
58
                    }
59

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

    
88
    @Override
89
    public DownloaderHTTPBasicCredentials getCredentials() {
90
        return this.credentials;
91
    }
92

    
93
}