-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathModels.cs
692 lines (612 loc) · 22.7 KB
/
Models.cs
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
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Runtime.Serialization;
using System.Text.Json;
using System.Threading.Tasks;
namespace ClassTranscribeDatabase.Models
{
/// <summary>
/// The models of ClassTranscribe are defined using Code-First approach.
/// For more info, https://www.entityframeworktutorial.net/code-first/what-is-code-first.aspx
///
/// To make any changes to the database schema, the corresponding classes would have to be changed and
/// migrations, for more info.
///
/// https://www.learnentityframeworkcore.com/migrations (this documentation is more helpful, includes information on how to revert migrations)
/// https://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations/?tabs=dotnet-core-cli
///
/// Note: To apply migration using the Package Manager Console, ensure that the selected "Default Project" is
/// "ClassTranscribeDatabase"
///
/// Steps to create migration using command line:
/// 1. Make edits to the entity model in Models.cs and CTDbContext.cs
/// - NOTE: if creating a new entity/table, you must follow the steps in CTDbContext.cs before continuing
/// 2. Open terminal, navigate to the "ClassTranscribeDatabase" directory
/// 3. Install dotnet 3.1.201 from https://github.com/dotnet/core/blob/main/release-notes/3.1/3.1.3/3.1.201-download.md
/// 4. Install dotnet-ef 3.1.4 by running "dotnet tool install --global dotnet-ef --version 3.1.4"
/// 5. Run "dotnet ef migrations add <name of migration>" to create the migration
/// 6. To apply the migration to the database, run "dotnet ef database update"
///
/// </summary>
public enum AccessTypes
{
// Since these are persisted in the database these integer values are immutable once assigned (hence explicit)
Public = 0,
AuthenticatedOnly = 1,
StudentsOnly = 2,
UniversityOnly = 3,
}
public enum Status
{
// Since these are persisted in the database these integer values are immutable once assigned (hence explicit)
Active = 0,
Deleted = 1
}
public enum SourceType
{
// Since these are persisted in the database these integer values are immutable once assigned (hence explicit)
Echo360 = 0,
Youtube = 1,
Local = 2,
Kaltura = 3,
Box = 4
}
public enum Visibility
{
// Since these are persisted in the database these integer values are immutable once assigned (hence explicit)
Visible = 0,
Hidden = 1
}
public enum PublishStatus
{
Published = 0,
NotPublished = 1
}
public enum Editable
{
None = 0,
Limited = 1,
Suggest = 2,
CrowdSource = 3
}
public enum TranscriptionType
{
Caption = 0,
TextDescription = 1
}
/// <summary>
/// This class represents a User of ClassTranscribe.
/// </summary>
public class ApplicationUser : IdentityUser
{
public string FirstName { get; set; }
public string LastName { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<UserOffering> UserOfferings { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public string UniversityId { get; set; }
public virtual University University { get; set; }
public Status Status { get; set; }
[Required]
public JObject Metadata { get; set; } = new JObject();
}
/// <summary>
/// This is a base class to define common properties for all Tables.
///
/// </summary>
public abstract class Entity
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public string Id { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public DateTime CreatedAt { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public string CreatedBy { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public DateTime LastUpdatedAt { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public string LastUpdatedBy { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public Status IsDeletedStatus { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public DateTime? DeletedAt { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
#nullable enable
public string? DeletedBy { get; set; }
#nullable disable
public ResourceType GetResourceType()
{
switch (this)
{
case Course _:
return ResourceType.Course;
case Offering _: return ResourceType.Offering;
case Playlist _: return ResourceType.Playlist;
case Media _: return ResourceType.Media;
case EPub _: return ResourceType.EPub;
default:
break;
}
throw new InvalidOperationException("Invalid Type passed" + this);
}
}
public class University : Entity
{
public string Name { get; set; }
public string Domain { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<Department> Departments { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<Term> Terms { get; set; }
}
public class Department : Entity
{
public string Name { get; set; }
public string Acronym { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<Course> Courses { get; set; }
public string UniversityId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual University University { get; set; }
}
public class Course : Entity
{
public string CourseNumber { get; set; }
public string DepartmentId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Department Department { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<CourseOffering> CourseOfferings { get; set; }
public string FilePath { get; set; }
}
public class Term : Entity
{
public string Name { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string UniversityId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual University University { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<Offering> Offerings { get; set; }
}
public class Offering : Entity
{
public string SectionName { get; set; }
public string TermId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Term Term { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<CourseOffering> CourseOfferings { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<Playlist> Playlists { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<UserOffering> OfferingUsers { get; set; }
public AccessTypes AccessType { get; set; }
public bool LogEventsFlag { get; set; }
public string CourseName { get; set; }
public string Description { get; set; }
[Required]
public JObject JsonMetadata { get; set; } = new JObject();
public Visibility Visibility { get; set; }
public PublishStatus PublishStatus { get; set; }
}
public class Playlist : Entity
{
public string Name { get; set; }
public SourceType SourceType { get; set; }
public string PlaylistIdentifier { get; set; }
public virtual List<Media> Medias { get; set; }
public string OfferingId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Offering Offering { get; set; }
[Required]
public JObject JsonMetadata { get; set; } = new JObject(); // for serverside use
public string Options { get; set; } = "";
public virtual JObject getOptionsAsJson() {
return String.IsNullOrEmpty(this.Options) ? new JObject() : JObject.Parse(this.Options);
}
public virtual void setOptionsAsJson(JObject json) {
this.Options = json.ToString();
}
public int Index { get; set; }
public Visibility Visibility { get; set; }
public PublishStatus PublishStatus { get; set; }
#nullable enable
public DateTime? ListUpdatedAt {get; set; } = null;
public DateTime? ListCheckedAt {get; set; } = null;
#nullable disable
}
public class Media : Entity
{
public SourceType SourceType { get; set; }
public string UniqueMediaIdentifier { get; set; }
[Required]
public JObject JsonMetadata { get; set; } = new JObject();
public string VideoId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Video Video { get; set; }
public string PlaylistId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Playlist Playlist { get; set; }
public string Name { get; set; }
public int Index { get; set; }
public virtual List<WatchHistory> WatchHistories { get; set; }
public Visibility Visibility { get; set; }
public PublishStatus PublishStatus { get; set; }
public string Options { get; set; } = "";
public virtual JObject getOptionsAsJson() {
return String.IsNullOrEmpty(this.Options) ? new JObject() : JObject.Parse(this.Options);
}
public virtual void setOptionsAsJson(JObject json) {
this.Options = json.ToString(Newtonsoft.Json.Formatting.None);
}
}
public class Transcription : Entity
{
[ForeignKey("File")]
public string FileId { get; set; } // Webvtt file
public virtual FileRecord File { get; set; }
public virtual FileRecord SrtFile { get; set; }
public string SrtFileId { get; set; }
public string Language { get; set; }
public string Description { get; set; }
public string VideoId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Video Video { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<Caption> Captions { get; set; }
public PublishStatus PublishStatus { get; set; }
public string SourceLabel { get; set; }
public string SourceInternalRef { get; set; }
public string Label { get; set; }
public Editable Editable { get; set; }
public TranscriptionType TranscriptionType { get; set; }
}
public class Video : Entity
{
[ForeignKey("Video1")]
public string Video1Id { get; set; }
public virtual FileRecord Video1 { get; set; }
[ForeignKey("Video2")]
public string Video2Id { get; set; }
public virtual FileRecord Video2 { get; set; }
[ForeignKey("ProcessedVideo1")]
public string ProcessedVideo1Id { get; set; }
public virtual FileRecord ProcessedVideo1 { get; set; }
[ForeignKey("ProcessedVideo2")]
public string ProcessedVideo2Id { get; set; }
public virtual FileRecord ProcessedVideo2 { get; set; }
[ForeignKey("Audio")]
public string AudioId { get; set; }
public virtual FileRecord Audio { get; set; }
[ForeignKey("ASLVideo")]
public string ASLVideoId { get; set; }
public virtual FileRecord ASLVideo { get; set; }
[ForeignKey("ProcessedASLVideo")]
public string ProcessedASLVideoId { get; set; }
public virtual FileRecord ProcessedASLVideo { get; set; }
public string TaskLog { get; set; }
public string Description { get; set; }
public virtual List<Media> Medias { get; set; }
public string TranscriptionStatus { get; set; }
public int TranscribingAttempts { get; set; }
public virtual List<Transcription> Transcriptions { get; set; }
public virtual List<EPub> EPubs { get; set; }
//public virtual TextData? PhraseHintsData { get; set; }
public bool HasPhraseHints() { return !string.IsNullOrEmpty(PhraseHintsDataId); }
#nullable enable
//[ForeignKey("PhraseHintsData")]
public string? PhraseHintsDataId { get; set; }
// Deprecated - This is too much data to load for each video object
public string? PhraseHints { get; set; } // null if not yet processed
#nullable disable
// Reported duration extracted from MediaInfo. The actual video/audio/caption streams duration could be less
// Returns null if unknown
// TimeSpan.Zero means a video that is actually zero seconds
// See UpdateMediaProperties
public virtual TimeSpan? Duration { get; set; }
[Required]
public JObject SceneData { get; set; } = new JObject();
//[ForeignKey("SceneObjectData")]
public string SceneObjectDataId {get; set;}
public bool HasSceneObjectData() {return ! string.IsNullOrEmpty(SceneObjectDataId);}
[Required]
public JObject JsonMetadata { get; set; } = new JObject();
[Required]
// MediaInfo extracted from the video file
public virtual JObject FileMediaInfo { get; set; } = new JObject();
[Required]
public JObject Glossary { get; set; } = new JObject();
public string GlossaryDataId {get; set;}
public bool HasGlossaryData() {return ! string.IsNullOrEmpty(GlossaryDataId);}
public string GlossaryTimestampId {get; set;}
public bool HasGlossaryTimestamp() {return ! string.IsNullOrEmpty(GlossaryTimestampId);}
public virtual void UpdateMediaProperties()
{
Duration = null;
try
{
string s = (string)FileMediaInfo["format"]["duration"];
Duration = TimeSpan.FromSeconds(Convert.ToDouble(s));
}
catch (Exception)
{
// Could not extract duration. We won't log this
}
}
public async Task DeleteVideoAsync(CTDbContext context)
{
if (Video1 != null)
{
await Video1.DeleteFileRecordAsync(context);
}
if (Video2 != null)
{
await Video2.DeleteFileRecordAsync(context);
}
if (ProcessedVideo1 != null)
{
await ProcessedVideo1.DeleteFileRecordAsync(context);
}
if (ProcessedVideo2 != null)
{
await ProcessedVideo2.DeleteFileRecordAsync(context);
}
if (Audio != null)
{
await Audio.DeleteFileRecordAsync(context);
}
var dbVideoRow = await context.Videos.FindAsync(Id);
if (dbVideoRow != null)
{
if (HasPhraseHints())
{
TextData data= await context.TextData.FindAsync(PhraseHintsDataId);
if(data != null) {
context.TextData.Remove(data);
}
}
if (HasSceneObjectData())
{
TextData data= await context.TextData.FindAsync(SceneObjectDataId);
if(data != null) {
context.TextData.Remove(data);
}
}
if (HasGlossaryData())
{
TextData data= await context.TextData.FindAsync(GlossaryDataId);
if(data != null) {
context.TextData.Remove(data);
}
}
if (HasGlossaryTimestamp())
{
TextData data= await context.TextData.FindAsync(GlossaryTimestampId);
if(data != null) {
context.TextData.Remove(data);
}
}
context.Videos.Remove(dbVideoRow);
await context.SaveChangesAsync();
}
}
public class TranscriptionStatusMessages
{
public static readonly string NOERROR = "NoError";
public static readonly string TIMEOUT = "ServiceTimeout";
};
}
public class CourseOffering : Entity
{
public string CourseId { get; set; }
public string OfferingId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Course Course { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Offering Offering { get; set; }
public string FilePath { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual List<Glossary> Glossaries { get; set; }
}
public class UserOffering : Entity
{
public string OfferingId { get; set; }
public string ApplicationUserId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Offering Offering { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual ApplicationUser ApplicationUser { get; set; }
public string IdentityRoleId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual IdentityRole IdentityRole { get; set; }
}
public class Log : Entity
{
public string UserId { get; set; }
public string OfferingId { get; set; }
public string MediaId { get; set; }
public string EventType { get; set; }
[Required]
public JObject Json { get; set; } = new JObject();
}
public class EPub : Entity
{
public ResourceType SourceType { get; set; }
public string SourceId { get; set; }
public string Title { get; set; }
public string Filename { get; set; }
public string Language { get; set; }
public string Author { get; set; }
public string Publisher { get; set; }
public Visibility Visibility { get; set; }
public PublishStatus PublishStatus { get; set; }
[Required]
public JObject Cover { get; set; } = new JObject();
public List<JObject> Chapters { get; set; }
}
public class WatchHistory : Entity
{
public string MediaId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual Media Media { get; set; }
public string ApplicationUserId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual ApplicationUser ApplicationUser { get; set; }
[Required]
public JObject Json { get; set; } = new JObject();
}
public class TextData : Entity
{
#nullable enable
public string? Text {get; set;}
public void SetFromJSON(JToken? o) {
if(o == null) {
Text = null;
return;
}
Text = o.ToString(Newtonsoft.Json.Formatting.None);
}
public JToken? GetAsJSON() {
if( string.IsNullOrEmpty(Text)) {
return null;
}
return JToken.Parse(Text);
}
public JArray? GetAsJArray()
{
if (string.IsNullOrEmpty(Text))
{
return null;
}
return JArray.Parse(Text);
}
#nullable disable
}
public class Dictionary : Entity
{
public string Key { get; set; }
public string Value { get; set; }
}
public class Glossary : Entity
{
public string Term { get; set; }
public string Link { get; set; }
public string Description { get; set; }
public string Source { get; set; }
public string LicenseTag { get; set; }
public bool Shared { get; set; }
public bool Editable { get; set; }
public string Domain { get; set; }
public int Likes { get; set; }
public string Explanation { get; set; }
public string CourseId { get; set; }
public string OfferingId { get; set; }
[SwaggerIgnore]
[IgnoreDataMember]
public virtual CourseOffering CourseOffering { get; set; }
}
public class ASLVideo : Entity
{
public string Term { get; set; }
public int Kind { get; set; }
public string Text { get; set; }
public string WebsiteURL { get; set; }
public string DownloadURL { get; set; }
public string Source { get; set; }
public string LicenseTag { get; set; }
public string Domain { get; set; }
public int Likes { get; set; }
public string UniqueASLIdentifier { get; set;}
}
public class ASLVideoGlossaryMap : Entity
{
public string GlossaryId { get; set; }
public string ASLVideoId { get; set; }
public bool Published { get; set; }
}
public enum ResourceType
{
// Since these are persisted in the database these integer values are immutable once assigned (hence explicit)
Offering = 0,
Course = 1,
Media = 2,
Playlist = 3,
EPub = 4
}
public enum Ack
{
// Since these are persisted in the database these integer values are immutable once assigned (hence explicit)
Pending = 0,
Seen = 1
}
public class Subscription : Entity
{
public ResourceType ResourceType { get; set; }
public string ResourceId { get; set; }
public virtual ApplicationUser ApplicationUser { get; set; }
public string ApplicationUserId { get; set; }
}
public class Message : Entity
{
public virtual ApplicationUser ApplicationUser { get; set; }
public string ApplicationUserId { get; set; }
[Required]
public JObject Payload { get; set; } = new JObject();
public LogLevel LogLevel { get; set; }
public Ack Ack { get; set; }
}
// TaskItem moved to its own file TaskItem.cs
public class Image : Entity
{
public ResourceType SourceType { get; set; }
public string SourceId { get; set; }
[ForeignKey("ImageFile")]
public string ImageFileId { get; set; }
public virtual FileRecord ImageFile { get; set; }
}
[AttributeUsage(AttributeTargets.Property)]
public class SwaggerIgnoreAttribute : Attribute
{
}
}