-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUgix_resources.py
687 lines (541 loc) · 27.7 KB
/
Ugix_resources.py
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Ugix_resources
A QGIS plugin
This plugin is used to get the data from ugix server
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2024-07-03
git sha : $Format:%H$
copyright : (C) 2024 by Sirpi
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from qgis.PyQt.QtCore import QSettings, QTranslator, QCoreApplication, Qt, QVariant
from qgis.PyQt.QtGui import QIcon
from qgis.PyQt.QtWidgets import QAction, QMessageBox, QDialog, QListWidgetItem
from qgis.core import QgsVectorLayer, QgsFeature, QgsGeometry, QgsPointXY, QgsFields, QgsField, QgsProject
from qgis.PyQt.QtWidgets import QMessageBox
from qgis.core import (QgsVectorLayer, QgsField, QgsFeature, QgsGeometry,
QgsPointXY, QgsMultiPolygon, QgsMultiLineString,
QgsLineString, QgsPolygon, QgsMultiPoint, QgsPoint,
QgsWkbTypes, QgsProject,QgsCoordinateReferenceSystem,QgsCoordinateTransform,)
from PyQt5.QtWidgets import QWidget, QHBoxLayout, QLabel, QLineEdit, QListWidgetItem,QVBoxLayout
import webbrowser
from PyQt5.QtWidgets import QApplication, QProgressDialog
import time
import os.path
import requests
import json
from .resources import *
from .Ugix_resources_dialog import Ugix_resourcesDialog
from .login_dialog import LoginDialog
from qgis.gui import QgsMapToolIdentifyFeature,QgsMapTool
from qgis.PyQt.QtWidgets import QMessageBox
from qgis.core import QgsRaster
from qgis.PyQt.QtGui import QCursor
from qgis.PyQt.QtCore import Qt
from qgis.core import QgsPointXY, QgsFeature
from PyQt5.QtWidgets import QMessageBox
from qgis.core import QgsMarkerSymbol, QgsSvgMarkerSymbolLayer
class MapToolIdentifyFeature(QgsMapToolIdentifyFeature):
def __init__(self, canvas, iface):
super().__init__(canvas)
self.iface = iface
self.canvas = canvas
def canvasReleaseEvent(self, event):
results = self.identify(event.x(), event.y(), self.TopDownStopAtFirst, self.VectorLayer)
if results:
# Extract feature from results
feature = results[0].mFeature
# Get attribute names and values
field_names = [field.name() for field in feature.fields()]
attrs = feature.attributes()
# Format the attributes as key-value pairs
formatted_attrs = "\n".join(f"{field_names[i]}: {attrs[i]}" for i in range(len(attrs)))
# Show formatted feature attributes in a message box
QMessageBox.information(None, "Feature Attributes", formatted_attrs)
class Ugix_resources:
"""QGIS Plugin Implementation."""
def __init__(self, iface):
self.iface = iface
self.canvas = iface.mapCanvas()
self.map_tool_identify_feature = MapToolIdentifyFeature(self.canvas, self.iface)
self.canvas.setMapTool(self.map_tool_identify_feature)
self.plugin_dir = os.path.dirname(__file__)
self.icon_path = os.path.join(self.plugin_dir, 'gdi_plugin_icon.png')
self.access_token = None # Initialize access token
# Initialize locale
locale = QSettings().value('locale/userLocale')[0:2]
locale_path = os.path.join(self.plugin_dir, 'i18n', f'Ugix_resources_{locale}.qm')
if os.path.exists(locale_path):
self.translator = QTranslator()
self.translator.load(locale_path)
QCoreApplication.installTranslator(self.translator)
# Declare instance attributes
self.actions = []
self.menu = self.tr(u'&Ugix_resources')
self.first_start = None
# Dialog instances
self.login_dialog = None
self.dlg = None
# Initialize dialog and connect radio buttons to filter function
self.dlg = Ugix_resourcesDialog()
self.dlg.radioButtonAll.toggled.connect(self.filter_data)
self.dlg.radioButtonPublic.toggled.connect(self.filter_data)
self.dlg.radioButtonPrivate.toggled.connect(self.filter_data)
def activate_map_tool(self):
self.canvas.setMapTool(self.map_tool_identify_feature)
def show_dialog(self):
# Code to show your main dialog
self.activate_map_tool()
def on_login_successful(self, access_token):
self.access_token = access_token
self.show_dialog()
def tr(self, message):
"""Get the translation for a string using Qt translation API.
We implement this ourselves since we do not inherit QObject.
:param message: String for translation.
:type message: str, QString
:returns: Translated version of message.
:rtype: QString
"""
return QCoreApplication.translate('Ugix_resources', message)
def fetch_api_data(self, url):
try:
response = requests.get(url)
response.raise_for_status()
data = response.json()
self.original_data = data.get('results', []) # Store data to be filtered
return self.original_data
except requests.RequestException as e:
QMessageBox.critical(None, 'Error', f'Failed to fetch data from API: {e}')
return None
def filter_data(self):
if not self.dlg:
return
list_widget = self.dlg.listWidget
list_widget.clear()
# Determine the selected radio button
if self.dlg.radioButtonPublic.isChecked():
filtered_data = [item for item in self.all_data if item.get('accessPolicy') == 'OPEN']
elif self.dlg.radioButtonPrivate.isChecked():
filtered_data = [item for item in self.all_data if item.get('accessPolicy') == 'SECURE']
else:
filtered_data = self.all_data # Show all data if 'All' is selected
# Extract labels and sort them
sorted_data = sorted(filtered_data, key=lambda item: item.get('label', 'No label available'))
for item in sorted_data:
label_text = item.get('label', 'No label available')
access_policy = item.get('accessPolicy', 'Unknown') # Fetch access policy
# Determine the background color based on access policy
if access_policy == 'OPEN':
access_policy_text = 'Public'
access_policy_color = 'green'
elif access_policy == 'SECURE':
access_policy_text = 'Private'
access_policy_color = 'red'
else:
access_policy_text = access_policy
access_policy_color = 'black'
# Create a QWidget to hold the label and the colored box
item_widget = QWidget()
layout = QHBoxLayout(item_widget)
layout.setContentsMargins(5, 5, 5, 5)
layout.setSpacing(10)
# Create the label
label = QLabel(label_text)
label.setFixedWidth(200) # Set a fixed width for the label
# Create the colored box
color_box = QWidget()
color_box.setFixedSize(60, 20) # Set a fixed size for the colored box
color_box.setStyleSheet(f"background-color: {access_policy_color};")
# Create the text label inside the colored box
text_label = QLabel(access_policy_text)
text_label.setAlignment(Qt.AlignCenter)
text_label.setStyleSheet("color: white;")
# Use a layout for the color box to center the text
color_box_layout = QVBoxLayout(color_box)
color_box_layout.setContentsMargins(0, 0, 0, 0)
color_box_layout.addWidget(text_label)
# Add the label and colored box to the layout
layout.addWidget(label)
layout.addWidget(color_box)
# Create a QListWidgetItem and set the widget
list_item = QListWidgetItem()
list_item.setSizeHint(item_widget.sizeHint()) # Ensure the size hint is set
list_widget.addItem(list_item)
list_widget.setItemWidget(list_item, item_widget)
# Store the item data
list_item.setData(Qt.UserRole + 1, item) # Ensure proper data setting
# Connect item selection event to a handler
list_widget.itemSelectionChanged.connect(self.save_selected_item_id)
def save_selected_item_id(self):
list_widget = self.dlg.listWidget
selected_items = list_widget.selectedItems()
if selected_items:
selected_item = selected_items[0]
item_data = selected_item.data(Qt.UserRole + 1)
# Handle the selected item data
print(f"Selected item data: {item_data}")
def display_data_in_scroll_area(self, data):
self.all_data = data # Store all data initially
# Call the filter function to display data based on the selected radio button
self.filter_data()
def create_vector_layer(self, geometry_type, coordinates, label, name, description):
layer_name = label
layer = QgsVectorLayer(geometry_type, layer_name, "memory")
provider = layer.dataProvider()
fields = QgsFields()
fields.append(QgsField("Label", QVariant.String))
fields.append(QgsField("Name", QVariant.String))
fields.append(QgsField("Description", QVariant.String))
provider.addAttributes(fields)
layer.updateFields()
features = []
# Function to create a custom marker symbol
def create_custom_marker_symbol(icon_path):
if os.path.exists(icon_path):
symbol_layer = QgsSvgMarkerSymbolLayer(icon_path)
symbol_layer.setSize(8) # Adjust the size as needed
symbol = QgsMarkerSymbol.createSimple({})
symbol.changeSymbolLayer(0, symbol_layer)
return symbol
else:
QMessageBox.warning(None, 'Warning', f"Icon file not found: {icon_path}")
return QgsMarkerSymbol.createSimple({'name': 'circle', 'color': 'red'}) # Fallback to a default symbol
if geometry_type == "MultiPolygon" or geometry_type == "Polygon":
for polygon_coords in coordinates:
if isinstance(polygon_coords, list):
polygon = []
for ring in polygon_coords:
ring_coords = []
for coord in ring:
if isinstance(coord, list) and len(coord) >= 2:
point = QgsPointXY(coord[0], coord[1])
ring_coords.append(point)
else:
QMessageBox.warning(None, 'Warning', f"Invalid coordinate format: {coord}")
if ring_coords:
polygon.append(ring_coords)
if polygon:
geom = QgsGeometry.fromPolygonXY(polygon) if geometry_type == "Polygon" else QgsGeometry.fromMultiPolygonXY([polygon])
feature = QgsFeature()
feature.setGeometry(geom)
feature.setAttributes([label, name, description]) # Set attributes
features.append(feature)
else:
QMessageBox.warning(None, 'Warning', f"Invalid coordinate list format: {polygon_coords}")
elif geometry_type == "MultiLineString" or geometry_type == "LineString":
for line_coords in coordinates:
if isinstance(line_coords, list):
polyline = []
for coord in line_coords:
if isinstance(coord, list) and len(coord) >= 2:
point = QgsPointXY(coord[0], coord[1])
polyline.append(point)
else:
QMessageBox.warning(None, 'Warning', f"Invalid coordinate format: {coord}")
if polyline:
geom = QgsGeometry.fromPolylineXY(polyline) if geometry_type == "LineString" else QgsGeometry.fromMultiPolylineXY([polyline])
feature = QgsFeature()
feature.setGeometry(geom)
feature.setAttributes([label, name, description]) # Set attributes
features.append(feature)
else:
QMessageBox.warning(None, 'Warning', f"Invalid coordinate list format: {line_coords}")
elif geometry_type == "MultiPoint" or geometry_type == "Point":
if geometry_type == "Point":
for point_coords in coordinates:
if isinstance(point_coords, list) and len(point_coords) >= 2:
point = QgsPointXY(point_coords[0], point_coords[1])
geom = QgsGeometry.fromPointXY(point)
feature = QgsFeature()
feature.setGeometry(geom)
feature.setAttributes([label, name, description]) # Set attributes
features.append(feature)
else:
QMessageBox.warning(None, 'Warning', f"Invalid coordinate format: {point_coords}")
elif geometry_type == "MultiPoint":
points = []
for point_coords in coordinates:
if isinstance(point_coords, list) and len(point_coords) >= 2:
point = QgsPointXY(point_coords[0], point_coords[1])
points.append(point)
else:
QMessageBox.warning(None, 'Warning', f"Invalid coordinate format: {point_coords}")
if points:
geom = QgsGeometry.fromMultiPointXY(points)
feature = QgsFeature()
feature.setGeometry(geom)
feature.setAttributes([label, name, description]) # Set attributes
features.append(feature)
# Apply custom icon to the point geometries
icon_path = ':/plugins/Ugix_resources/generic_marker.svg' # Update this path to your icon file
marker_symbol = create_custom_marker_symbol(icon_path)
layer.renderer().setSymbol(marker_symbol)
provider.addFeatures(features)
QgsProject.instance().addMapLayer(layer)
def on_ok_clicked(self):
if not self.access_token:
QMessageBox.warning(None, 'Warning', 'Access token not available. Please log in first.')
return
list_widget = self.dlg.listWidget
selected_item = list_widget.currentItem()
if selected_item is None:
QMessageBox.warning(None, 'Warning', 'No item selected.')
return
item_data = selected_item.data(Qt.UserRole + 1)
if item_data is None:
QMessageBox.warning(None, 'Warning', 'No valid data available for the selected item.')
return
access_policy = item_data.get('accessPolicy', 'Unknown')
if access_policy == 'SECURE':
resource_group = item_data.get('resourceGroup', 'Unknown')
url = f'https://catalogue.ugix.org.in/dataset/{resource_group}'
message_box = QMessageBox()
message_box.setIcon(QMessageBox.Information)
message_box.setWindowTitle('Private Data')
message_box.setText('You do not have access to view this data.')
message_box.setInformativeText('Please visit the UGIX page to request access.')
visit_page_button = message_box.addButton('Visit Page', QMessageBox.ActionRole)
message_box.addButton(QMessageBox.Ok)
message_box.exec_()
if message_box.clickedButton() == visit_page_button:
webbrowser.open(url)
return
item_id = item_data.get('id')
if not item_id:
QMessageBox.warning(None, 'Warning', 'No ID available for the selected item.')
return
progress_dialog = QProgressDialog("Fetching and processing data, please wait...", "Cancel", 0, 100)
progress_dialog.setWindowTitle("Loading")
progress_dialog.setWindowModality(Qt.ApplicationModal)
progress_dialog.setMinimumDuration(0)
progress_dialog.setValue(0)
progress_dialog.setStyleSheet("QLabel { color : black; }")
progress_dialog.show()
QApplication.processEvents()
offset = 1
all_features = []
try:
while True:
url = f'https://geoserver.dx.ugix.org.in/collections/{item_id}/items'
params = {'offset': offset}
headers = {
'Content-Type': 'application/json',
'Authorization': f'Bearer {self.access_token}'
}
response = requests.get(url, params=params, headers=headers)
response.raise_for_status()
response_data = response.json()
features = response_data.get('features', [])
all_features.extend(features)
number_matched = response_data.get('numberMatched', 0)
number_returned = response_data.get('numberReturned', 0)
offset += number_returned
if number_matched > 0:
progress_value = int((offset / number_matched) * 100)
progress_dialog.setValue(progress_value)
QApplication.processEvents()
if offset >= number_matched:
break
except requests.RequestException as e:
progress_dialog.close()
QMessageBox.critical(None, 'Error', f'Failed to fetch data from API: {e}')
if e.response is not None:
QMessageBox.critical(None, 'Error Response', f'Error Response:\n{e.response.text}')
return
if not all_features:
progress_dialog.close()
QMessageBox.information(None, 'Info', 'No features found for the selected item.')
return
first_feature_geometry = all_features[0]['geometry']
geometry_type = first_feature_geometry['type']
crs = QgsProject.instance().crs()
layer_name = item_data.get('label', 'Unnamed Layer')
vector_layer = QgsVectorLayer(f"{geometry_type}?crs={crs.authid()}", layer_name, "memory")
provider = vector_layer.dataProvider()
fields = QgsFields()
property_keys = set()
for feature_data in all_features:
properties = feature_data.get('properties', {})
property_keys.update(properties.keys())
for key in property_keys:
fields.append(QgsField(key, QVariant.String))
provider.addAttributes(fields)
vector_layer.updateFields()
features = []
source_crs = QgsCoordinateReferenceSystem('EPSG:4326')
target_crs = crs
transform_context = QgsProject.instance().transformContext()
coord_transform = QgsCoordinateTransform(source_crs, target_crs, transform_context)
for feature_data in all_features:
geometry = feature_data['geometry']
geom_type = geometry['type']
coords = geometry['coordinates']
properties = feature_data.get('properties', {})
if geom_type == 'Point':
point = QgsPointXY(coords[0], coords[1])
transformed_point = coord_transform.transform(point)
geom = QgsGeometry.fromPointXY(transformed_point)
elif geom_type == 'LineString':
polyline = [QgsPointXY(coord[0], coord[1]) for coord in coords]
transformed_polyline = [coord_transform.transform(point) for point in polyline]
geom = QgsGeometry.fromPolylineXY(transformed_polyline)
elif geom_type == 'Polygon':
polygon = [QgsPointXY(coord[0], coord[1]) for coord in coords[0]]
transformed_polygon = [coord_transform.transform(point) for point in polygon]
geom = QgsGeometry.fromPolygonXY([transformed_polygon])
elif geom_type == 'MultiPoint':
multipoint = [QgsPointXY(coord[0], coord[1]) for coord in coords]
transformed_multipoint = [coord_transform.transform(point) for point in multipoint]
geom = QgsGeometry.fromMultiPointXY(transformed_multipoint)
elif geom_type == 'MultiLineString':
multilinestring = [[QgsPointXY(coord[0], coord[1]) for coord in line] for line in coords]
transformed_multilinestring = [[coord_transform.transform(point) for point in line] for line in multilinestring]
geom = QgsGeometry.fromMultiPolylineXY(transformed_multilinestring)
elif geom_type == 'MultiPolygon':
multipolygon = [[QgsPointXY(coord[0], coord[1]) for coord in ring] for ring in coords[0]]
transformed_multipolygon = [[coord_transform.transform(point) for point in ring] for ring in multipolygon]
geom = QgsGeometry.fromMultiPolygonXY([transformed_multipolygon])
else:
continue
feature = QgsFeature()
feature.setGeometry(geom)
attributes = [properties.get(key, 'No data available') for key in property_keys]
feature.setAttributes(attributes)
features.append(feature)
provider.addFeatures(features)
vector_layer.updateExtents()
QgsProject.instance().addMapLayer(vector_layer)
# Zoom to the extent of the newly added layer
extent = vector_layer.extent()
self.iface.mapCanvas().setExtent(extent)
self.iface.mapCanvas().refresh()
progress_dialog.setValue(100)
progress_dialog.close()
QMessageBox.information(None, 'Info', 'Data successfully loaded and displayed.')
def add_action(
self,
icon_path,
text,
callback,
enabled_flag=True,
add_to_menu=True,
add_to_toolbar=True,
status_tip=None,
whats_this=None,
parent=None):
"""Add a toolbar icon to the toolbar.
:param icon_path: Path to the icon for this action. Can be a resource
path (e.g. ':/plugins/foo/bar.png') or a normal file system path.
:type icon_path: str
:param text: Text that should be shown in menu items for this action.
:type text: str
:param callback: Function to be called when the action is triggered.
:type callback: function
:param enabled_flag: A flag indicating if the action should be enabled
by default. Defaults to True.
:type enabled_flag: bool
:param add_to_menu: Flag indicating whether the action should also
be added to the menu. Defaults to True.
:type add_to_menu: bool
:param add_to_toolbar: Flag indicating whether the action should also
be added to the toolbar. Defaults to True.
:type add_to_toolbar: bool
:param status_tip: Optional text to show in a popup when mouse pointer
hovers over the action.
:type status_tip: str
:param parent: Parent widget for the new action. Defaults None.
:type parent: QWidget
:param whats_this: Optional text to show in the status bar when the
mouse pointer hovers over the action.
:returns: The action that was created. Note that the action is also
added to self.actions list.
:rtype: QAction
"""
icon = QIcon(icon_path)
action = QAction(icon, text, parent)
action.triggered.connect(callback)
action.setEnabled(enabled_flag)
if status_tip is not None:
action.setStatusTip(status_tip)
if whats_this is not None:
action.setWhatsThis(whats_this)
if add_to_toolbar:
# Adds plugin icon to Plugins toolbar
self.iface.addToolBarIcon(action)
if add_to_menu:
self.iface.addPluginToMenu(
self.menu,
action)
self.actions.append(action)
return action
def initGui(self):
"""Create the menu entries and toolbar icons inside the QGIS GUI."""
icon_path = ':/plugins/Ugix_resources/icon.png'
self.add_action(
icon_path,
text=self.tr(u'Ugix_resources'),
callback=self.run,
parent=self.iface.mainWindow())
# will be set False in run()
self.first_start = True
def activate_map_tool(self):
self.canvas.setMapTool(self.map_tool_identify_feature)
def unload(self):
"""Removes the plugin menu item and icon from QGIS GUI."""
for action in self.actions:
self.iface.removePluginMenu(
self.tr(u'&Ugix_resources'),
action)
self.iface.removeToolBarIcon(action)
def run(self):
"""Run method that performs all the real work"""
# Show the login dialog
if self.login_dialog is None:
self.login_dialog = LoginDialog()
if self.login_dialog.exec_() == QDialog.Accepted: # Use QDialog.Accepted
# Only show the main dialog if login is successful
if self.dlg is None:
self.dlg = Ugix_resourcesDialog()
# Assume LoginDialog returns access_token after successful login
self.access_token = self.login_dialog.access_token
# Create and show a QProgressDialog
progress_dialog = QProgressDialog("Logging into your Ugix account, please wait...", None, 0, 0)
progress_dialog.setWindowTitle("Loading")
progress_dialog.setWindowModality(Qt.ApplicationModal)
progress_dialog.setMinimumDuration(0) # Ensure the dialog appears immediately
progress_dialog.setStyleSheet("QLabel { color : black; }")
progress_dialog.show()
# Ensure the progress dialog updates properly
QApplication.processEvents()
# Simulate a delay to ensure the dialog text is displayed (if needed)
for _ in range(5):
time.sleep(0.1)
QApplication.processEvents()
# Fetch data from the API immediately after successful login
url = 'https://dx.ugix.org.in/ugix/cat/v1/search?property=[type]&value=[[iudx:Resource]]'
data = self.fetch_api_data(url)
# Hide the progress dialog once data is fetched
progress_dialog.close()
if data:
self.display_data_in_scroll_area(data)
# Disconnect the signal if it's already connected to prevent duplicate connections
try:
self.dlg.okButton.clicked.disconnect(self.on_ok_clicked)
except TypeError:
pass # No connection was established yet
# Connect OK button click event to on_ok_clicked method
self.dlg.okButton.clicked.connect(self.on_ok_clicked)
self.dlg.show()