def Pages(self, req): pages = [] for p in Page.all().filter("sub", req.subdomain): lp = p.path.lower() if lp.find("library") >= 0 or lp.find("lib/") >= 0: pages.append(p.path) return pages
def post(self): self.getSubdomain() for (a, v) in self.request.POST.items(): logging.info("UploadH(" + str(a) + ")" + str(v)) upload_files = self.get_uploads() replace = False for blob_info in upload_files: reqpath = self.request.get('path') filename = self.request.get('filename') if self.request.get('method') == 'uploadTiddlers': url = 'file:' + reqpath + '/' + filename logging.info("Uploaded url: " + reqpath + '/' + filename) urlimport = UrlImport().all().filter('url', url).get() if urlimport == None: urlimport = UrlImport() urlimport.url = url urlimport.blob = blob_info.key() urlimport.put() self.response.out.write( '<html>' '<header><title>Upload succeeded</title>' '<script>' 'function main() { \n' ' act = "onUploadTiddlers(' + "'" + url + "'" + ')";' ' window.parent.setTimeout(act,100);\n' '}\n' '</script></header>' '<body style="margin: 0 0 0 0; text-align: center; font-family: Arial" onload="main()">' '<center><a href="/">success..</a></center>' '</body>' '</html>') else: f = UploadedFile() f.owner = users.get_current_user() logging.info("Uploaded " + filename) p = filename if filename[0] == '/' else CombinePath( reqpath, filename) logging.info('Uploaded ' + p) f.path = p f.mimetype = blob_info.content_type f.blob = blob_info.key() ef = UploadedFile.all().filter('path', p).get() if ef != None: if replace == False: msg = p + "<br>is an already existing file - <<confirm_replace " + p + ">>" f.msg = msg memcache.set(p, f, 300) elif f.owner != ef.owner and not users.is_current_user_admin( ): msg = "Not allowed" else: ef.data = f.data ef.put() msg = p + " replaced" elif Page.all().filter("path", p).get(): msg = p + "<br>is an existing page URL. Pick a different name." else: msg = "" f.put() ftwd = codecs.open('UploadDialog.htm', 'r', 'utf-8') # open('UploadDialog.htm') uplurl = blobstore.create_upload_url('/upload') text = unicode(ftwd.read()).replace('<uploadHandler>', unicode(uplurl), 1) text = text.replace("<requestPath>", reqpath) text = text.replace("UFL", unicode(p)) text = text.replace("UFT", unicode(f.mimetype)) text = text.replace("ULR", u"Uploaded:") text = text.replace("UFM", unicode(msg)) ftwd.close() self.response.out.write(text) break
def post(self): self.getSubdomain() for (a,v) in self.request.POST.items(): logging.info("UploadH(" + str(a) + ")" + str(v)) upload_files = self.get_uploads() replace = False for blob_info in upload_files: reqpath = self.request.get('path') filename = self.request.get('filename') if self.request.get('method') == 'uploadTiddlers': url = 'file:' + reqpath + '/' + filename logging.info("Uploaded url: " + reqpath + '/' + filename) urlimport = UrlImport().all().filter('url',url).get() if urlimport == None: urlimport = UrlImport() urlimport.url = url urlimport.blob = blob_info.key() urlimport.put() self.response.out.write( '<html>' '<header><title>Upload succeeded</title>' '<script>' 'function main() { \n' ' act = "onUploadTiddlers(' + "'" + url + "'" + ')";' ' window.parent.setTimeout(act,100);\n' '}\n' '</script></header>' '<body style="margin: 0 0 0 0; text-align: center; font-family: Arial" onload="main()">' '<center><a href="/">success..</a></center>' '</body>' '</html>') else: f = UploadedFile() f.owner = users.get_current_user() logging.info("Uploaded " + filename) p = filename if filename[0] == '/' else CombinePath(reqpath, filename) logging.info('Uploaded ' + p) f.path = p f.mimetype = blob_info.content_type f.blob = blob_info.key() ef = UploadedFile.all().filter('path',p).get() if ef != None: if replace == False: msg = p + "<br>is an already existing file - <<confirm_replace " + p + ">>"; f.msg = msg memcache.set(p,f,300) elif f.owner != ef.owner and not users.is_current_user_admin(): msg = "Not allowed" else: ef.data = f.data ef.put() msg = p + " replaced" elif Page.all().filter("path",p).get(): msg = p + "<br>is an existing page URL. Pick a different name." else: msg = "" f.put() ftwd = codecs.open( 'UploadDialog.htm', 'r', 'utf-8' ) # open('UploadDialog.htm') uplurl = blobstore.create_upload_url('/upload') text = unicode(ftwd.read()).replace('<uploadHandler>', unicode(uplurl), 1) text = text.replace("<requestPath>",reqpath); text = text.replace("UFL",unicode(p)) text = text.replace("UFT",unicode(f.mimetype)) text = text.replace("ULR",u"Uploaded:") text = text.replace("UFM",unicode(msg)) ftwd.close() self.response.out.write(text) break