-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathACLibImportWizardForm.cls
More file actions
1228 lines (916 loc) · 31.7 KB
/
ACLibImportWizardForm.cls
File metadata and controls
1228 lines (916 loc) · 31.7 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
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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'---------------------------------------------------------------------------------------
' Form: ACLibImportWizardForm
'---------------------------------------------------------------------------------------
'
' Wizard form for import of CodeLib elements
'
' Author:
' Josef Poetzl
'
'---------------------------------------------------------------------------------------
Option Compare Database
Option Explicit
' verwendete Erweiterungen
Private Const EXTENSION_KEY_APPFILE As String = "AppFile"
Private Const APPFILE_PROPNAME_APPICON As String = "AppIcon"
Private Const RepositorySource_LocalRepository As Long = 1
Private Const RepositorySource_GitHub As Long = 2
Private Const RepositorySource_Package As Long = 4
Private Const TEMPDB_TABNAME As String = "tRepositoryFiles"
Private Const TEMPDB_TABDDL As String = "create table " & TEMPDB_TABNAME & " (LocalRepositoryPath varchar(255) primary key, ObjectName varchar(255), Description memo)"
Private m_TempDb As TempDbHandler
Private m_LastSelectionID As Variant
Private WithEvents m_L10nDict As L10nDict
Attribute m_L10nDict.VB_VarHelpID = -1
Private WithEvents m_RepositoryTree As Form_ACLibRepositoryTreeForm
Attribute m_RepositoryTree.VB_VarHelpID = -1
Private WithEvents m_ACLibFileManager As ACLibFileManager
Attribute m_ACLibFileManager.VB_VarHelpID = -1
Private Sub cbxLangCode_AfterUpdate()
With Me.cbxLangCode
If IsNull(.Value) Then
.Value = "EN"
End If
L10n.LangCode = .Value
End With
End Sub
Private Sub Form_Open(Cancel As Integer)
Me.cbxLangCode.Value = L10n.LangCode
L10n.TranslateControls Me.Controls
Set m_L10nDict = L10n
SetFormCaption
End Sub
Private Sub m_ACLibFileManager_MissingLocalRepositoryFile(ByVal ACLibPath As String, ByVal FullFilePath As String)
With ACLibGitHubImporter
CreateDirectoryIfMissing FileTools.PathFromFullFileName(FullFilePath)
.DownloadACLibFileFromWeb ACLibPath, FullFilePath
End With
End Sub
Private Sub m_ACLibFileManager_PropertyMissingLocalRepositoryRootDirectory(NewValue As String)
NewValue = CurrentLocalRepositoryPath & "\"
End Sub
Private Sub m_L10nDict_LanguageChanged()
If Nz(Me.cbxLangCode.Value, vbNullString) <> L10n.LangCode Then
Me.cbxLangCode.Value = L10n.LangCode
End If
SetFormCaption
L10n.TranslateControls Me.Controls
End Sub
Public Sub SetFormCaption()
Dim FormCaption As String
FormCaption = "Access Code Library - Import Wizard " & ChrW(&H25AA) & " (Version " & CurrentApplication.Version & ")"
Me.Caption = FormCaption
End Sub
Private Sub BindTextbox(ByRef TextBoxRef As Textbox, Optional ByVal BaseFolderPath As String = vbNullString)
'Late binding so that ApplicationHandler_DirTextbox class does not have to exist.
Dim DirTextbox As Object ' = ApplicationHandler_DirTextbox
On Error GoTo HandleErr
'Use default instance:
Set DirTextbox = CurrentApplication.Extensions("DirTextbox")
'bind textbox
If Not (DirTextbox Is Nothing) Then
Set DirTextbox.Textbox = TextBoxRef
DirTextbox.BaseFolderPath = BaseFolderPath
End If
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "BindTextbox", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub chkImportTests_AfterUpdate()
CurrentACLibConfiguration.ImportTestsDefaultValue = Nz(Me.chkImportTests.Value, False)
End Sub
Private Sub cmdAddFile_Click()
On Error GoTo HandleErr
AddFileFromFileName Me.txtFileString & ""
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "cmdAddFile_Click", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub cmdClose_Click()
DoCmd.Close acForm, Me.Name
End Sub
Private Sub cmdImportFiles_Click()
Dim FileNameArray() As String
Dim ArraySize As Long, i As Long
Dim lb As ListBox
Dim ACLibFileMngr As ACLibFileManager
On Error GoTo HandleErr
Set lb = Me.lstImportFiles
ArraySize = lb.ListCount
If ArraySize <= 0 Then
MsgBox "No files selected", vbInformation
Exit Sub
End If
ReDim FileNameArray(ArraySize)
For i = 0 To ArraySize - 1
FileNameArray(i) = lb.ItemData(i)
Next
Me.labInfo.Caption = L10n.Text("Import process running ...")
Me.labInfo.Visible = True
Me.Repaint
Set ACLibFileMngr = CurrentACLibFileManager
If (Me.ogRepositorySource And RepositorySource_GitHub) = RepositorySource_GitHub Then
Set m_ACLibFileManager = ACLibFileMngr
Else '
Set m_ACLibFileManager = Nothing
End If
ACLibFileMngr.ImportRepositoryFiles FileNameArray, Nz(Me.ogImportMode.Value, 0), Nz(Me.chkImportTests.Value, False)
Me.labInfo.Caption = L10n.Text("Files have been imported")
Me.Repaint
TempDb.Execute "delete from " & TEMPDB_TABNAME
lb.Requery
Me.SetFocus
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "cmdImportFiles_Click", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub cmdImportFiles_MouseDown(ByRef Button As Integer, ByRef Shift As Integer, ByRef X As Single, ByRef Y As Single)
On Error GoTo HandleErr
If Button = 2 Then
OpenImportFileShortcutMenu
Button = 0
End If
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "cmdImportFiles_MouseDown", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Function OpenImportFileShortcutMenu() As Long
Dim mnu As WinApiShortcutMenu
On Error GoTo HandleErr
Set mnu = New WinApiShortcutMenu
With mnu
Set .MenuControl = Me.cmdOpenMenu
Set .AccessForm = Me
.ControlSection = acDetail
.AddMenuItem 21, L10n.Text("Update all existing objects")
.AddMenuItem 22, L10n.Text("Update all existing CodeModules")
If Me.ogRepositorySource.Value = RepositorySource_LocalRepository Then
.AddMenuItem -2, "", MF_SEPARATOR
.AddMenuItem 31, L10n.Text("Export all existing objects")
.AddMenuItem 32, L10n.Text("Export all existing CodeModules")
.AddMenuItem 41, L10n.Text("Export all existing objects to the application folder")
End If
End With
With CurrentACLibFileManager
Select Case mnu.OpenMenu
Case 21
.RefreshAll clim_ImportAllUsedItems, True
Case 22
.RefreshAllModules clim_ImportAllUsedItems, True
Case 31
.ExportAll
Case 32
.ExportAllModules
Case 41
.ExportAllToApplicationSourceFolder = True
.ExportAll
.ExportAllToApplicationSourceFolder = False
Case Else
'
End Select
End With
Set mnu = Nothing
ExitHere:
On Error Resume Next
Exit Function
HandleErr:
Select Case HandleError(Err.Number, "ShowImportFileShortcutMenu", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Function
Private Sub cmdOpenMenu_Click()
On Error GoTo HandleErr
OpenImportFileShortcutMenu
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "cmdOpenMenu_Click", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub cmdSelectFile_Click()
On Error GoTo HandleErr
If Me.ogRepositorySource.Value = 2 Then
SelectFileFromLocalRepository
Else
SelectFileFromGitHubRepositoryApi
End If
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "cmdSelectFile_Click", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub SelectFileFromGitHubRepositoryApi()
Set m_RepositoryTree = New Form_ACLibRepositoryTreeForm
m_RepositoryTree.Visible = True
End Sub
Private Sub m_RepositoryTree_FilesSelected(ByRef FileArray() As String)
Set m_RepositoryTree = Nothing
DownLoadFiles FileArray
AddFiles FileArray
End Sub
Private Sub DownLoadFiles(ByRef FileArray() As String)
Dim RepoPath As String
Dim i As Long
Dim TargetFilePath As String
RepoPath = CurrentLocalRepositoryPath & "\"
With ACLibGitHubImporter
For i = LBound(FileArray) To UBound(FileArray)
TargetFilePath = RepoPath & Replace(FileArray(i), "/", "\")
CreateDirectoryIfMissing FileTools.PathFromFullFileName(TargetFilePath)
.DownloadACLibFileFromWeb FileArray(i), TargetFilePath
FileArray(i) = TargetFilePath
Next
End With
End Sub
Private Function DownLoadFile(ByRef ACLibPath As String) As String
Dim RepoPath As String
Dim TargetFilePath As String
RepoPath = CurrentLocalRepositoryPath & "\"
With ACLibGitHubImporter
TargetFilePath = RepoPath & Replace(ACLibPath, "/", "\")
CreateDirectoryIfMissing FileTools.PathFromFullFileName(TargetFilePath)
.DownloadACLibFileFromWeb ACLibPath, TargetFilePath
End With
DownLoadFile = TargetFilePath
End Function
Private Sub SelectFileFromLocalRepository()
Static LastStartFolder As String
Dim StartFolder As String
Dim SelectedFiles As String
Dim FileArray() As String
Dim Pos As Long
On Error GoTo HandleErr
StartFolder = Replace(GetDirFromFullFileName(Me.txtFileString.Value & ""), "/", "\")
If Len(StartFolder) = 0 Then
StartFolder = LastStartFolder
End If
If Len(StartFolder) > 0 Then
Do While Left$(StartFolder, 1) = "\"
StartFolder = Mid$(StartFolder, 1)
If Len(StartFolder) = 0 Then Exit Do
Loop
End If
If Mid(StartFolder, 2, 1) <> ":" Then
StartFolder = CurrentLocalRepositoryPath & StartFolder
End If
Do While Not DirExists(StartFolder)
Pos = InStrRev(StartFolder, "\")
If Pos = 0 Then Exit Do
StartFolder = Left$(StartFolder, Pos - 1)
Loop
Me.sysFirst.SetFocus
Me.cmdSelectFile.SetFocus
SelectedFiles = SelectFile(StartFolder, , , True)
If Len(SelectedFiles) = 0 Then
Exit Sub
End If
FileArray = Split(SelectedFiles, "|")
AddFiles FileArray
LastStartFolder = Replace(GetDirFromFullFileName(FileArray(0)), CurrentLocalRepositoryPath, vbNullString)
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "SelectFileFromLocalRepository", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub AddFiles(ByRef FileArray() As String)
Dim lb As ListBox
Dim i As Long
Dim ArraySize As Long
Dim cli As CodeLibInfo
On Error GoTo HandleErr
ArraySize = UBound(FileArray)
Set lb = Me.lstImportFiles
For i = 0 To ArraySize
cli = CurrentACLibFileManager.GetCodeLibInfoFromFilePath(FileArray(i))
TempDb.Execute "insert into " & TEMPDB_TABNAME & " (ObjectName, LocalRepositoryPath, Description) VALUES (" & _
SqlTools.TextToSqlText(cli.Name) & ", " & SqlTools.TextToSqlText(GetLocalRepositoryPath(FileArray(i))) & _
", " & SqlTools.TextToSqlText(cli.Description) & ")", dbFailOnError
Next
lb.Requery
Me.labInfo.Visible = (lb.ListCount = 0)
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "cmdSelectFile_Click", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Function GetLocalRepositoryPath(ByRef FullPath As String) As String
On Error GoTo HandleErr
GetLocalRepositoryPath = Replace(GetRelativPathFromFullPath(Replace(FullPath, "/", "\"), CurrentLocalRepositoryPath, False), "\", "/")
ExitHere:
On Error Resume Next
Exit Function
HandleErr:
Select Case HandleError(Err.Number, "getLocalRepositoryPath", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Function
Private Property Get CurrentLocalRepositoryPath() As String
On Error GoTo HandleErr
If Me.ogRepositorySource.Value = RepositorySource_LocalRepository Then
CurrentLocalRepositoryPath = Me.txtLocalRepositoryPath.Value
Else
CurrentLocalRepositoryPath = GitHubTempRepositoryPath
End If
ExitHere:
On Error Resume Next
Exit Property
HandleErr:
Select Case HandleError(Err.Number, "CurrentLocalRepositoryPath", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Property
Private Property Get GitHubTempRepositoryPath() As String
'Dim TempRoot As String
'TempRoot = FileTools.TempPath & "ACLibTempRepo"
'FileTools.CreateDirectoryIfMissing TempRoot
GitHubTempRepositoryPath = FileTools.TempPath & "ACLibTempRepo"
End Property
Private Sub RemoveTempFiles()
If FileTools.DirExists(GitHubTempRepositoryPath) Then
CreateObject("Scripting.FileSystemObject").DeleteFolder GitHubTempRepositoryPath, True
End If
End Sub
Private Sub cmdSelectLocalRepository_Click()
Dim SelectedRepositoryPath As String
On Error GoTo HandleErr
SelectedRepositoryPath = SelectFolder(Nz(Me.txtLocalRepositoryPath, vbNullString), "Lokalen Repository-Ordner auswählen", , False, 1)
If Len(SelectedRepositoryPath) > 0 Then
If Right$(SelectedRepositoryPath, 1) = "\" Then
SelectedRepositoryPath = Left$(SelectedRepositoryPath, Len(SelectedRepositoryPath) - 1)
End If
SetLocalRepositoryPath SelectedRepositoryPath
End If
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "cmdSelectLocalRepository_Click", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub SetEnableMode()
On Error GoTo HandleErr
Me.cmdImportFiles.Enabled = Len(Me.txtLocalRepositoryPath.Value & vbNullString) > 0
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "setEnableMode", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub Form_Load()
On Error GoTo HandleErr
With CurrentApplication
Me.Caption = .ApplicationTitle & " " & ChrW(&H25AA) & " Version " & .Version
End With
LoadIconFromAppFiles
With CurrentACLibConfiguration
Me.txtLocalRepositoryPath.Value = .LocalRepositoryPath
Me.txtGitHubAuthPersonalAccessToken.Value = .GitHubAuthPersonalAccessToken
Me.chkImportTests.Value = .ImportTestsDefaultValue
End With
ConfigReproSourceMode 1 + Abs(Len(Me.txtLocalRepositoryPath.Value & vbNullString) > 0)
EnableCodeModuleDescription Me.tbViewCodeModuleDescription.Value
SetEnableMode
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "Form_Load", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub ConfigReproSourceMode(Optional NewMode As Long = 0)
Dim UseLocalRepo As Boolean
With Me.ogRepositorySource
If NewMode > 0 Then
.Value = NewMode
End If
UseLocalRepo = (.Value = RepositorySource_LocalRepository)
End With
Me.txtLocalRepositoryPath.Visible = UseLocalRepo
Me.cmdSelectLocalRepository.Visible = UseLocalRepo
Me.txtGitHubAuthPersonalAccessToken.Visible = Not UseLocalRepo
Me.labRepositoryData.Visible = Not UseLocalRepo
Me.txtRepoOwner.Visible = Not UseLocalRepo
Me.txtRepoName.Visible = Not UseLocalRepo
Me.txtRepoBranch.Visible = Not UseLocalRepo
SetACLibGitHubImporterConfig
End Sub
Private Sub SetACLibGitHubImporterConfig()
If (Me.ogRepositorySource.Value And RepositorySource_GitHub) = RepositorySource_GitHub Then
If Len(Me.txtGitHubAuthPersonalAccessToken.Value) > 0 Then
ACLibGitHubImporter.GitHubApiAuthorizationToken = Me.txtGitHubAuthPersonalAccessToken.Value
End If
If (Me.ogRepositorySource.Value And RepositorySource_Package) = RepositorySource_Package Then
SetRepositoryData "AccessCodeLib", "ACLibImportWizard-Package", "main"
ElseIf Me.txtRepoName.Value = "ACLibImportWizard-Package" Then
SetRepositoryData "AccessCodeLib", "AccessCodeLib", "master"
End If
End If
End Sub
Private Sub SetRepositoryData(ByVal RepositoryOwner As String, ByVal RepositoryName As String, ByVal BranchName As String)
Me.txtRepoOwner.Value = RepositoryOwner
Me.txtRepoName.Value = RepositoryName
Me.txtRepoBranch.Value = BranchName
ACLibGitHubImporter.RepositoryOwner = RepositoryOwner
ACLibGitHubImporter.RepositoryName = RepositoryName
ACLibGitHubImporter.BranchName = BranchName
End Sub
Private Sub Form_Unload(ByRef Cancel As Integer)
On Error Resume Next
If Not (m_TempDb Is Nothing) Then
Me.lstImportFiles.RowSource = vbNullString
DBEngine.Idle dbRefreshCache
m_TempDb.Dispose
End If
RemoveTempFiles
DisposeCurrentApplicationHandler
End Sub
Private Sub lstImportFiles_AfterUpdate()
RefreshCodeModuleDescription
End Sub
Private Sub lstImportFiles_DblClick(ByRef Cancel As Integer)
OpenSelectItemFormImportFilesListboxInTextViewer
End Sub
Private Sub lstImportFiles_KeyDown(ByRef KeyCode As Integer, ByRef Shift As Integer)
On Error GoTo HandleErr
If KeyCode = vbKeyDelete Then
RemoveSelectedItemsFromListbox
ElseIf KeyCode = vbKeyF2 Then
OpenSelectItemFormImportFilesListboxInTextViewer
End If
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "lstImportFiles_KeyDown", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub RemoveSelectedItemsFromListbox()
Dim lb As ListBox
Dim SelectedItem As Variant
Dim ItemFilter As String
On Error GoTo HandleErr
Set lb = Me.lstImportFiles
For Each SelectedItem In lb.ItemsSelected
ItemFilter = ", " & SqlTools.TextToSqlText(lb.Column(1, SelectedItem))
Next
If Len(ItemFilter) <= 2 Then
Exit Sub
End If
ItemFilter = Mid$(ItemFilter, 3)
TempDb.Execute "delete from " & TEMPDB_TABNAME & " where LocalRepositoryPath IN (" & ItemFilter & ")"
lb.Requery
RefreshCodeModuleDescription
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "removeSelectedItemsFormListbox", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub lstImportFiles_LostFocus()
On Error Resume Next
m_LastSelectionID = Me.lstImportFiles.Column(1)
Me.lstImportFiles = Null
End Sub
Private Sub m_RepositoryTree_Unload()
Set m_RepositoryTree = Nothing
End Sub
Private Sub ogRepositorySource_AfterUpdate()
ConfigReproSourceMode
End Sub
Private Sub tbViewCodeModuleDescription_AfterUpdate()
EnableCodeModuleDescription Me.tbViewCodeModuleDescription.Value
If Len(m_LastSelectionID) > 0 Then
SelectListItem m_LastSelectionID
End If
End Sub
Private Sub SelectListItem(ByVal ItemID As String)
Dim i As Long
Dim lb As ListBox
Set lb = Me.lstImportFiles
For i = 0 To (lb.ListCount - 1)
If lb.Column(1, i) = ItemID Then
lb.SetFocus
lb.Selected(i) = True
RefreshCodeModuleDescriptionFromId ItemID, lb.Column(0, i)
Exit Sub
End If
Next
End Sub
Private Sub txtFileString_GotFocus()
On Error Resume Next
If Me.ogRepositorySource = RepositorySource_LocalRepository Then
BindTextbox Me.txtFileString, CurrentLocalRepositoryPath
End If
End Sub
Private Sub txtFileString_KeyDown(ByRef KeyCode As Integer, ByRef Shift As Integer)
On Error GoTo HandleErr
If KeyCode = vbKeyReturn Then
If Me.txtFileString.Text = ".." Then
Exit Sub
ElseIf Replace(Right$(Me.txtFileString.Text, 3), "/", "\") = "\.." Then
Exit Sub
Else
AddFileFromFileName Me.txtFileString.Text
KeyCode = 0
End If
ElseIf KeyCode = vbKeyF2 Then
OpenRepositoryFileInTextViewer Me.txtFileString.Text
KeyCode = 0
End If
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "txtFileString_KeyDown", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub AddFileFromFileName(ByVal ACLibFileString As String)
Dim FileString As String
Dim FileArray(0) As String
On Error GoTo HandleErr
If (Me.ogRepositorySource.Value And RepositorySource_GitHub) = RepositorySource_GitHub Then
FileArray(0) = ACLibFileString
DownLoadFiles FileArray
AddFiles FileArray
Else
FileString = Trim$(Replace(ACLibFileString, "/", "\"))
If Len(FileString) > 0 Then
Do While Left$(FileString, 1) = "\"
FileString = Trim$(Mid$(FileString, 2))
If Len(FileString) = 0 Then Exit Sub
Loop
AddFile CurrentLocalRepositoryPath & FileString
End If
End If
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "addFileFromFileName", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Function AddFile(ByRef NewFileName As String) As Boolean
Dim FileArray(0) As String
On Error GoTo HandleErr
If Len(NewFileName) = 0 Then
Exit Function
End If
NewFileName = Replace(NewFileName, "\\", "\")
If Not FileExists(NewFileName) Then
MsgBox "This file does not exist", vbInformation
AddFile = False
Exit Function
End If
FileArray(0) = NewFileName
AddFiles FileArray
AddFile = True
ExitHere:
On Error Resume Next
Exit Function
HandleErr:
Select Case HandleError(Err.Number, "addFile", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Function
Private Sub txtGitHubAuthPersonalAccessToken_AfterUpdate()
On Error GoTo HandleErr
SetGitHubAuthPersonalAccessToken Me.txtGitHubAuthPersonalAccessToken & vbNullString
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "txtLocalRepositoryPath_AfterUpdate", Err.Description, ACLibErrorHandlerMode.aclibErrMsgBox)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub SetGitHubAuthPersonalAccessToken(ByVal NewAuthToken As String)
On Error GoTo HandleErr
CurrentACLibConfiguration.GitHubAuthPersonalAccessToken = NewAuthToken
'so that possible modifications from CurrentACLibConfiguration are taken over:
Me.txtGitHubAuthPersonalAccessToken.Value = CurrentACLibConfiguration.GitHubAuthPersonalAccessToken
ACLibGitHubImporter.GitHubApiAuthorizationToken = Me.txtGitHubAuthPersonalAccessToken.Value
SetEnableMode
ExitHere:
On Error Resume Next
Exit Sub
HandleErr:
Select Case HandleError(Err.Number, "SetGitHubAuthPersonalAccessToken", Err.Description, ACLibErrorHandlerMode.aclibErrRaise)
Case ACLibErrorResumeMode.aclibErrResume
Resume
Case ACLibErrorResumeMode.aclibErrResumeNext
Resume Next
Case Else
Resume ExitHere
End Select
End Sub
Private Sub txtLocalRepositoryPath_AfterUpdate()
On Error GoTo HandleErr
SetLocalRepositoryPath Me.txtLocalRepositoryPath & vbNullString
ExitHere: