Esempio n. 1
0
        //更新板块信息
        public static string UpdateWallBlock(BuildingWallBlock block, GetBlockValue blockvalue)
        {
            blockvalue.value = Convert.ToBase64String(Encoding.UTF8.GetBytes(blockvalue.value));
            string update   = JsonConvert.SerializeObject(block);
            string Response = Sender.Post("http://dev.strosoft.com:6090/BSS/api/Service?service_name=UpdateBuildingWallBlock&data=" + update, "");

            update   = JsonConvert.SerializeObject(blockvalue);
            Response = Sender.Post("http://dev.strosoft.com:6090/BSS/api/Service?service_name=UpdateBuildingWallBlockParameter&data=" + update, "");
            return(Response);
        }
Esempio n. 2
0
        //添加慕墙信息
        public static string AddWallBlock(BuildingWallBlock block, string name, string value)
        {
            value = Convert.ToBase64String(Encoding.UTF8.GetBytes(value));
            //value = Encoding.UTF8.GetString(Convert.FromBase64String(value));
            string        jsondata = JsonConvert.SerializeObject(block);
            string        Response = Sender.Post("http://dev.strosoft.com:6090/BSS/api/Service?service_name=AddBuildingWallBlock&data=" + jsondata, "");
            ResultMessage result   = JsonConvert.DeserializeObject <ResultMessage>(Response);

            Console.WriteLine(Response);
            Response = Sender.Post("http://dev.strosoft.com:6090/BSS/api/Service?service_name=AddBuildingWallBlockParameter&data={name:\"" + name + "\"}", "");
            ResultMessage result1 = JsonConvert.DeserializeObject <ResultMessage>(Response);

            Response = Sender.Post("http://dev.strosoft.com:6090/BSS/api/Service?service_name=AddBuildingWallBlockValue&data={\"buildingWallBlockId\":" + result.data + ",\"buildingWallBlockParameterId\":" + result1.data + ",\"value\":\"" + value + "\"}", "");

            Console.WriteLine(Response);
            return(Response);
        }
Esempio n. 3
0
        public static string AddBuildingWallBlock(string jsons)//添加幕墙板块信息
        {
            int count = 0;

            try
            {
                string            path     = ConfigurationSettings.AppSettings["Savepath"];
                AddBuildingBlock  data     = JsonConvert.DeserializeObject <AddBuildingBlock>(jsons);
                BuildingWallBlock block    = new BuildingWallBlock();
                string            Response = "";
                for (int i = 0; i < data.blocks.Count(); i++)
                {
                    block.adjustedLocationTopLeftX = data.blocks[i].adjustedLocationTopLeftX;
                    block.adjustedLocationTopLeftY = data.blocks[i].adjustedLocationTopLeftY;
                    block.blockLocationTopLeftX    = data.blocks[i].blockLocationTopLeftX;
                    block.blockLocationTopLeftY    = data.blocks[i].blockLocationTopLeftY;
                    block.buildingWallBlockNo      = data.blocks[i].buildingWallBlockNo;
                    block.buildingWallId           = data.buildingWallId;
                    block.buildingWallImageId      = data.buildingWallImageId;
                    block.width  = data.blocks[i].width;
                    block.height = data.blocks[i].height;
                    if (data.blocks[i].name == null)
                    {
                        data.blocks[i].name = data.blocks[i].value;
                    }
                    Response = HTTPService.AddWallBlock(block, data.blocks[i].name, data.blocks[i].value);
                    count++;
                }
                string savepath = path + DateTime.Now.ToString("yyyyMMddhhmmssff") + ".jpg";
                Base64Convert.Base64ToFileAndSave(data.resultImageFile, savepath);//文件流保存到文件
                int resultImageFileId = UploadFile.Upload(savepath);
                File.Delete(savepath);
                string result = HTTPService.UpdateWallimg(data.buildingWallImageId, resultImageFileId);
                return(result);
            }
            catch (Exception ex)
            {
                Console.WriteLine(count);
                Console.WriteLine(ex.Message + "," + ex.TargetSite + "," + ex.Source);
                return(ex.Message + "," + ex.TargetSite + "," + ex.Source);
            }
        }
