@takeoffmedia/react-native-penthera 0.2.41 → 0.2.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/src/main/java/com/takeoffmediareactnativepenthera/AssetQueueObserver.kt +13 -35
- package/android/src/main/java/com/takeoffmediareactnativepenthera/virtuoso/OfflineVideoEngine.kt +6 -2
- package/ios/Penthera.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/Penthera.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/Penthera.xcodeproj/project.xcworkspace/xcuserdata/joseguerreroot.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/Penthera.xcodeproj/xcuserdata/joseguerreroot.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +104 -0
- package/ios/Penthera.xcodeproj/xcuserdata/joseguerreroot.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/package.json +1 -1
|
@@ -6,12 +6,15 @@ import com.penthera.virtuososdk.client.IAsset
|
|
|
6
6
|
import com.penthera.virtuososdk.client.IAssetManager
|
|
7
7
|
import com.penthera.virtuososdk.client.IIdentifier
|
|
8
8
|
import com.penthera.virtuososdk.client.Observers
|
|
9
|
+
import com.penthera.virtuososdk.client.Virtuoso
|
|
9
10
|
import com.takeoffmediareactnativepenthera.virtuoso.OfflineVideoEngine
|
|
10
11
|
|
|
11
|
-
class AssetQueueObserver(mOfflineVideo : OfflineVideoEngine) : Observers.IQueueObserver {
|
|
12
|
+
class AssetQueueObserver(mOfflineVideo : OfflineVideoEngine, virtuoso: Virtuoso) : Observers.IQueueObserver {
|
|
12
13
|
|
|
13
14
|
private var lastProgress : Int = -1
|
|
14
15
|
private var mOfflineVideo : OfflineVideoEngine = mOfflineVideo
|
|
16
|
+
private var istanceVirtuoso: Virtuoso = virtuoso
|
|
17
|
+
|
|
15
18
|
|
|
16
19
|
override fun engineStartedDownloadingAsset(aAsset: IIdentifier) {
|
|
17
20
|
val updateAsset = aAsset as IAsset
|
|
@@ -87,61 +90,36 @@ class AssetQueueObserver(mOfflineVideo : OfflineVideoEngine) : Observers.IQueueO
|
|
|
87
90
|
|
|
88
91
|
var progress = (asset.fractionComplete * 100.0).toInt()
|
|
89
92
|
EventEmitter.sharedInstance.dispatch("penthera", PentheraEvent.PROGRESS_UPDATED, it.assetId, progress.toString())
|
|
90
|
-
// Not a repeated progress -- Keep context switches minimal due to frequency of messages, unless forced
|
|
91
93
|
if (forceUpdate || progress != lastProgress) {
|
|
92
94
|
val assetStatus : String
|
|
93
95
|
val value: String
|
|
94
96
|
val status = asset.downloadStatus
|
|
97
|
+
val allowableStorageRemaining = istanceVirtuoso.allowableStorageRemaining
|
|
95
98
|
when (status) {
|
|
96
|
-
|
|
97
99
|
Common.AssetStatus.DOWNLOADING -> {
|
|
98
100
|
assetStatus = "Downloading"
|
|
99
101
|
value = "downloading"
|
|
100
102
|
}
|
|
101
|
-
|
|
102
|
-
Common.AssetStatus.DOWNLOAD_COMPLETE -> {
|
|
103
|
-
assetStatus = "Downloading"
|
|
104
|
-
value = "complete"
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
Common.AssetStatus.EXPIRED -> {
|
|
108
|
-
assetStatus = "Expired"
|
|
109
|
-
value = "expired"
|
|
110
|
-
}
|
|
111
|
-
|
|
112
103
|
Common.AssetStatus.DOWNLOAD_DENIED_ASSET -> {
|
|
113
104
|
assetStatus = "Queued"
|
|
114
105
|
value = "The asset has already been downloaded as many times as permitted. To download this asset again, administrative action is required."
|
|
115
106
|
}
|
|
116
|
-
|
|
117
|
-
Common.AssetStatus.DOWNLOAD_DENIED_ACCOUNT -> {
|
|
118
|
-
assetStatus = "Queued"
|
|
119
|
-
value = "DENIED : MDA"
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
Common.AssetStatus.DOWNLOAD_DENIED_EXTERNAL_POLICY -> {
|
|
123
|
-
assetStatus = "Queued"
|
|
124
|
-
value = "DENIED : EXT"
|
|
125
|
-
}
|
|
126
|
-
|
|
127
107
|
Common.AssetStatus.DOWNLOAD_DENIED_MAX_DEVICE_DOWNLOADS -> {
|
|
128
108
|
assetStatus = "Queued"
|
|
129
|
-
value = "
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
Common.AssetStatus.DOWNLOAD_BLOCKED_AWAITING_PERMISSION -> {
|
|
133
|
-
assetStatus = "Queued"
|
|
134
|
-
value = "AWAITING PERMISSION"
|
|
109
|
+
value = "There are already as many downloads as permitted on this account. To continue downloading, the user must delete downloaded assets from one of their devices."
|
|
135
110
|
}
|
|
136
|
-
|
|
137
111
|
Common.AssetStatus.DOWNLOAD_DENIED_COPIES -> {
|
|
138
112
|
assetStatus = "Queued"
|
|
139
113
|
value = "There are already as many downloaded copies of this asset as permitted on this account. To continue downloading, the user must delete a copy of this asset from one of their devices."
|
|
140
114
|
}
|
|
141
|
-
|
|
142
115
|
else -> {
|
|
143
|
-
|
|
144
|
-
|
|
116
|
+
if(allowableStorageRemaining == 0L) {
|
|
117
|
+
assetStatus = "Queued"
|
|
118
|
+
value = "Insufficient storage for download"
|
|
119
|
+
} else {
|
|
120
|
+
assetStatus = "Queued"
|
|
121
|
+
value = "pending"
|
|
122
|
+
}
|
|
145
123
|
}
|
|
146
124
|
}
|
|
147
125
|
if(assetStatus !== "Downloading"){
|
package/android/src/main/java/com/takeoffmediareactnativepenthera/virtuoso/OfflineVideoEngine.kt
CHANGED
|
@@ -46,7 +46,7 @@ class OfflineVideoEngine(private val context: ReactApplicationContext) {
|
|
|
46
46
|
|
|
47
47
|
private fun getVirtuoso(activity: Activity): Virtuoso {
|
|
48
48
|
virtuoso = Virtuoso(context)
|
|
49
|
-
queueObserver = AssetQueueObserver(this)
|
|
49
|
+
queueObserver = AssetQueueObserver(this, virtuoso)
|
|
50
50
|
onResume()
|
|
51
51
|
return virtuoso
|
|
52
52
|
}
|
|
@@ -101,7 +101,10 @@ class OfflineVideoEngine(private val context: ReactApplicationContext) {
|
|
|
101
101
|
val item = data["item"] as JSONObject
|
|
102
102
|
val url = data["url"].toString()
|
|
103
103
|
assetId = item["id"].toString()
|
|
104
|
-
|
|
104
|
+
|
|
105
|
+
var metadata = item["data"]
|
|
106
|
+
(metadata as JSONObject).put("drmContent", item["drmContent"])
|
|
107
|
+
metadata = metadata.toString()
|
|
105
108
|
val params = MPDAssetBuilder().apply {
|
|
106
109
|
assetId(assetId)
|
|
107
110
|
manifestUrl(URL(url))
|
|
@@ -126,6 +129,7 @@ class OfflineVideoEngine(private val context: ReactApplicationContext) {
|
|
|
126
129
|
val columnNames = cursor?.columnNames
|
|
127
130
|
|
|
128
131
|
while (cursor?.moveToNext() == true && columnNames != null) {
|
|
132
|
+
val assetManager = virtuoso.assetManager
|
|
129
133
|
val dataMap = mutableMapOf<String, Any>()
|
|
130
134
|
for (columnName in columnNames) {
|
|
131
135
|
val columnIndex = cursor.getColumnIndex(columnName)
|
|
Binary file
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Bucket
|
|
3
|
+
uuid = "3AE98629-7421-4561-B12C-C06B8B6A3023"
|
|
4
|
+
type = "1"
|
|
5
|
+
version = "2.0">
|
|
6
|
+
<Breakpoints>
|
|
7
|
+
<BreakpointProxy
|
|
8
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
9
|
+
<BreakpointContent
|
|
10
|
+
uuid = "A5D166B0-3C57-4F4D-A845-BDB81498DA0F"
|
|
11
|
+
shouldBeEnabled = "No"
|
|
12
|
+
ignoreCount = "0"
|
|
13
|
+
continueAfterRunningActions = "No"
|
|
14
|
+
filePath = "Penthera.swift"
|
|
15
|
+
startingColumnNumber = "9223372036854775807"
|
|
16
|
+
endingColumnNumber = "9223372036854775807"
|
|
17
|
+
startingLineNumber = "18"
|
|
18
|
+
endingLineNumber = "18"
|
|
19
|
+
landmarkName = "Penthera"
|
|
20
|
+
landmarkType = "3">
|
|
21
|
+
</BreakpointContent>
|
|
22
|
+
</BreakpointProxy>
|
|
23
|
+
<BreakpointProxy
|
|
24
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
25
|
+
<BreakpointContent
|
|
26
|
+
uuid = "5D7AE47B-D5FC-4468-A75B-C414F3F8A58C"
|
|
27
|
+
shouldBeEnabled = "No"
|
|
28
|
+
ignoreCount = "0"
|
|
29
|
+
continueAfterRunningActions = "No"
|
|
30
|
+
filePath = "Penthera.swift"
|
|
31
|
+
startingColumnNumber = "9223372036854775807"
|
|
32
|
+
endingColumnNumber = "9223372036854775807"
|
|
33
|
+
startingLineNumber = "25"
|
|
34
|
+
endingLineNumber = "25"
|
|
35
|
+
landmarkName = "updateStatusInfo()"
|
|
36
|
+
landmarkType = "7">
|
|
37
|
+
</BreakpointContent>
|
|
38
|
+
</BreakpointProxy>
|
|
39
|
+
<BreakpointProxy
|
|
40
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
41
|
+
<BreakpointContent
|
|
42
|
+
uuid = "E3C50B30-46CF-4D56-8C49-C257C70E0ACC"
|
|
43
|
+
shouldBeEnabled = "No"
|
|
44
|
+
ignoreCount = "0"
|
|
45
|
+
continueAfterRunningActions = "No"
|
|
46
|
+
filePath = "Penthera.swift"
|
|
47
|
+
startingColumnNumber = "9223372036854775807"
|
|
48
|
+
endingColumnNumber = "9223372036854775807"
|
|
49
|
+
startingLineNumber = "26"
|
|
50
|
+
endingLineNumber = "26"
|
|
51
|
+
landmarkName = "updateStatusInfo()"
|
|
52
|
+
landmarkType = "7">
|
|
53
|
+
</BreakpointContent>
|
|
54
|
+
</BreakpointProxy>
|
|
55
|
+
<BreakpointProxy
|
|
56
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
57
|
+
<BreakpointContent
|
|
58
|
+
uuid = "75EF43BF-56FF-4727-B372-E1A0EBC02C61"
|
|
59
|
+
shouldBeEnabled = "Yes"
|
|
60
|
+
ignoreCount = "0"
|
|
61
|
+
continueAfterRunningActions = "No"
|
|
62
|
+
filePath = "Penthera.swift"
|
|
63
|
+
startingColumnNumber = "9223372036854775807"
|
|
64
|
+
endingColumnNumber = "9223372036854775807"
|
|
65
|
+
startingLineNumber = "101"
|
|
66
|
+
endingLineNumber = "101"
|
|
67
|
+
landmarkName = "initializeSdk(user:backplaneUrl:publicKey:privateKey:resolve:reject:)"
|
|
68
|
+
landmarkType = "7">
|
|
69
|
+
</BreakpointContent>
|
|
70
|
+
</BreakpointProxy>
|
|
71
|
+
<BreakpointProxy
|
|
72
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
73
|
+
<BreakpointContent
|
|
74
|
+
uuid = "EF36B51B-4FC2-4989-A791-180E3212EFE3"
|
|
75
|
+
shouldBeEnabled = "Yes"
|
|
76
|
+
ignoreCount = "0"
|
|
77
|
+
continueAfterRunningActions = "No"
|
|
78
|
+
filePath = "Penthera.swift"
|
|
79
|
+
startingColumnNumber = "9223372036854775807"
|
|
80
|
+
endingColumnNumber = "9223372036854775807"
|
|
81
|
+
startingLineNumber = "149"
|
|
82
|
+
endingLineNumber = "149"
|
|
83
|
+
landmarkName = "getDownloadedAsset(assetID:)"
|
|
84
|
+
landmarkType = "7">
|
|
85
|
+
</BreakpointContent>
|
|
86
|
+
</BreakpointProxy>
|
|
87
|
+
<BreakpointProxy
|
|
88
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
89
|
+
<BreakpointContent
|
|
90
|
+
uuid = "C467C00E-2428-4D24-843A-E7CDF28CB553"
|
|
91
|
+
shouldBeEnabled = "Yes"
|
|
92
|
+
ignoreCount = "0"
|
|
93
|
+
continueAfterRunningActions = "No"
|
|
94
|
+
filePath = "Penthera.swift"
|
|
95
|
+
startingColumnNumber = "9223372036854775807"
|
|
96
|
+
endingColumnNumber = "9223372036854775807"
|
|
97
|
+
startingLineNumber = "148"
|
|
98
|
+
endingLineNumber = "148"
|
|
99
|
+
landmarkName = "getDownloadedAsset(assetID:)"
|
|
100
|
+
landmarkType = "7">
|
|
101
|
+
</BreakpointContent>
|
|
102
|
+
</BreakpointProxy>
|
|
103
|
+
</Breakpoints>
|
|
104
|
+
</Bucket>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Penthera.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|