-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_algorithm.py
147 lines (119 loc) · 4.92 KB
/
update_algorithm.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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Update
A QGIS plugin
Connects to AvaFrame
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2021-08-26
copyright : (C) 2021 by AvaFrame Team
email : felix@avaframe.org
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
"""
__author__ = "AvaFrame Team"
__date__ = "2022"
__copyright__ = "(C) 2022 by AvaFrame Team"
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = "$Format:%H$"
import subprocess
from qgis.PyQt.QtCore import QCoreApplication
from qgis.core import (
QgsProcessingAlgorithm,
QgsProcessingParameterString,
)
from qgis.PyQt.QtWidgets import (
QMessageBox,
)
class updateAlgorithm(QgsProcessingAlgorithm):
"""
Rename avaframe layers by adding chosen parameters and their values
"""
INPUT = "INPUT"
def initAlgorithm(self, config=None):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
self.addParameter(
QgsProcessingParameterString(
self.INPUT,
self.tr("Dummy input"),
optional=True,
defaultValue="Just leave this",
)
)
def processAlgorithm(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
import avaframe.version as gv
feedback.pushInfo("---------------")
feedback.pushInfo("AvaFrame Version before update: " + gv.getVersion())
feedback.pushInfo("---------------")
feedback.pushInfo("")
gvBefore = str(gv.getVersion())
# September 2024: shapely update is needed for Windows QGis Version 3.22
subprocess.call(["pip3", "install", "--upgrade", "--user", "shapely"])
subprocess.call(["pip3", "install", "--upgrade", "--user", "avaframe"])
gvAfter = str(gv.getVersion())
feedback.pushInfo("---------------")
feedback.pushInfo("AvaFrame Version after update: " + gv.getVersion())
feedback.pushInfo("---------------")
feedback.pushInfo("")
if gvBefore == gvAfter:
feedback.pushInfo("---------------")
feedback.pushInfo(" YOU ALREADY HAVE THE LATEST VERSION")
feedback.pushInfo("---------------")
feedback.pushInfo("")
return {}
def name(self):
"""
Returns the algorithm name, used for identifying the algorithm. This
string should be fixed for the algorithm, and must not be localised.
The name should be unique within each provider. Names should contain
lowercase alphanumeric characters only and no spaces or other
formatting characters.
"""
return "UpdateAvaFrame"
def displayName(self):
"""
Returns the translated algorithm name, which should be used for any
user-visible display of the algorithm name.
"""
return self.tr(self.name())
def group(self):
"""
Returns the name of the group this algorithm belongs to. This string
should be localised.
"""
return self.tr(self.groupId())
def groupId(self):
"""
Returns the unique ID of the group this algorithm belongs to. This
string should be fixed for the algorithm, and must not be localised.
The group id should be unique within each provider. Group id should
contain lowercase alphanumeric characters only and no spaces or other
formatting characters.
"""
return "Admin"
def tr(self, string):
return QCoreApplication.translate("Processing", string)
def shortHelpString(self) -> str:
hstring = "Updates the AvaFrame python package. \n\
The input is purely a dummy input, needed for this \
window to show up. \n\
No need to add anything."
return self.tr(hstring)
def helpUrl(self):
return "https://docs.avaframe.org/en/latest/connector.html"
def createInstance(self):
return updateAlgorithm()