3
3
import java .awt .*;
4
4
import java .awt .Color ;
5
5
import java .awt .TrayIcon .*;
6
- import java .awt .datatransfer .*;
7
- import java .awt .event .*;
8
- import java .io .*;
9
- import java .net .*;
10
- import java .net .http .*;
11
- import java .net .http .HttpResponse .*;
12
6
import java .time .*;
13
7
import java .time .format .*;
14
8
import java .util .*;
15
- import java .util .function .*;
16
9
import java .util .stream .*;
17
- import javax .imageio .*;
18
10
import javax .swing .*;
19
11
import javax .swing .border .*;
20
- import javax .swing .filechooser .*;
21
12
import javax .swing .plaf .nimbus .*;
22
- import org .apache .poi .*;
23
- import org .apache .poi .ss .usermodel .*;
24
13
import timetable .listeners .*;
25
14
26
15
public final class Main {
27
16
private static final ArrayList <ClassButton > classButtons = new ArrayList <>();
28
- private static final JPanel mainPanel = new JPanel (new BorderLayout ());
29
- private static final String BACKEND_URL = "http://localhost:8080/timetable" ;
30
- private static final HttpClient client = HttpClient .newHttpClient ();
31
17
private static final JLabel dateLabel = new JLabel ("\0 " );
32
- private static final TrayIcon tray = new TrayIcon (Components .trayIcon .getScaledInstance (16 , 16 , Image .SCALE_SMOOTH ), "Órarend" );
33
18
private static ClassButton lastActiveClass = null ;
34
19
35
20
public static final String [] days = { "Hétfő" , "Kedd" , "Szerda" , "Csütörtök" , "Péntek" , "Szombat" , "Vasárnap" };
36
21
public static final JPanel classesPanel = new JPanel (null );
22
+ public static final String BACKEND_URL = "http://localhost:8080/timetable" ;
37
23
38
24
public static void main (String [] args ) throws Exception {
39
25
UIManager .setLookAndFeel (new NimbusLookAndFeel ());
40
26
IntStream .range (0 , 5 ).mapToObj (Main ::newDayButton ).forEach (classesPanel ::add );
41
- updateClassesGui ();
42
27
43
28
dateLabel .setBounds (350 , 5 , 300 , 40 );
44
29
dateLabel .setFont (Components .bigFont );
45
30
dateLabel .setHorizontalAlignment (SwingConstants .CENTER );
46
31
dateLabel .setBorder (new EmptyBorder (15 , 0 , 20 , 0 ));
32
+
33
+ var mainPanel = new JPanel (new BorderLayout ());
47
34
mainPanel .add (dateLabel , BorderLayout .PAGE_START );
48
35
mainPanel .add (classesPanel , BorderLayout .CENTER );
49
36
50
- var screenshotItem = Components .newMenuItem ("Kép" , "screencap.png" , Main ::exportToImage );
37
+ updateClassesGui ();
38
+
39
+ var screenshotItem = Components .newMenuItem ("Kép" , "screencap.png" , TransferUtils ::exportToImage );
51
40
var frame = new JFrame ("Órarend" );
52
41
frame .setBounds (0 , 0 , 1024 , Math .min (768 , Toolkit .getDefaultToolkit ().getScreenSize ().height - 50 ));
53
42
frame .setLocationRelativeTo (null );
@@ -67,12 +56,13 @@ public static void main(String[] args) throws Exception {
67
56
popMenu .add (Components .newMenuItem ("Megnyitás" , "open.png" , SystemTrayListener ::openFromTray ));
68
57
popMenu .addSeparator ();
69
58
popMenu .add (sleepMode );
70
- popMenu .add (Components .newSideMenu ("Importálás" , "import.png" , Components .newMenuItem ("Neptun Órarend Excel" , "excel.png" , Main ::importFromExcel ), Components .newMenuItem ("Felhő" , "db.png" , Main ::importFromCloud )));
71
- popMenu .add (Components .newSideMenu ("Mentés" , "export.png" , screenshotItem , Components .newMenuItem ("Felhő" , "db.png" , Main ::exportToCloud )));
59
+ popMenu .add (Components .newSideMenu ("Importálás" , "import.png" , Components .newMenuItem ("Neptun Órarend Excel" , "excel.png" , TransferUtils ::importFromExcel ), Components .newMenuItem ("Felhő" , "db.png" , TransferUtils ::importFromCloud )));
60
+ popMenu .add (Components .newSideMenu ("Mentés" , "export.png" , screenshotItem , Components .newMenuItem ("Felhő" , "db.png" , TransferUtils ::exportToCloud )));
72
61
popMenu .add (Components .newMenuItem ("Beállítások" , "settings.png" , PopupGuis ::showSettingsGui ));
73
62
popMenu .addSeparator ();
74
63
popMenu .add (Components .newMenuItem ("Bezárás" , "exit.png" , e -> System .exit (0 )));
75
64
65
+ var tray = new TrayIcon (Components .trayIcon .getScaledInstance (16 , 16 , Image .SCALE_SMOOTH ), "Órarend" );
76
66
tray .addMouseListener (new SystemTrayListener (popMenu ));
77
67
SystemTray .getSystemTray ().add (tray );
78
68
Runtime .getRuntime ().addShutdownHook (new Thread (Settings ::saveSettings ));
@@ -127,129 +117,6 @@ private static JButton newDayButton(int dayIndex) {
127
117
return topAdd ;
128
118
}
129
119
130
- private static void exportToImage (@ SuppressWarnings ("unused" ) ActionEvent event ) {
131
- Consumer <JDialog > exportFunction = dialog -> {
132
- var window = classesPanel .getTopLevelAncestor ().getLocationOnScreen ();
133
- var fileName = LocalDateTime .now ().format (DateTimeFormatter .ofPattern ("yyyy_MM_dd_kk_HH_ss" )) + ".png" ;
134
- var exportFile = new File (fileName );
135
-
136
- try {
137
- ImageIO .write (new Robot ().createScreenCapture (new Rectangle (window .x + 20 , window .y + 80 , 990 , 650 )), "PNG" , exportFile );
138
- Runtime .getRuntime ().exec ("explorer.exe /select," + exportFile );
139
- dialog .setVisible (false );
140
- } catch (HeadlessException | AWTException | IOException e1 ) {}
141
- };
142
-
143
- showTransferDialog ("Mentés folyamatban..." , exportFunction );
144
- }
145
-
146
- private static void exportToCloud (@ SuppressWarnings ("unused" ) ActionEvent event ) {
147
- var userPwInput = JOptionPane .showInputDialog (mainPanel , "Írd be az órarend módosítás jelszavad!" );
148
-
149
- if (userPwInput != null ) {
150
- Consumer <JDialog > exportFunction = dialog -> {
151
- var objectToSend = Map .of ("classes" , Settings .classes , "password" , userPwInput );
152
-
153
- var request = HttpRequest .newBuilder (URI .create (BACKEND_URL + (!Settings .cloudID .equals (Settings .NULL_CLOUD_ID ) ? ("?id=" + Settings .cloudID ) : "" )))
154
- .POST (Settings .publisherOf (objectToSend ));
155
-
156
- var response = sendRequest (request , BodyHandlers .ofString ());
157
- var responseStatusCode = response .statusCode ();
158
-
159
- dialog .setVisible (false );
160
-
161
- if (responseStatusCode == 401 ) {
162
- JOptionPane .showMessageDialog (mainPanel , "Sikertelen mentés! Hibás jelszó!" );
163
- }else if (responseStatusCode == 400 ) {
164
- Settings .cloudID = Settings .NULL_CLOUD_ID ;
165
- JOptionPane .showMessageDialog (mainPanel , "Sikertelen mentés! Nem található ilyen azonosítójú órarend...\n Az eddigi felhő azonosító törlésre került!" );
166
- }else if (responseStatusCode == 200 ) {
167
- var optionalReceivedCloudID = response .body ();
168
-
169
- if (optionalReceivedCloudID != null && !optionalReceivedCloudID .isBlank ()) {
170
- Settings .cloudID = optionalReceivedCloudID ;
171
- Toolkit .getDefaultToolkit ().getSystemClipboard ().setContents (new StringSelection (optionalReceivedCloudID ), null );
172
- JOptionPane .showMessageDialog (mainPanel , "Új órarend létrehozva, azonosító: " + optionalReceivedCloudID + " (másolva vágólapra)" );
173
- }else {
174
- JOptionPane .showMessageDialog (mainPanel , "Sikeres mentés!" );
175
- }
176
- }
177
- };
178
-
179
- showTransferDialog ("Mentés folyamatban..." , exportFunction );
180
- }
181
- }
182
-
183
- private static void importFromExcel (@ SuppressWarnings ("unused" ) ActionEvent event ) {
184
- var chooser = new JFileChooser (System .getProperty ("user.home" ) + "/Desktop" );
185
- chooser .setDialogTitle ("Órarend Importálás Választó" );
186
- chooser .setFileFilter (new FileNameExtensionFilter ("Excel Files" , "xls" , "xlsx" ));
187
-
188
- if (chooser .showOpenDialog (classesPanel ) == JFileChooser .APPROVE_OPTION ) {
189
- Consumer <JDialog > importFunction = dialog -> {
190
- try (var book = WorkbookFactory .create (chooser .getSelectedFile ().getAbsoluteFile ())){
191
- var classesSheet = book .getSheetAt (0 );
192
- var format = DateTimeFormatter .ofPattern ("uuuu.MM.dd. [HH:][H:]mm:ss" );
193
-
194
- Settings .classes = StreamSupport .stream (classesSheet .spliterator (), false )
195
- .skip (1 ) // Header
196
- .map (row -> ClassButton .fromTimetableExcel (row , format ))
197
- .collect (Collectors .toCollection (ArrayList ::new ));
198
- updateClassesGui ();
199
- dialog .setVisible (false );
200
- }catch (FileNotFoundException e ) {
201
- dialog .setVisible (false );
202
- JOptionPane .showMessageDialog (mainPanel , "Az excel fájl használatban van!" , "Hiba" , JOptionPane .ERROR_MESSAGE );
203
- } catch (EncryptedDocumentException | IOException e ) {
204
- e .printStackTrace ();
205
- }
206
- };
207
-
208
- showTransferDialog ("Importálás folyamatban..." , importFunction );
209
- }
210
- }
211
-
212
- private static void importFromCloud (@ SuppressWarnings ("unused" ) ActionEvent event ) {
213
- var userIDInput = JOptionPane .showInputDialog (mainPanel , "Írd be az órarend azonosítót!" );
214
-
215
- if (userIDInput != null && !userIDInput .isBlank ()) {
216
- Consumer <JDialog > importFunction = dialog -> {
217
- var responseClasses = sendRequest (HttpRequest .newBuilder (URI .create (BACKEND_URL + "?id=" + userIDInput )), Settings .of (Settings .CLASSES_TYPEREF )).body ();
218
-
219
- if (responseClasses != null ) {
220
- Settings .classes = responseClasses ;
221
-
222
- dialog .setVisible (false );
223
- Settings .cloudID = userIDInput ;
224
- updateClassesGui ();
225
- }else {
226
- dialog .setVisible (false );
227
- JOptionPane .showMessageDialog (mainPanel , "Nem található ilyen azonsítójú órarend! :(" , "Hiba" , JOptionPane .ERROR_MESSAGE );
228
- }
229
- };
230
-
231
- showTransferDialog ("Importálás folyamatban..." , importFunction );
232
- }
233
- }
234
-
235
- private static <T > HttpResponse <T > sendRequest (HttpRequest .Builder request , BodyHandler <T > bodyHandler ) {
236
- try {
237
- return client .send (request .header ("Content-Type" , "application/json" ).build (), bodyHandler );
238
- } catch (IOException | InterruptedException e ) {
239
- e .printStackTrace ();
240
- throw new IllegalStateException ("Huh?" );
241
- }
242
- }
243
-
244
-
245
- private static void showTransferDialog (String text , Consumer <JDialog > fun ) {
246
- var jop = new JOptionPane (text , JOptionPane .PLAIN_MESSAGE , JOptionPane .DEFAULT_OPTION , null , new Object [0 ]);
247
- var dialog = jop .createDialog (mainPanel , "Órarend" );
248
-
249
- new Thread (() -> fun .accept (dialog )).start ();
250
- dialog .setVisible (true );
251
- }
252
-
253
120
public static void updateClassesGui () {
254
121
classButtons .forEach (k -> classesPanel .remove (k .button ));
255
122
classButtons .clear ();
@@ -258,8 +125,8 @@ public static void updateClassesGui() {
258
125
var today = days [nowDate .getDayOfWeek ().ordinal ()];
259
126
var nowTime = nowDate .toLocalTime ();
260
127
261
- Components .handleNightMode (mainPanel , nowTime );
262
128
Components .handleNightMode (classesPanel , nowTime );
129
+ Components .handleNightMode (classesPanel .getParent (), nowTime );
263
130
Components .handleNightMode (dateLabel , nowTime );
264
131
265
132
Settings .classes .stream ()
0 commit comments