123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #-*- coding:utf-8 -*-
- # Copyright 2017 Xiaomi, Inc.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import json
- from rrd.config import API_ADDR
- from rrd import corelib
- class DashboardScreen(object):
- def __init__(self, id, pid, name):
- self.id = str(id)
- self.pid = str(pid)
- self.name = name
- def __repr__(self):
- return "<DashboardScreen id=%s, name=%s, pid=%s>" %(self.id, self.name, self.pid)
- __str__ = __repr__
- @classmethod
- def get(cls, id):
- r = corelib.auth_requests("GET", API_ADDR + "/dashboard/screen/%s" %(id,))
- if r.status_code != 200:
- raise Exception(r.text)
- j = r.json()
- if j:
- row = [j["id"], j["pid"], j["name"]]
- return cls(*row)
- @classmethod
- def gets_by_pid(cls, pid):
- r = corelib.auth_requests("GET", API_ADDR + "/dashboard/screens/pid/%s" %(pid,))
- if r.status_code != 200:
- raise Exception(r.text)
- j = r.json() or []
- return [cls(*[x["id"], x["pid"], x["name"]]) for x in j]
- @classmethod
- def gets_all(cls, limit=500):
- r = corelib.auth_requests("GET", API_ADDR + "/dashboard/screens?limit=%s" %(limit,))
- if r.status_code != 200:
- raise Exception(r.text)
- j = r.json() or []
- return [cls(*[x["id"], x["pid"], x["name"]]) for x in j]
- @classmethod
- def add(cls, pid, name):
- d = {"pid": pid, "name": name}
- r = corelib.auth_requests("POST", API_ADDR + "/dashboard/screen", data = d)
- if r.status_code != 200:
- raise Exception(r.text)
- j = r.json()
- return cls(*[j["id"], j["pid"], j["name"]])
- @classmethod
- def remove(cls, id):
- h = {"Content-type": "application/json"}
- r = corelib.auth_requests("DELETE", API_ADDR + "/dashboard/screen/%s" %(id,), headers=h)
- if r.status_code != 200:
- raise Exception(r.text)
- return r.json()
- def update(self, pid=None, name=None):
- d = {}
- if pid:
- d["pid"] = pid
- if name:
- d["name"] = name
- r = corelib.auth_requests("PUT", API_ADDR + "/dashboard/screen/%s" %self.id, data = d)
- if r.status_code != 200:
- raise Exception(r.text)
- return r.json()
|