|
@@ -36,24 +36,36 @@ namespace XHWK.WKTool.DAL
|
36
|
36
|
try
|
37
|
37
|
{
|
38
|
38
|
JObject jo = HttpHelper.PostFunction(FileRequestAddress + @"/chunkdb/isexist", @"application/x-www-form-urlencoded", @"md5=" + MD5, "");
|
39
|
|
- //0成功,1失败
|
|
39
|
+ ////0成功,1失败
|
|
40
|
+ //if (jo["code"].ToString() == "0")
|
|
41
|
+ //{
|
|
42
|
+ // if (string.IsNullOrWhiteSpace(jo["obj"].ToString()))
|
|
43
|
+ // {
|
|
44
|
+ // //不存在 允许上传
|
|
45
|
+ // return true;
|
|
46
|
+ // }
|
|
47
|
+ // else
|
|
48
|
+ // {
|
|
49
|
+ // //已存在 不允许上传
|
|
50
|
+ // return false;
|
|
51
|
+ // }
|
|
52
|
+ //}
|
|
53
|
+ //else
|
|
54
|
+ //{
|
|
55
|
+ // Message = jo["msg"].ToString();
|
|
56
|
+ // return false;
|
|
57
|
+ //}
|
|
58
|
+
|
|
59
|
+ //修改为0为之前上传成功,1为之前未上传成功
|
40
|
60
|
if (jo["code"].ToString() == "0")
|
41
|
61
|
{
|
42
|
|
- if (string.IsNullOrWhiteSpace(jo["obj"].ToString()))
|
43
|
|
- {
|
44
|
|
- //不存在 允许上传
|
45
|
|
- return true;
|
46
|
|
- }
|
47
|
|
- else
|
48
|
|
- {
|
49
|
|
- //已存在 不允许上传
|
50
|
|
- return false;
|
51
|
|
- }
|
|
62
|
+ //已存在 不允许上传
|
|
63
|
+ return false;
|
52
|
64
|
}
|
53
|
65
|
else
|
54
|
66
|
{
|
55
|
|
- Message = jo["msg"].ToString();
|
56
|
|
- return false;
|
|
67
|
+ //不存在 允许上传
|
|
68
|
+ return true;
|
57
|
69
|
}
|
58
|
70
|
}
|
59
|
71
|
catch (Exception e)
|
|
@@ -237,6 +249,8 @@ namespace XHWK.WKTool.DAL
|
237
|
249
|
VideoInfo.SliceLen = (long)(UploadSliceLenMB * 1024 * 1024);
|
238
|
250
|
VideoInfo.Block = (int)(filelen / VideoInfo.SliceLen + (filelen % VideoInfo.SliceLen > 0 ? 1 : 0));
|
239
|
251
|
}
|
|
252
|
+ //临时修改 没有断点续传,每次上传都重新上传。
|
|
253
|
+ VideoInfo.Uploaded = 0;
|
240
|
254
|
//已上传长度
|
241
|
255
|
long len = VideoInfo.Uploaded * VideoInfo.SliceLen;
|
242
|
256
|
string fileName = FileToolsCommon.GetFileName(VideoInfo.VideoPath);
|