Example #1
0
        //------------------------------------------------------------------------------
        public virtual void DelPhotoByUrl()
        {
            string _url = (string)util.GetParamValue(_context, "url");

            ResponsePhotoBool wrapper = new ResponsePhotoBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "photo/del/by-url";

            bool completed = api.DelPhotoByUrl(

                _url
            );

            // get data
            wrapper.data = completed;

            util.SerializeTypeToResponse(_format, _context, wrapper);
        }
Example #2
0
        //------------------------------------------------------------------------------
        public virtual void DelPhotoByUuidByExternalId()
        {
            string _uuid = (string)util.GetParamValue(_context, "uuid");
            string _external_id = (string)util.GetParamValue(_context, "external_id");

            ResponsePhotoBool wrapper = new ResponsePhotoBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "photo/del/by-uuid/by-external-id";

            bool completed = api.DelPhotoByUuidByExternalId(

                _uuid
                , _external_id
            );

            // get data
            wrapper.data = completed;

            util.SerializeTypeToResponse(_format, _context, wrapper);
        }
Example #3
0
        //------------------------------------------------------------------------------
        public virtual void SetPhotoByUuidByExternalId()
        {
            ResponsePhotoBool wrapper = new ResponsePhotoBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "photo/set/by-uuid/by-external-id";

            Photo obj = new Photo();

            string _status = util.GetParamValue(_context, "status");
            if(!String.IsNullOrEmpty(_status))
                obj.status = (string)_status;

            string _third_party_oembed = util.GetParamValue(_context, "third_party_oembed");
            if(!String.IsNullOrEmpty(_third_party_oembed))
                obj.third_party_oembed = (string)_third_party_oembed;

            string _code = util.GetParamValue(_context, "code");
            if(!String.IsNullOrEmpty(_code))
                obj.code = (string)_code;

            string _display_name = util.GetParamValue(_context, "display_name");
            if(!String.IsNullOrEmpty(_display_name))
                obj.display_name = (string)_display_name;

            string _name = util.GetParamValue(_context, "name");
            if(!String.IsNullOrEmpty(_name))
                obj.name = (string)_name;

            string _date_modified = util.GetParamValue(_context, "date_modified");
            if(!String.IsNullOrEmpty(_date_modified))
                obj.date_modified = Convert.ToDateTime(_date_modified);
            else
                obj.date_modified = DateTime.Now;

            string _url = util.GetParamValue(_context, "url");
            if(!String.IsNullOrEmpty(_url))
                obj.url = (string)_url;

            string _third_party_data = util.GetParamValue(_context, "third_party_data");
            if(!String.IsNullOrEmpty(_third_party_data))
                obj.third_party_data = (string)_third_party_data;

            string _uuid = util.GetParamValue(_context, "uuid");
            if(!String.IsNullOrEmpty(_uuid))
                obj.uuid = (string)_uuid;

            string _data = util.GetParamValue(_context, "data");
            if(!String.IsNullOrEmpty(_data))
                obj.data = (string)_data;

            string _third_party_url = util.GetParamValue(_context, "third_party_url");
            if(!String.IsNullOrEmpty(_third_party_url))
                obj.third_party_url = (string)_third_party_url;

            string _third_party_id = util.GetParamValue(_context, "third_party_id");
            if(!String.IsNullOrEmpty(_third_party_id))
                obj.third_party_id = (string)_third_party_id;

            string _content_type = util.GetParamValue(_context, "content_type");
            if(!String.IsNullOrEmpty(_content_type))
                obj.content_type = (string)_content_type;

            string _external_id = util.GetParamValue(_context, "external_id");
            if(!String.IsNullOrEmpty(_external_id))
                obj.external_id = (string)_external_id;

            string _active = util.GetParamValue(_context, "active");
            if(!String.IsNullOrEmpty(_active))
                obj.active = Convert.ToBoolean(_active);

            string _date_created = util.GetParamValue(_context, "date_created");
            if(!String.IsNullOrEmpty(_date_created))
                obj.date_created = Convert.ToDateTime(_date_created);
            else
                obj.date_created = DateTime.Now;

            string _type = util.GetParamValue(_context, "type");
            if(!String.IsNullOrEmpty(_type))
                obj.type = (string)_type;

            string _description = util.GetParamValue(_context, "description");
            if(!String.IsNullOrEmpty(_description))
                obj.description = (string)_description;

            // get data
            wrapper.data = api.SetPhotoByUuidByExternalId(obj);

            util.SerializeTypeJSONToResponse(_context, wrapper);
        }