forked from MaximeHerpin/modular_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon_updater_ops.py
executable file
·691 lines (552 loc) · 26 KB
/
addon_updater_ops.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
686
687
688
689
690
# ##### BEGIN GPL LICENSE BLOCK #####
#
# 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.
#
# This program 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 this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
import bpy
from .addon_updater import Updater as updater
from bpy.app.handlers import persistent
import os
# Must declare this before classes are loaded
# otherwise the bl_idnames will not match
# must be all lowercase/otherwise valid to include in bl_idname's
updater.addon = "modular_tree"
# -----------------------------------------------------------------------------
# Example operators utilizing Updater
# -----------------------------------------------------------------------------
# simple popup for prompting checking for update & allowing to install if available
class addon_updater_install_popup(bpy.types.Operator):
"""Check and install update if available"""
bl_label = "Update {x} addon".format(x=updater.addon)
bl_idname = updater.addon+".updater_install_popup"
bl_description = "Popup menu to check and display current updates available"
def invoke(self, context, event):
return context.window_manager.invoke_props_dialog(self)
def draw(self, context):
layout = self.layout
if updater.update_ready:
layout.label("Update ready! Press OK to install v"+str(updater.update_version))
# could offer to remove popups here, but window will not close or redraw
# so may be confusing to the user/look like a bug
# row = layout.row()
# row.label("Prevent future popups:")
# row.operator(addon_updater_ignore.bl_idname,text="Ignore update")
elif updater.update_ready:
layout.label("No updates available")
layout.label("Press okay to dismiss dialog")
# add option to force install
else:
# case: updater.update_ready = None
# we have not yet checked for the update
layout.label("Check for update now?")
# potentially in future, could have UI for 'check to select old version'
# to revert back to.
def execute(self,context):
if updater.update_ready:
res = updater.run_update(force=False, callback=post_update_callback)
# should return 0, if not something happened
if updater.verbose:
if res==0: print("Updater returned successful")
else: print("Updater returned "+str(res)+", error occured")
elif updater.update_ready is None:
(update_ready, version, link) = updater.check_for_update(now=True)
# re-launch this dialog
atr = addon_updater_install_popup.bl_idname.split(".")
getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
else:
print("Doing nothing, not ready for update")
return {'FINISHED'}
# User preference check-now operator
class addon_updater_check_now(bpy.types.Operator):
bl_label = "Check now for "+updater.addon+" update"
bl_idname = updater.addon+".updater_check_now"
bl_description = "Check now for an update to the {x} addon".format(
x=updater.addon)
def execute(self, context):
if updater.async_checking:
# Check already happened
# Used here to just avoid constant applying settings below
return
# apply the UI settings
settings = context.user_preferences.addons[__package__].preferences
updater.set_check_interval(enable=settings.auto_check_update,
months=settings.updater_intrval_months,
days=settings.updater_intrval_days,
hours=settings.updater_intrval_hours,
minutes=settings.updater_intrval_minutes
) # optional, if auto_check_update
# input is an optional callback function
# this function should take a bool input, if true: update ready
# if false, no update ready
updater.check_for_update_now()
return {'FINISHED'}
class addon_updater_update_now(bpy.types.Operator):
bl_label = "Update "+updater.addon+" addon now"
bl_idname = updater.addon+".updater_update_now"
bl_description = "Update to the latest verison of the {x} addon".format(
x=updater.addon)
def execute(self, context):
if updater.update_ready:
# if it fails, offer to open the website instead
try:
res = updater.run_update(force=False, callback=post_update_callback)
# should return 0, if not something happened
if updater.verbose:
if res==0: print("Updater returned successful")
else: print("Updater returned "+str(res)+", error occured")
except:
atr = addon_updater_install_manually.bl_idname.split(".")
getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
elif updater.update_ready is None:
(update_ready, version, link) = updater.check_for_update(now=True)
# re-launch this dialog
atr = addon_updater_install_popup.bl_idname.split(".")
getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
elif not updater.update_ready:
self.report({'INFO'}, "Nothing to update")
else:
self.report({'ERROR'}, "Encountered problem while trying to update")
return {'FINISHED'}
class addon_updater_update_target(bpy.types.Operator):
bl_label = updater.addon+" addon version target"
bl_idname = updater.addon+".updater_update_target"
bl_description = "Install a targeted version of the {x} addon".format(
x=updater.addon)
def target_version(self, context):
ret = []
i = 0
for tag in updater.tags:
ret.append((tag, tag, "Select to install version "+tag))
i += 1
return ret
target = bpy.props.EnumProperty(
name="Target version",
description="Select the version to install",
items=target_version
)
@classmethod
def poll(cls, context):
return updater.update_ready is not None and len(updater.tags)>0
def invoke(self, context, event):
return context.window_manager.invoke_props_dialog(self)
def draw(self, context):
layout = self.layout
split = layout.split(percentage=0.66)
subcol = split.column()
subcol.label("Select install version")
subcol = split.column()
subcol.prop(self, "target", text="")
def execute(self, context):
res = updater.run_update(force=False, revert_tag=self.target, callback=post_update_callback)
# should return 0, if not something happened
if updater.verbose:
if res == 0:
print("Updater returned successful")
else:
print("Updater returned " + str(res) + ", error occurred")
return {'FINISHED'}
class addon_updater_install_manually(bpy.types.Operator):
"""As a fallback, direct the user to download the addon manually"""
bl_label = "Install update manually"
bl_idname = updater.addon+".updater_install_manually"
bl_description = "Proceed to manually install update"
def invoke(self, context, event):
return context.window_manager.invoke_popup(self)
def draw(self, context):
layout = self.layout
# use a "failed flag"? it show this label if the case failed.
if False:
layout.label("There was an issue trying to auto-install")
else:
layout.label("Install the addon manually")
layout.label("Press the download button below and install")
layout.label("the zip file like a normal addon.")
# if check hasn't happened, ie accidentally called this menu
# allow to check here
row = layout.row()
if updater.update_link is not None:
row.operator("wm.url_open", text="Direct download").url=updater.update_link
else:
row.operator("wm.url_open", text="(failed to retreive)")
row.enabled = False
if updater.website is not None:
row = layout.row()
row.label("Grab update from account")
row.operator("wm.url_open",text="Open website").url=updater.website
else:
row = layout.row()
row.label("See source website to download the update")
def execute(self,context):
return {'FINISHED'}
class addon_updater_updated_successful(bpy.types.Operator):
"""Addon in place, popup telling user it completed"""
bl_label = "Success"
bl_idname = updater.addon+".updater_update_successful"
bl_description = "Update installation was successful"
bl_options = {'REGISTER', 'UNDO'}
def invoke(self, context, event):
return context.window_manager.invoke_props_popup(self, event)
def draw(self, context):
layout = self.layout
# use a "failed flag"? it show this label if the case failed.
saved = updater.json
if not updater.auto_reload_post_update:
# tell user to restart blender
if "just_restored" in saved and saved["just_restored"]:
layout.label("Addon restored")
layout.label("Restart blender to reload.")
updater.json_reset_restore()
else:
layout.label("Addon successfully installed")
layout.label("Restart blender to reload.")
else:
# reload addon, but still recommend they restart blender
if "just_restored" in saved and saved["just_restored"]:
layout.label("Addon restored")
layout.label("Consider restarting blender to fully reload.")
updater.json_reset_restore()
else:
layout.label("Addon successfully installed.")
layout.label("Consider restarting blender to fully reload.")
def execut(self, context):
return {'FINISHED'}
class addon_updater_restore_backup(bpy.types.Operator):
"""Restore addon from backup"""
bl_label = "Restore backup"
bl_idname = updater.addon+".updater_restore_backup"
bl_description = "Restore addon from backup"
@classmethod
def poll(cls, context):
try:
return os.path.isdir(os.path.join(updater.stage_path, "backup"))
except:
return False
def execute(self, context):
updater.restore_backup()
return {'FINISHED'}
class addon_updater_ignore(bpy.types.Operator):
"""Prevent future update notice popups"""
bl_label = "Ignore update"
bl_idname = updater.addon+".updater_ignore"
bl_description = "Ignore update to prevent future popups"
@classmethod
def poll(cls, context):
if updater.update_ready:
return True
else:
return False
def execute(self, context):
updater.ignore_update()
return {'FINISHED'}
class addon_updater_end_background(bpy.types.Operator):
"""Stop checking for update in the background"""
bl_label = "End background check"
bl_idname = updater.addon+".end_background_check"
bl_description = "Stop checking for update in the background"
def execute(self, context):
updater.stop_async_check_update()
return {'FINISHED'}
# -----------------------------------------------------------------------------
# Handler related, to create popups
# -----------------------------------------------------------------------------
# global vars used to prevent duplicate popup handlers
ran_autocheck_install_popup = False
ran_update_sucess_popup = False
# global var for preventing successive calls
ran_background_check = False
@persistent
def updater_run_success_popup_handler(scene):
global ran_update_sucess_popup
ran_update_sucess_popup = True
try:
bpy.app.handlers.scene_update_post.remove(updater_run_success_popup_handler)
except:
pass
atr = addon_updater_updated_successful.bl_idname.split(".")
getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
@persistent
def updater_run_install_popup_handler(scene):
global ran_autocheck_install_popup
ran_autocheck_install_popup = True
try:
bpy.app.handlers.scene_update_post.remove(updater_run_install_popup_handler)
except:
pass
if "ignore" in updater.json and updater.json["ignore"]:
return # don't do popup if ignore pressed
atr = addon_updater_install_popup.bl_idname.split(".")
getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
# passed into the updater, background thread updater
def background_update_callback(update_ready):
global ran_autocheck_install_popup
if update_ready != True:
return
if updater_run_install_popup_handler not in \
bpy.app.handlers.scene_update_post and \
ran_autocheck_install_popup==False:
bpy.app.handlers.scene_update_post.append(updater_run_install_popup_handler)
ran_autocheck_install_popup = True
# a callback for once the updater has completed
# Only makes sense to use this if "auto_reload_post_update" == False,
# ie don't auto-restart the addon
def post_update_callback():
# this is the same code as in conditional at the end of the register function
# ie if "auto_reload_post_update" == True, comment out this code
if updater.verbose: print("Running post update callback")
atr = addon_updater_updated_successful.bl_idname.split(".")
getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
global ran_update_sucess_popup
ran_update_sucess_popup = True
return
# function for asynchronous background check, which *could* be called on register
def check_for_update_background(context):
global ran_background_check
if ran_background_check:
# Global var ensures check only happens once
return
elif updater.update_ready != None or updater.async_checking:
# Check already happened
# Used here to just avoid constant applying settings below
return
# apply the UI settings
settings = context.user_preferences.addons[__package__].preferences
updater.set_check_interval(enable=settings.auto_check_update,
months=settings.updater_intrval_months,
days=settings.updater_intrval_days,
hours=settings.updater_intrval_hours,
minutes=settings.updater_intrval_minutes
) # optional, if auto_check_update
# input is an optional callback function
# this function should take a bool input, if true: update ready
# if false, no update ready
if updater.verbose: print("Running background check for update")
updater.check_for_update_async(background_update_callback)
ran_background_check = True
# a function that can be placed in front of other operators to launch when pressed
def check_for_update_nonthreaded(self, context):
# only check if it's ready, ie after the time interval specified
# should be the async wrapper call here
settings = context.user_preferences.addons[__package__].preferences
updater.set_check_interval(enable=settings.auto_check_update,
months=settings.updater_intrval_months,
days=settings.updater_intrval_days,
hours=settings.updater_intrval_hours,
minutes=settings.updater_intrval_minutes
) # optional, if auto_check_update
(update_ready, version, link) = updater.check_for_update(now=False)
if update_ready:
atr = addon_updater_install_popup.bl_idname.split(".")
getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
# or manually update the name of the operator bl_label
#bpy.ops.{the updater.addon+".updater_install_popup" text}('INVOKE_DEFAULT')
else:
if updater.verbose: print("No update ready")
self.report({'INFO'}, "No update ready")
# -----------------------------------------------------------------------------
# Example includable UI integrations
# -----------------------------------------------------------------------------
# UI to place e.g. at the end of a UI panel where to notify update available
def update_notice_box_ui(self, context):
saved_state = updater.json
if not updater.auto_reload_post_update:
if "just_updated" in saved_state and saved_state["just_updated"]:
layout = self.layout
layout.label("Restart blender", icon="ERROR")
layout.label("to complete update")
return
if updater.update_ready != True: return
settings = context.user_preferences.addons[__package__].preferences
layout = self.layout
box = layout.box()
col = box.column(align=True)
col.label("Update ready!",icon="ERROR")
col.operator("wm.url_open", text="Open website").url = updater.website
#col.operator("wm.url_open",text="Direct download").url=updater.update_link
# atr = addon_updater_install_manually.bl_idname.split(".")
# getattr(getattr(bpy.ops, atr[0]),atr[1])('INVOKE_DEFAULT')
col.operator(addon_updater_install_manually.bl_idname, "Install manually")
col.operator(addon_updater_update_now.bl_idname,
"Update now", icon="LOOP_FORWARDS") # could also do popup instead
if "ignore" in saved_state and saved_state["ignore"]:
col.label("Popups ignored")
else:
col.operator(addon_updater_ignore.bl_idname,icon="X")
# create a function that can be run inside of a user preferences panel for prefs UI
# place inside UI draw using: addon_updater_ops.updaterSettingsUI(self, context)
# or by: addon_updater_ops.updaterSettingsUI(context)
def update_settings_ui(self, context):
settings = context.user_preferences.addons[__package__].preferences
layout = self.layout
box = layout.box()
# auto-update settings
box.label("Updater Settings")
row = box.row()
# special case to tell user to restart blender, if set that way
if not updater.auto_reload_post_update:
saved_state = updater.json
if "just_updated" in saved_state and saved_state["just_updated"]:
row.label("Restart blender to complete update", icon="ERROR")
return
split = row.split(percentage=0.3)
subcol = split.column()
subcol.prop(settings, "auto_check_update")
subcol = split.column()
if settings.auto_check_update==False: subcol.enabled = False
subrow = subcol.row()
subrow.label("Interval between checks")
subrow = subcol.row(align=True)
checkcol = subrow.column(align=True)
checkcol.prop(settings,"updater_intrval_months")
checkcol = subrow.column(align=True)
checkcol.prop(settings,"updater_intrval_days")
checkcol = subrow.column(align=True)
checkcol.prop(settings,"updater_intrval_hours")
checkcol = subrow.column(align=True)
checkcol.prop(settings,"updater_intrval_minutes")
# checking / managing updates
row = box.row()
col = row.column()
movemosue = False
if updater.error != None:
subcol = col.row(align=True)
subcol.scale_y = 1
split = subcol.split(align=True)
split.enabled = False
split.scale_y = 2
split.operator(addon_updater_check_now.bl_idname,
updater.error)
split = subcol.split(align=True)
split.scale_y = 2
split.operator(addon_updater_check_now.bl_idname,
text="", icon="FILE_REFRESH")
elif updater.update_ready is None and not updater.async_checking:
col.scale_y = 2
col.operator(addon_updater_check_now.bl_idname)
elif updater.update_ready is None: # async is running
subcol = col.row(align=True)
subcol.scale_y = 1
split = subcol.split(align=True)
split.enabled = False
split.scale_y = 2
split.operator(addon_updater_check_now.bl_idname, "Checking...")
split = subcol.split(align=True)
split.scale_y = 2
split.operator(addon_updater_end_background.bl_idname,
text="", icon="X")
elif updater.update_ready: # and updater.update_version != updater.current_version:
col.scale_y = 2
col.operator(addon_updater_update_now.bl_idname, "Update now to "+str(updater.update_version))
else: # ie that updater.update_ready == False
subcol = col.row(align=True)
subcol.scale_y = 1
split = subcol.split(align=True)
split.enabled = False
split.scale_y = 2
split.operator(addon_updater_check_now.bl_idname, "Addon is up to date")
split = subcol.split(align=True)
split.scale_y = 2
split.operator(addon_updater_check_now.bl_idname, text="", icon="FILE_REFRESH")
col = row.column(align=True)
col.operator(addon_updater_update_target.bl_idname, "Reinstall / install old verison")
lastdate = "none found"
backuppath = os.path.join(updater.stage_path,"backup")
if "backup_date" in updater.json and os.path.isdir(backuppath):
if updater.json["backup_date"] == "":
lastdate = "Date not found"
else:
lastdate = updater.json["backup_date"]
backuptext = "Restore addon backup ({x})".format(x=lastdate)
col.operator(addon_updater_restore_backup.bl_idname, backuptext)
row = box.row()
lastcheck = updater.json["last_check"]
if updater.error is not None and updater.error_msg is not None:
row.label(updater.error_msg)
elif movemosue:
row.label("Move mouse if button doesn't update")
elif lastcheck != "" and lastcheck is not None:
lastcheck = lastcheck[0: lastcheck.index(".")]
row.label("Last update check: " + lastcheck)
else:
row.label("Last update check: None")
# -----------------------------------------------------------------------------
# Register, should be run in the register module itself
# -----------------------------------------------------------------------------
# registering the operators in this module
def register(bl_info):
print("Running updater reg")
# choose your own username
updater.user = "maximeherpin"
# choose your own repository
updater.repo = "modular_tree"
#updater.addon = # define at top of module
# Website for manual addon download, optional
updater.website = "https://github.com/MaximeHerpin/modular_tree/wiki"
updater.use_releases = False # ie use tags instead of releases, default True
# used to check/compare versions
updater.current_version = bl_info["version"]
# optional, consider turning off for production or allow as an option
# This will print out additional debugging info to the console
updater.verbose = True
# optional, customize where the addon updater processing subfolder is,
# needs to be within the same folder as the addon itself
# updater.updater_path = # set path of updater folder, by default:
# /addons/{__package__}/{__package__}_updater
# create a backup of the addon when installing other versions
updater.backup_current = True # True by default
# used for development only, "pretend" to install an update to test
# reloading conditions
updater.fake_install = False # Set to true to test callback/reloading
# best practice to ensure failing doesn't create issue with register,
# always enclose in try/except in production
# try:
# updater.check_for_update_async()
# except:
# print("Failed to check for update")
bpy.utils.register_class(addon_updater_install_popup)
bpy.utils.register_class(addon_updater_check_now)
bpy.utils.register_class(addon_updater_update_now)
bpy.utils.register_class(addon_updater_update_target)
bpy.utils.register_class(addon_updater_install_manually)
bpy.utils.register_class(addon_updater_updated_successful)
bpy.utils.register_class(addon_updater_restore_backup)
bpy.utils.register_class(addon_updater_ignore)
bpy.utils.register_class(addon_updater_end_background)
# special situation: we JUST updated the add-on, show a popup
# to tell the user it worked
# should be enclosed in try/catch in case other issues arise
saved_state = updater.json
global ran_update_sucess_popup
if saved_state is not None and "just_updated" in saved_state and saved_state["just_updated"]:
updater.json_reset_postupdate() # so this only runs once
if not updater.auto_reload_post_update: return # no handlers in this case
if updater_run_success_popup_handler not in bpy.app.handlers.scene_update_post and not ran_update_sucess_popup:
bpy.app.handlers.scene_update_post.append(updater_run_success_popup_handler)
ran_update_sucess_popup = True
def unregister():
bpy.utils.unregister_class(addon_updater_install_popup)
bpy.utils.unregister_class(addon_updater_check_now)
bpy.utils.unregister_class(addon_updater_update_now)
bpy.utils.unregister_class(addon_updater_update_target)
bpy.utils.unregister_class(addon_updater_install_manually)
bpy.utils.unregister_class(addon_updater_updated_successful)
bpy.utils.unregister_class(addon_updater_restore_backup)
bpy.utils.unregister_class(addon_updater_ignore)
bpy.utils.unregister_class(addon_updater_end_background)
global ran_autocheck_install_popup
global ran_update_sucess_popup
ran_autocheck_install_popup = False
ran_update_sucess_popup = False
global ran_background_check
ran_background_check = False