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
import json
from utils.base import APIView, get_offset_count
class LaboratoryListView(APIView):
def get(self, request):
offset, count = get_offset_count(request)
data = self.rpc['venus/sun/laboratory/list'](offset=offset, count=count).unwrap()
return data
class LaboratoryView(APIView):
def post(self, request):
laboratory_id = request.POST.get('id', None)
title = request.POST.get("title", "")
order = request.POST.get("order", "")
image_url = request.POST.get("image_url", "")
agreement_url = request.POST.get("agreement_url", "")
description_fomula = request.POST.get("description_fomula", "")
data = self.rpc["venus/sun/laboratory/create"](
title=title,
order=order,
description_fomula=description_fomula,
image_url=image_url,
agreement_url=agreement_url,
laboratory_id=laboratory_id
).unwrap()
return data
class LaboratoryDeleteView(APIView):
def post(self, request):
laboratory_id = request.POST.get('id', None)
data = self.rpc['venus/sun/laboratory/delete'](
laboratory_id=laboratory_id
).unwrap()
return {
"status": 1
}