Exemplo n.º 1
0
        public ActionResult DocRead()
        {
            RoadFlow.Data.Model.Documents        documents1         = (RoadFlow.Data.Model.Documents)null;
            RoadFlow.Platform.Documents          documents2         = new RoadFlow.Platform.Documents();
            RoadFlow.Platform.DocumentsReadUsers documentsReadUsers = new RoadFlow.Platform.DocumentsReadUsers();
            bool   flag          = false;
            string str           = this.Request.QueryString["docid"];
            Guid   currentUserId = RoadFlow.Platform.Users.CurrentUserID;

            if (str.IsGuid())
            {
                documents1 = documents2.Get(str.ToGuid());
                if (documents1 != null)
                {
                    if (documentsReadUsers.Get(documents1.ID, currentUserId) == null)
                    {
                        this.Response.Write("您无权查看该文档!");
                        this.Response.End();
                        return((ActionResult)null);
                    }
                    flag = new RoadFlow.Platform.DocumentDirectory().HasPublish(documents1.DirectoryID, currentUserId) || new RoadFlow.Platform.DocumentDirectory().HasManage(documents1.DirectoryID, currentUserId);
                    documents2.UpdateReadCount(documents1.ID);
                    documentsReadUsers.UpdateRead(documents1.ID, currentUserId);
                }
            }
            // ISSUE: reference to a compiler-generated field
            if (DocumentsController.\u003C\u003Eo__9.\u003C\u003Ep__0 == null)
            {
                // ISSUE: reference to a compiler-generated field
                DocumentsController.\u003C\u003Eo__9.\u003C\u003Ep__0 = CallSite <Func <CallSite, object, bool, object> > .Create(Binder.SetMember(CSharpBinderFlags.None, "IsEdit", typeof(DocumentsController), (IEnumerable <CSharpArgumentInfo>) new CSharpArgumentInfo[2]
                {
                    CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.None, (string)null),
                    CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.UseCompileTimeType, (string)null)
                }));
            }
            // ISSUE: reference to a compiler-generated field
            // ISSUE: reference to a compiler-generated field
            object obj = DocumentsController.\u003C\u003Eo__9.\u003C\u003Ep__0.Target((CallSite)DocumentsController.\u003C\u003Eo__9.\u003C\u003Ep__0, this.ViewBag, flag);

            if (documents1 == null)
            {
                documents1 = new RoadFlow.Data.Model.Documents();
            }
            return((ActionResult)this.View((object)documents1));
        }
Exemplo n.º 2
0
        public ActionResult DocAdd(FormCollection collection)
        {
            string str1 = this.Request.QueryString["docid"];

            RoadFlow.Platform.Documents          documents          = new RoadFlow.Platform.Documents();
            RoadFlow.Platform.DocumentDirectory  documentDirectory  = new RoadFlow.Platform.DocumentDirectory();
            RoadFlow.Platform.DocumentsReadUsers documentsReadUsers = new RoadFlow.Platform.DocumentsReadUsers();
            RoadFlow.Data.Model.Documents        model = (RoadFlow.Data.Model.Documents)null;
            if (str1.IsGuid())
            {
                model = documents.Get(str1.ToGuid());
            }
            if (collection != null)
            {
                string str2   = this.Request.Form["DirectoryID"];
                string str3   = this.Request.Form["Title1"];
                string str4   = this.Request.Form["ReadUsers"];
                string str5   = this.Request.Form["Source"];
                string str6   = this.Request.Form["Contents"];
                string str7   = this.Request.Form["Files"];
                string oldXML = string.Empty;
                bool   flag   = false;
                if (model == null)
                {
                    flag                = true;
                    model               = new RoadFlow.Data.Model.Documents();
                    model.ID            = Guid.NewGuid();
                    model.ReadCount     = 0;
                    model.WriteTime     = DateTimeNew.Now;
                    model.WriteUserID   = RoadFlow.Platform.Users.CurrentUserID;
                    model.WriteUserName = RoadFlow.Platform.Users.CurrentUserName;
                }
                else
                {
                    oldXML = model.Serialize();
                }
                model.Contents      = str6;
                model.DirectoryID   = str2.ToGuid();
                model.DirectoryName = documentDirectory.GetName(model.DirectoryID);
                model.EditTime      = new DateTime?(DateTimeNew.Now);
                model.EditUserID    = new Guid?(RoadFlow.Platform.Users.CurrentUserID);
                model.EditUserName  = RoadFlow.Platform.Users.CurrentUserName;
                model.Files         = str7;
                model.ReadUsers     = str4;
                model.Source        = str5.IsNullOrEmpty() ? " " : str5;
                model.Title         = str3.Trim1();
                if (flag)
                {
                    documents.Add(model);
                    RoadFlow.Platform.Log.Add("添加了文档", model.Serialize(), RoadFlow.Platform.Log.Types.文档中心, "", "", (RoadFlow.Data.Model.Users)null);
                }
                else
                {
                    documents.Update(model);
                    RoadFlow.Platform.Log.Add("修改了文档", model.Serialize(), RoadFlow.Platform.Log.Types.文档中心, oldXML, model.Serialize(), (RoadFlow.Data.Model.Users)null);
                }
                List <RoadFlow.Data.Model.Users> usersList = model.ReadUsers.IsNullOrEmpty() ? documentDirectory.GetReadUsers(model.DirectoryID) : new RoadFlow.Platform.Organize().GetAllUsers(model.ReadUsers);
                documentsReadUsers.Delete(model.ID);
                bool          isUse         = RoadFlow.Platform.WeiXin.Config.IsUse;
                Message       message       = new Message();
                StringBuilder stringBuilder = new StringBuilder();
                foreach (RoadFlow.Data.Model.Users users in usersList)
                {
                    documentsReadUsers.Add(new RoadFlow.Data.Model.DocumentsReadUsers()
                    {
                        DocumentID = model.ID,
                        IsRead     = 0,
                        UserID     = users.ID
                    });
                    if (isUse)
                    {
                        stringBuilder.Append(users.Account);
                        stringBuilder.Append('|');
                    }
                }
                string empty = string.Empty;
                string str8  = !flag ? "'DocRead" + this.Request.Url.Query + "'" : "'List" + this.Request.Url.Query + "'";
                if (isUse)
                {
                    message.SendText(model.Title, stringBuilder.ToString().TrimEnd('|'), "", "", 0, new Agents().GetAgentIDByCode("weixinagents_documents"), true);
                }
                // ISSUE: reference to a compiler-generated field
                if (DocumentsController.\u003C\u003Eo__5.\u003C\u003Ep__0 == null)
                {
                    // ISSUE: reference to a compiler-generated field
                    DocumentsController.\u003C\u003Eo__5.\u003C\u003Ep__0 = CallSite <Func <CallSite, object, string, object> > .Create(Binder.SetMember(CSharpBinderFlags.None, "script", typeof(DocumentsController), (IEnumerable <CSharpArgumentInfo>) new CSharpArgumentInfo[2]
                    {
                        CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.None, (string)null),
                        CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.UseCompileTimeType, (string)null)
                    }));
                }
                // ISSUE: reference to a compiler-generated field
                // ISSUE: reference to a compiler-generated field
                object obj = DocumentsController.\u003C\u003Eo__5.\u003C\u003Ep__0.Target((CallSite)DocumentsController.\u003C\u003Eo__5.\u003C\u003Ep__0, this.ViewBag, "alert('保存成功!');window.location=" + str8 + ";");
            }
            if (model == null)
            {
                model = new RoadFlow.Data.Model.Documents();
            }
            return((ActionResult)this.View((object)model));
        }