Пример #1
0
        public bool Authenticate(MoxieManager.Core.Auth.User user)
        {
            if (!TSAuthentication.IsAuthenticated())
            {
                return(false);
            }
            var config = ManagerContext.Current.Config;

            //string root = SystemSettings.ReadString(TSAuthentication.GetLoginUser(), "FilePath", "C:\\TSData");
            Data.FilePaths filePaths = new FilePaths(TSAuthentication.GetLoginUser());
            filePaths.LoadByID(1);
            string root = filePaths[0].Value;

            root = Path.Combine(root, "WikiDocs\\" + TSAuthentication.OrganizationID.ToString());
            Directory.CreateDirectory(Path.Combine(root, "images"));
            Directory.CreateDirectory(Path.Combine(root, "documents"));
            config.Put("filesystem.rootpath", root);
            config.Put("filesystem.local.wwwroot", root);
            config.Put("filesystem.local.urlprefix", "{proto}://{host}/Wiki/WikiDocs/" + TSAuthentication.OrganizationID.ToString());
            return(true);
        }