-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMedia.sol
235 lines (193 loc) · 6.91 KB
/
Media.sol
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
pragma solidity ^0.4.18;
// 0x1f01c52dc7c39d7fcf86cd1e877ad4bef7e862b5
contract MediaContract {
struct Media {
uint id;
address creator;
bytes32 name;
address[] stakeholders;
uint[] costCompany;
uint[] costIndividual;
}
struct PurchasedMediaDetails {
uint id;
bytes32 name;
string encURL;
string pubKey;
}
Media[] public allMedia;
uint public latestID;
mapping(address => bool) public isCreator;
mapping(address => bool) public isIndividual;
mapping(address => bool) public isCompany;
mapping(address => PurchasedMediaDetails[]) public purchasedMedia;
mapping(uint => Media) public mediaMap;
//Invalid payments
mapping(address => uint) public pendingReturns;
event PurchaseFailed(bytes32 reason, address buyer, uint mediaID);
event PaymentSuccessful(address buyer, uint mediaID, address creator, string pubKey);
event EncURLAdded(address buyer, uint mediaID);
event MediaCreated(bytes32 name, address creator, uint mediaID);
function MediaContract(address[] users, uint[] userType) public {
require(users.length == userType.length);
for(uint i=0;i<users.length;i++) {
if(userType[i] == 1) {
isCreator[users[i]] = true;
} else if(userType[i] == 2) {
isIndividual[users[i]] = true;
} else if(userType[i] == 3) {
isCompany[users[i]] = true;
}
}
latestID = 0;
}
function createMedia(bytes32 _name, address[] _stakeholders,
uint[] _costCompany, uint[] _costIndividual) public returns (uint) {
// Make sure this is not individual or a company
require(!isIndividual[msg.sender]);
require(!isCompany[msg.sender]);
require(isCreator[msg.sender]);
//Make sure the stakeholders and costs are valid
require(_stakeholders.length == _costCompany.length &&
_stakeholders.length == _costIndividual.length);
latestID++;
Media memory newMedia = Media({id: latestID,
creator:msg.sender,
name: _name,
stakeholders : _stakeholders,
costCompany : _costCompany,
costIndividual : _costIndividual});
allMedia.push(newMedia);
mediaMap[latestID] = newMedia;
emit MediaCreated(_name, msg.sender, latestID);
return latestID;
}
function getMediaCount() public view returns (uint _count) {
require(!isCreator[msg.sender]);
require(isIndividual[msg.sender] || isCompany[msg.sender]);
_count = 0;
for(uint i=0;i<allMedia.length;i++) {
bool alreadyPurchased = false;
for(uint j=0;j<purchasedMedia[msg.sender].length;j++) {
if(allMedia[i].id == purchasedMedia[msg.sender][j].id) {
alreadyPurchased = true;
break;
}
}
if(alreadyPurchased) {
continue;
}
_count = _count + 1;
}
}
function getMediaAtIndex(uint _index) public view returns (bytes32, uint, uint) {
require(!isCreator[msg.sender]);
require(isIndividual[msg.sender] || isCompany[msg.sender]);
uint curI = 0;
for(uint i=0;i<allMedia.length;i++) {
bool alreadyPurchased = false;
for(uint j=0;j<purchasedMedia[msg.sender].length;j++) {
if(allMedia[i].id == purchasedMedia[msg.sender][j].id) {
alreadyPurchased = true;
break;
}
}
if(alreadyPurchased) {
continue;
}
if(curI == _index) {
if(isIndividual[msg.sender]) {
uint priceI = 0;
for(uint k;k<allMedia[i].costIndividual.length;k++) {
priceI = priceI + allMedia[i].costIndividual[k];
}
return (allMedia[i].name, priceI, allMedia[i].id);
} else {
uint priceC = 0;
for(uint l;l<allMedia[i].costCompany.length;l++) {
priceC = priceC + allMedia[i].costCompany[l];
}
return (allMedia[i].name, priceC, allMedia[i].id);
}
}
curI = curI + 1;
}
return ("nan", 0, 0);
}
function buyMedia(uint _id, string _pubKey) public payable {
require(!isCreator[msg.sender]);
require(isIndividual[msg.sender] || isCompany[msg.sender]);
for(uint i=0;i<allMedia.length;i++) {
//Find the media
if(allMedia[i].id == _id) {
for(uint j=0;j<purchasedMedia[msg.sender].length;j++) {
if(allMedia[i].id == purchasedMedia[msg.sender][j].id) {
// pendingReturns[msg.sender] += msg.value;
emit PurchaseFailed("boughtERR", msg.sender, _id);
revert();
}
}
// Get the cost of media
uint cost = 0;
if(isIndividual[msg.sender]) {
for(uint k=0;k<allMedia[i].costIndividual.length;k++) {
cost += allMedia[i].costIndividual[k];
}
} else {
for(uint l=0;l<allMedia[i].costCompany.length;l++) {
cost += allMedia[i].costCompany[l];
}
}
// Check is correct amount paid
if(msg.value != cost) {
emit PurchaseFailed("amountERR", msg.sender, _id);
revert();
}
PurchasedMediaDetails memory newMediaP = PurchasedMediaDetails({id: _id,
name: mediaMap[_id].name, encURL: "Not Available", pubKey: _pubKey});
purchasedMedia[msg.sender].push(newMediaP);
emit PaymentSuccessful(msg.sender, _id, allMedia[i].creator, _pubKey);
return;
}
}
}
function addEnctyptedURL(string _url, uint _id, address buyer) public {
require(mediaMap[_id].creator == msg.sender);
for(uint i=0;i<purchasedMedia[buyer].length;i++) {
if(purchasedMedia[buyer][i].id == _id) {
purchasedMedia[buyer][i].encURL = _url;
//pay stakeholders
if(isIndividual[buyer]) {
for(uint m=0;m<mediaMap[_id].costIndividual.length;m++) {
mediaMap[_id].stakeholders[m].transfer(mediaMap[_id].costIndividual[m]);
}
} else {
for(uint n=0;n<mediaMap[_id].costCompany.length;n++) {
mediaMap[_id].stakeholders[n].transfer(mediaMap[_id].costCompany[n]);
}
}
emit EncURLAdded(buyer, _id);
return;
}
}
}
function getPurchasedMediaCount() public view returns (uint) {
require(isCompany[msg.sender] || isIndividual[msg.sender]);
return purchasedMedia[msg.sender].length;
}
function getPurchasedMediaAtIndex(uint index) public view returns (uint, bytes32, string) {
require(isCompany[msg.sender] || isIndividual[msg.sender]);
require(index < purchasedMedia[msg.sender].length);
return (purchasedMedia[msg.sender][index].id,
purchasedMedia[msg.sender][index].name, purchasedMedia[msg.sender][index].encURL);
}
function getPurchasedMediaDetails(uint _id) public view returns (string) {
require(isCompany[msg.sender] || isIndividual[msg.sender]);
for(uint i=0;i<purchasedMedia[msg.sender].length;i++) {
if(purchasedMedia[msg.sender][i].id == _id) {
return purchasedMedia[msg.sender][i].encURL;
}
}
return "ERR";
}
}