Esempio n. 4
0
        //获取立面矫正图-修改
        public static string GetUpBuildingInfo(int id)
        {
            try
            {
                string path       = ConfigurationSettings.AppSettings["Savepath"];
                string path2      = ConfigurationSettings.AppSettings["Returnpath"];
                string time       = DateTime.Now.ToString("yyyyMMddhhmmssff") + ".jpg";
                string savepath   = path + time;
                string returnpath = path2 + time;
                string Response   = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetBuildingWallImage&data={id:" + id + "}");
                //Response = "{\"success\":true,\"data\":{\"adjustedImageFileId\":626,\"areaBottomLeftX\":1944,\"areaBottomLeftY\":3237,\"areaBottomRightX\":938,\"areaBottomRightY\":3229,\"areaTopLeftX\":1049,\"areaTopLeftY\":2144,\"areaTopRightX\":1851,\"areaTopRightY\":2155,\"buildingWallId\":133,\"createTime\":{\"date\":4,\"day\":2,\"hours\":18,\"minutes\":4,\"month\":5,\"nanos\":0,\"seconds\":48,\"time\":1559642688000,\"timezoneOffset\":-480,\"year\":119},\"description\":\"\",\"id\":70,\"name\":\"ç«\u008bé\u009d¢A\",\"originalImageFileId\":625,\"positionX\":0,\"positionY\":0,\"resultImageFileId\":628,\"selectedImageFileId\":627,\"sysUserId\":1},\"adminRootUrl\":\"http://localhost:8080/BSS/\"}";
                JObject           jResult = JObject.Parse(Response);
                JObject           jData   = (JObject)jResult["data"];
                BuildingWallImage result  = jData.ToObject <BuildingWallImage>();
                Console.WriteLine(result.adjustedImageFileId);
                Response = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetTable&data={TableName:\"sys_upload_file\",Condition:\"id =" + result.adjustedImageFileId + "\"}");
                jResult  = JObject.Parse(Response);
                jData    = (JObject)jResult["data"][0];
                UploadResult Imgurl = jData.ToObject <UploadResult>();
                Console.WriteLine(Imgurl.path);//获取到了图片 "http://dev.strosoft.com:6090/BSS"+Imgurl.path
                Response = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetViewBuildingWallBlockList&data={buildingWallImageId:" + id + ",pageSize:200}");
                jResult  = JObject.Parse(Response);
                JArray jarray = (JArray)jResult["data"]["dataList"];
                List <GetBuildingBlock> block  = jarray.ToObject <List <GetBuildingBlock> >();
                GetBlockList            blocks = new GetBlockList();
                BlockTemp                temp  = new BlockTemp();
                List <GetBlockValue>     bv    = new List <GetBlockValue>();
                List <BuildingWallBlock> bl    = new List <BuildingWallBlock>();
                for (int i = 0; i < block.Count(); i++)
                {
                    GetBlockValue     Blockvalue = new GetBlockValue();
                    BuildingWallBlock blo        = new BuildingWallBlock();
                    Response = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetBuildingWallBlockValueList&data={buildingWallBlockId:" + block[i].id + ",pageSize:200}");//block[i].id
                    Console.WriteLine(Response);
                    jResult = JObject.Parse(Response);
                    jData   = (JObject)jResult["data"]["dataList"][0];
                    BlockValueSQL bs = jData.ToObject <BlockValueSQL>();
                    Blockvalue.id = bs.id;
                    Blockvalue.buildingWallBlockId          = bs.building_wall_block_id;
                    Blockvalue.buildingWallBlockParameterId = bs.building_wall_block_parameter_id;
                    bs.value                     = bs.value.Replace(" ", "+");
                    Blockvalue.value             = Encoding.UTF8.GetString(Convert.FromBase64String(bs.value));
                    blo.adjustedLocationTopLeftX = block[i].adjusted_location_top_left_x;
                    blo.adjustedLocationTopLeftY = block[i].adjusted_location_top_left_y;
                    blo.blockLocationTopLeftX    = block[i].block_location_top_left_x;
                    blo.blockLocationTopLeftY    = block[i].block_location_top_left_y;
                    blo.buildingWallBlockNo      = block[i].building_wall_block_no;
                    blo.buildingWallImageId      = block[i].building_wall_image_id;
                    blo.buildingWallId           = block[i].building_wall_id;
                    blo.id     = block[i].id;
                    blo.height = block[i].height;
                    blo.width  = block[i].width;
                    bv.Add(Blockvalue);
                    bl.Add(blo);
                }
                blocks.Blockvalue = bv; blocks.block = bl;
                blocks.WallImg    = "http://dev.strosoft.com:6090/BSS/" + Imgurl.path;
                WebClient download = new WebClient();
                download.DownloadFile(blocks.WallImg, savepath);
                blocks.WallImg = returnpath;
                string js = JsonConvert.SerializeObject(blocks);

                Console.WriteLine(js);
                return(js);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
                return(ex.Message + "未查到数据或数据表信息不完整!");
            }
        }
