-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathAccountController.java
More file actions
146 lines (123 loc) · 4.34 KB
/
AccountController.java
File metadata and controls
146 lines (123 loc) · 4.34 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* OwlPlug
* Copyright (C) 2021 Arthur <dropsnorz@gmail.com>
*
* This file is part of OwlPlug.
*
* OwlPlug is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3
* as published by the Free Software Foundation.
*
* OwlPlug is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OwlPlug. If not, see <https://www.gnu.org/licenses/>.
*/
package com.owlplug.auth.controllers;
import com.owlplug.auth.services.AuthenticationService;
import com.owlplug.controls.DialogLayout;
import com.owlplug.core.components.LazyViewRegistry;
import com.owlplug.core.controllers.MainController;
import com.owlplug.core.controllers.dialogs.AbstractDialogController;
import javafx.concurrent.Task;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.ProgressIndicator;
import javafx.scene.layout.HBox;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
@Controller
public class AccountController extends AbstractDialogController {
private final Logger log = LoggerFactory.getLogger(this.getClass());
@Autowired
private AuthenticationService authenticationService;
@Autowired
private LazyViewRegistry viewRegistry;
@FXML
private HBox buttonPane;
@FXML
private Button googleButton;
@FXML
private ProgressIndicator authProgressIndicator;
@FXML
private Label messageLabel;
@FXML
private Button cancelButton;
@FXML
private Button closeButton;
/** Indicates if the user has pressed the cancel button. */
private boolean cancelFlag = false;
/**
* FXML initialize method.
*/
public void initialize() {
googleButton.setOnAction(e -> {
buttonPane.setVisible(false);
authProgressIndicator.setVisible(true);
messageLabel.setText("Your default browser is opening... Proceed to sign in and come back here.");
messageLabel.setVisible(true);
Task<Void> task = new Task<>() {
@Override
protected Void call() throws Exception {
log.debug("Google auth task started");
authenticationService.createAccountAndAuth();
this.updateProgress(1, 1);
return null;
}
};
task.setOnSucceeded(event -> {
log.debug("Google auth task complete");
authProgressIndicator.setVisible(false);
buttonPane.setVisible(false);
cancelButton.setVisible(false);
closeButton.setVisible(true);
messageLabel.setText("Your account has been successfully added");
messageLabel.setVisible(true);
cancelFlag = false;
});
task.setOnFailed(event -> {
log.debug("Google auth task failed");
authProgressIndicator.setVisible(false);
buttonPane.setVisible(true);
cancelButton.setVisible(false);
closeButton.setVisible(true);
messageLabel.setVisible(false);
if (!cancelFlag) {
messageLabel.setText("En error occurred during authentication");
messageLabel.setVisible(true);
}
cancelFlag = false;
});
cancelButton.setVisible(true);
closeButton.setVisible(false);
new Thread(task).start();
});
cancelButton.setOnAction(event -> {
cancelFlag = true;
authenticationService.stopAuthReceiver();
});
closeButton.setOnAction(e -> close());
// Do not compute layout for invisible nodes
buttonPane.managedProperty().bind(buttonPane.visibleProperty());
authProgressIndicator.managedProperty().bind(authProgressIndicator.visibleProperty());
messageLabel.managedProperty().bind(messageLabel.visibleProperty());
}
@Override
protected void onDialogShow() {
buttonPane.setVisible(true);
cancelButton.setVisible(false);
closeButton.setVisible(true);
messageLabel.setVisible(false);
}
@Override
protected DialogLayout getLayout() {
DialogLayout layout = new DialogLayout();
layout.setBody(viewRegistry.get(LazyViewRegistry.NEW_ACCOUNT_VIEW));
return layout;
}
}