Browse Source

Merge pull request #94 from tracim/fix/simple_webdav_fix

Tracim 6 years ago
parent
commit
76084e116b
No account linked to committer's email
2 changed files with 52 additions and 8 deletions
  1. 50 8
      tracim/lib/webdav/dav_provider.py
  2. 2 0
      tracim/lib/webdav/resources.py

+ 50 - 8
tracim/lib/webdav/dav_provider.py View File

70
 
70
 
71
         # If the requested path is the root, then we return a RootResource resource
71
         # If the requested path is the root, then we return a RootResource resource
72
         if path == root_path:
72
         if path == root_path:
73
-            return resources.RootResource(path, environ, user=user, session=session)
73
+            return resources.RootResource(
74
+                path=path,
75
+                environ=environ,
76
+                user=user,
77
+                session=session
78
+            )
74
 
79
 
75
         workspace_api = WorkspaceApi(
80
         workspace_api = WorkspaceApi(
76
             current_user=user,
81
             current_user=user,
111
 
116
 
112
         # Easy cases : path either end with /.deleted, /.archived or /.history, then we return corresponding resources
117
         # Easy cases : path either end with /.deleted, /.archived or /.history, then we return corresponding resources
113
         if path.endswith(SpecialFolderExtension.Archived) and self._show_archive:
118
         if path.endswith(SpecialFolderExtension.Archived) and self._show_archive:
114
-            return resources.ArchivedFolderResource(path, environ, workspace, content)
119
+            return resources.ArchivedFolderResource(
120
+                path=path,
121
+                environ=environ,
122
+                workspace=workspace,
123
+                user=user,
124
+                content=content,
125
+                session=session,
126
+            )
115
 
127
 
116
         if path.endswith(SpecialFolderExtension.Deleted) and self._show_delete:
128
         if path.endswith(SpecialFolderExtension.Deleted) and self._show_delete:
117
-            return resources.DeletedFolderResource(path, environ, workspace, content)
129
+            return resources.DeletedFolderResource(
130
+                path=path,
131
+                environ=environ,
132
+                workspace=workspace,
133
+                user=user,
134
+                content=content,
135
+                session=session,
136
+            )
118
 
137
 
119
         if path.endswith(SpecialFolderExtension.History) and self._show_history:
138
         if path.endswith(SpecialFolderExtension.History) and self._show_history:
120
             is_deleted_folder = re.search(r'/\.deleted/\.history$', path) is not None
139
             is_deleted_folder = re.search(r'/\.deleted/\.history$', path) is not None
124
                 else HistoryType.Archived if is_archived_folder \
143
                 else HistoryType.Archived if is_archived_folder \
125
                 else HistoryType.Standard
144
                 else HistoryType.Standard
126
 
145
 
127
-            return resources.HistoryFolderResource(path, environ, workspace, content, type)
146
+            return resources.HistoryFolderResource(
147
+                path=path,
148
+                environ=environ,
149
+                workspace=workspace,
150
+                user=user,
151
+                content=content,
152
+                session=session,
153
+                type=type
154
+            )
128
 
155
 
129
         # Now that's more complicated, we're trying to find out if the path end with /.history/file_name
156
         # Now that's more complicated, we're trying to find out if the path end with /.history/file_name
130
         is_history_file_folder = re.search(r'/\.history/([^/]+)$', path) is not None
157
         is_history_file_folder = re.search(r'/\.history/([^/]+)$', path) is not None
133
             return resources.HistoryFileFolderResource(
160
             return resources.HistoryFileFolderResource(
134
                 path=path,
161
                 path=path,
135
                 environ=environ,
162
                 environ=environ,
136
-                content=content
163
+                user=user,
164
+                content=content,
165
+                session=session,
137
             )
166
             )
138
-
139
         # And here next step :
167
         # And here next step :
140
         is_history_file = re.search(r'/\.history/[^/]+/\((\d+) - [a-zA-Z]+\) .+', path) is not None
168
         is_history_file = re.search(r'/\.history/[^/]+/\((\d+) - [a-zA-Z]+\) .+', path) is not None
141
 
169
 
147
             content = self.get_content_from_revision(content_revision, content_api)
175
             content = self.get_content_from_revision(content_revision, content_api)
148
 
176
 
149
             if content.type == ContentType.File:
177
             if content.type == ContentType.File:
150
-                return resources.HistoryFileResource(path, environ, content, content_revision)
178
+                return resources.HistoryFileResource(
179
+                    path=path,
180
+                    environ=environ,
181
+                    user=user,
182
+                    content=content,
183
+                    content_revision=content_revision,
184
+                    session=session,
185
+                )
151
             else:
186
             else:
152
-                return resources.HistoryOtherFile(path, environ, content, content_revision)
187
+                return resources.HistoryOtherFile(
188
+                    path=path,
189
+                    environ=environ,
190
+                    user=user,
191
+                    content=content,
192
+                    content_revision=content_revision,
193
+                    session=session,
194
+                )
153
 
195
 
154
         # And if we're still going, the client is asking for a standard Folder/File/Page/Thread so we check the type7
196
         # And if we're still going, the client is asking for a standard Folder/File/Page/Thread so we check the type7
155
         # and return the corresponding resource
197
         # and return the corresponding resource

+ 2 - 0
tracim/lib/webdav/resources.py View File

516
         workspace_api = WorkspaceApi(
516
         workspace_api = WorkspaceApi(
517
             current_user=self.user,
517
             current_user=self.user,
518
             session=self.session,
518
             session=self.session,
519
+            config=self.provider.app_config,
519
         )
520
         )
520
         workspace = self.provider.get_workspace_from_path(
521
         workspace = self.provider.get_workspace_from_path(
521
             normpath(destpath), workspace_api
522
             normpath(destpath), workspace_api
1308
         workspace_api = WorkspaceApi(
1309
         workspace_api = WorkspaceApi(
1309
             current_user=self.user,
1310
             current_user=self.user,
1310
             session=self.session,
1311
             session=self.session,
1312
+            config=self.provider.app_config,
1311
         )
1313
         )
1312
         content_api = ContentApi(
1314
         content_api = ContentApi(
1313
             current_user=self.user,
1315
             current_user=self.user,