Esempio n. 5
0
        //获取立面图片信息
        public static string GetBuildingImgInfo(int[] id)
        {
            string path  = ConfigurationSettings.AppSettings["Savepath"];
            string path2 = ConfigurationSettings.AppSettings["Returnpath"];
            string js    = "";
            //BuildingWallImage Rinfo = new BuildingWallImage();

            List <ReturnImgInfo> img = new List <ReturnImgInfo>();

            for (int i = 0; i < id.Length; i++)
            {
                ReturnImgInfo            info = new ReturnImgInfo();
                List <BuildingWallBlock> bl   = new List <BuildingWallBlock>();
                List <GetBlockValue>     bv   = new List <GetBlockValue>();
                string Response = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetBuildingWallImage&data={id:" + id[i] + " }");
                //Response = "{\"success\":true,\"data\":{\"adjustedImageFileId\":1999,\"areaBottomLeftX\":737,\"areaBottomLeftY\":1309,\"areaBottomRightX\":368,\"areaBottomRightY\":1309,\"areaTopLeftX\":368,\"areaTopLeftY\":872,\"areaTopRightX\":737,\"areaTopRightY\":872,\"buildingWallId\":66,\"createTime\":{\"date\":17,\"day\":1,\"hours\":14,\"minutes\":56,\"month\":5,\"nanos\":0,\"seconds\":30,\"time\":1560754590000,\"timezoneOffset\":-480,\"year\":119},\"description\":\"\",\"id\":338,\"name\":\"\",\"originalImageFileId\":967,\"positionX\":0,\"positionY\":0,\"resultImageFileId\":1998,\"selectedImageFileId\":\"\",\"sysUserId\":\"\"}}";

                JObject           jResult = JObject.Parse(Response);
                JObject           jData   = (JObject)jResult["data"];
                BuildingWallImage result  = jData.ToObject <BuildingWallImage>();
                Response               = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetTable&data={TableName:\"sys_upload_file\",Condition:\"id =" + result.resultImageFileId + "\"}");
                jResult                = JObject.Parse(Response);
                jData                  = (JObject)jResult["data"][0];
                info.BuildingImg       = "http://dev.strosoft.com:6090/BSS/" + jData.ToObject <UploadResult>().path;
                Response               = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetTable&data={TableName:\"sys_upload_file\",Condition:\"id =" + result.adjustedImageFileId + "\"}");
                jResult                = JObject.Parse(Response);
                jData                  = (JObject)jResult["data"][0];
                info.BuildingadjustImg = "http://dev.strosoft.com:6090/BSS/" + jData.ToObject <UploadResult>().path;
                Response               = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetViewBuildingWallBlockList&data={buildingWallImageId:" + id[i] + ",pageSize:200}");
                jResult                = JObject.Parse(Response);
                JArray jarray = (JArray)jResult["data"]["dataList"];
                List <GetBuildingBlock> block = jarray.ToObject <List <GetBuildingBlock> >();

                GetBlockList blocks = new GetBlockList();
                for (int j = 0; j < block.Count(); j++)
                {
                    GetBlockValue     Blockvalue = new GetBlockValue();
                    BuildingWallBlock blo        = new BuildingWallBlock();
                    Response = Sender.Get("http://dev.strosoft.com:6090/BSS/api/Service?service_name=GetBuildingWallBlockValueList&data={buildingWallBlockId:" + block[j].id + ",pageSize:200}");//block[i].id
                    //Console.WriteLine(Response);
                    jResult = JObject.Parse(Response);
                    jData   = (JObject)jResult["data"]["dataList"][0];
                    BlockValueSQL bs = jData.ToObject <BlockValueSQL>();
                    Blockvalue.id = bs.id;
                    Blockvalue.buildingWallBlockId          = bs.building_wall_block_id;
                    Blockvalue.buildingWallBlockParameterId = bs.building_wall_block_parameter_id;
                    bs.value                     = bs.value.Replace(" ", "+");
                    Blockvalue.value             = Encoding.UTF8.GetString(Convert.FromBase64String(bs.value));
                    blo.adjustedLocationTopLeftX = block[j].adjusted_location_top_left_x;
                    blo.adjustedLocationTopLeftY = block[j].adjusted_location_top_left_y;
                    blo.blockLocationTopLeftX    = block[j].block_location_top_left_x;
                    blo.blockLocationTopLeftY    = block[j].block_location_top_left_y;
                    blo.buildingWallBlockNo      = block[j].building_wall_block_no;
                    blo.buildingWallImageId      = block[j].building_wall_image_id;
                    blo.buildingWallId           = block[j].building_wall_id;
                    blo.id     = block[j].id;
                    blo.height = block[j].height;
                    blo.width  = block[j].width;
                    bl.Add(blo);
                    bv.Add(Blockvalue);
                }
                info.ImgInfo    = bl;
                info.blockvalue = bv;
                WebClient download   = new WebClient();
                string    time       = DateTime.Now.ToString("yyyyMMddhhmmssff") + ".jpg";
                string    savepath   = path + time;
                string    returnpath = path2 + time;
                download.DownloadFile(info.BuildingImg, savepath);
                time = DateTime.Now.ToString("yyyyMMddhhmmssff") + ".jpg";
                string savepath2   = path + time;
                string returnpath2 = path2 + time;
                download.DownloadFile(info.BuildingadjustImg, savepath);
                info.BuildingImg       = returnpath;
                info.BuildingadjustImg = returnpath2;
                img.Add(info);
            }
            js = JsonConvert.SerializeObject(img);
            //Console.WriteLine(js);
            return(js);
        }