index.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- HTML Meta Tags -->
  5. <title>Welcome to My Blog</title>
  6. <meta name="description" content="A personal blog hosted on WebStick!">
  7. <meta name="viewport" content="width=device-width, initial-scale=1" >
  8. <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  9. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
  10. <script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>
  11. <script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"></script>
  12. <style>
  13. .imgwrapper{
  14. max-height: 200px;
  15. overflow: hidden;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <br>
  21. <div class="ui text container">
  22. <h2 class="ui header">
  23. <span id="blogtitle">WebStick Blog</span> <span onclick="editBlogTitle();" class="adminOnly"><i class="ui small edit grey icon"></i></span>
  24. <div class="sub header"><span id="blogsubtitle">Welcome to this new personal blog of mine!</span> <span class="adminOnly" onclick="editBlogSubtitle();"><i class="ui edit icon"></i></span></div>
  25. </h2>
  26. <div class="ui divider"></div>
  27. <a class="ui basic icon button" href="../" title="Back to Home"><i class="home icon"></i></a>
  28. <button id="createNewPostBtn" class="ui basic button adminOnly"><i class="blue add icon"></i> New Post</button>
  29. <button onclick="forceUpdatePostIndex()" class="ui basic green button adminOnly"><i class="green refresh icon"></i> Force Update Post Index</button>
  30. <br>
  31. <div id="newPostModal" class="ui basic segment" style="display:none;">
  32. <div class="ui divider"></div>
  33. <h3><i class="ui blue add icon"></i> Create a new Post</h3>
  34. <p>New post in WebStick Blog Engine are markdown files strored in the posts/ folder. Create a new post with filename as title (exclude the .md extension when filling in the filename).<br>
  35. A new window with markdown editor will be opened. After finish writing, save & close the markdown editor and refresh this page to see your post.</p>
  36. <div class="ui action fluid input">
  37. <input id="newPostTitle" type="text" maxlength="16">
  38. <button id="confirmNewPostBtn" onclick="createNewPost();" class="ui green button">Create & Edit</button>
  39. </div>
  40. </div>
  41. <div id="nopost" class="ui message" style="display:none;">
  42. <h4 class="ui header">
  43. <i class="green check icon"></i>
  44. <div class="content">
  45. Seems this blog has nothing posted. Check back later!
  46. <div class="sub header">You own the place? Try create a new post after login.</div>
  47. </div>
  48. </h4>
  49. </div>
  50. <div id="posttable">
  51. <div class="ui basic segment">
  52. <i class="ui loading spinner icon"></i> Loading Posts
  53. </div>
  54. </div>
  55. </div>
  56. <div class="ui text container center aligned">
  57. <div class="ui divider"></div>
  58. <small>Proudly powered by <a href="https://hackaday.io/project/192618-instant-webstick-esp8266-web-server-nas">WebStick</a></small>
  59. </div>
  60. </div>
  61. <script>
  62. let loggedIn = false;
  63. //Check the user has logged in
  64. $.get("/api/auth/chk", function(data){
  65. if (data == false){
  66. //User cannot use admin function. Hide the buttons.
  67. $(".adminOnly").hide();
  68. loggedIn = false;
  69. }else{
  70. loggedIn = true;
  71. }
  72. loadValue("blog-posts", function(){
  73. initPosts();
  74. })
  75. });
  76. //Initialize blog info
  77. function initBlogInfo(){
  78. loadValue("blog-title", function(title){
  79. if (title.error != undefined || title == ""){
  80. title = "WebStick Blog";
  81. }
  82. document.title = decodeURIComponent(title);
  83. $("#blogtitle").text(decodeURIComponent(title));
  84. });
  85. loadValue("blog-subtitle", function(title){
  86. if (title.error != undefined || title == ""){
  87. title = "Welcome to my personal blog!";
  88. }
  89. $("#blogsubtitle").text(decodeURIComponent(title));
  90. });
  91. }
  92. initBlogInfo();
  93. //Edit blog title and subtitles
  94. function editBlogSubtitle(){
  95. let newtitle = prompt("New Blog Subtitle", "");
  96. if (newtitle != null) {
  97. setValue("blog-subtitle", encodeURIComponent(newtitle), function(){
  98. initBlogInfo();
  99. })
  100. }
  101. }
  102. function editBlogTitle(){
  103. let newtitle = prompt("New Blog Title", "");
  104. if (newtitle != null) {
  105. setValue("blog-title", encodeURIComponent(newtitle), function(){
  106. initBlogInfo();
  107. })
  108. }
  109. }
  110. //Storage and loader utils
  111. function setValue(key, value, callback){
  112. $.get("/api/pref/set?key=" + key + "&value=" + value, function(data){
  113. callback(data);
  114. });
  115. }
  116. function loadValue(key, callback){
  117. $.get("/api/pref/get?key=" + key, function(data){
  118. callback(data);
  119. });
  120. }
  121. /*
  122. New Post
  123. New post is created via creating a markdown file in the server
  124. side and open it with the markdown editor
  125. */
  126. $("#createNewPostBtn").on("click", function(){
  127. $("#newPostModal").toggle("fast");
  128. });
  129. function createNewPost(){
  130. let filename = $("#newPostTitle").val().trim();
  131. if (filename == ""){
  132. alert("Post title cannot be empty.");
  133. return;
  134. }
  135. if (filename.indexOf("/") >= 0){
  136. //Contains /. Reject
  137. alert("File name cannot contain path seperator");
  138. return;
  139. }
  140. $("#confirmNewPostBtn").addClass("loading").addClass("disabled");
  141. //Create the markdown file at the /blog/posts folder
  142. const blob = new Blob(["# Hello World\n"], { type: 'text/plain' });
  143. let storeFilename = parseInt(Date.now()/1000) + "_" + filename+'.md';
  144. const file = new File([blob], storeFilename);
  145. handleFile(file, "/blog/posts", function(){
  146. //Update the post index
  147. updatePostIndex();
  148. $("#confirmNewPostBtn").removeClass("loading").removeClass("disabled");
  149. //Open the markdown file in new tab
  150. let hash = encodeURIComponent(JSON.stringify({
  151. "filename": storeFilename,
  152. "filepath": "/blog/posts/" + storeFilename
  153. }))
  154. window.open("/admin/mde/index.html#" + hash);
  155. $("#newPostModal").hide();
  156. });
  157. }
  158. function handleFile(file, dir=currentPath, callback=undefined) {
  159. // Perform actions with the selected file
  160. var formdata = new FormData();
  161. formdata.append("file1", file);
  162. var ajax = new XMLHttpRequest();
  163. ajax.addEventListener("load", function(event){
  164. let responseText = event.target.responseText;
  165. try{
  166. responseText = JSON.parse(responseText);
  167. if (responseText.error != undefined){
  168. alert(responseText.error);
  169. }
  170. }catch(ex){
  171. }
  172. if (callback != undefined){
  173. callback();
  174. }
  175. }, false); // doesnt appear to ever get called even upon success
  176. ajax.addEventListener("error", errorHandler, false);
  177. //ajax.addEventListener("abort", abortHandler, false);
  178. ajax.open("POST", "/upload?dir=" + dir);
  179. ajax.send(formdata);
  180. }
  181. function errorHandler(event) {
  182. aelrt("New Post creation failed");
  183. $("#pasteButton").removeClass("disabled");
  184. }
  185. /*
  186. Post Edit functions
  187. */
  188. function editPost(btn){
  189. let postFilename = $(btn).attr("filename");
  190. let hash = encodeURIComponent(JSON.stringify({
  191. "filename": postFilename,
  192. "filepath": "/blog/posts/" + postFilename
  193. }))
  194. window.open("/admin/mde/index.html#" + hash);
  195. }
  196. function deletePost(btn){
  197. let postFilename = $(btn).attr("filename");
  198. let postTitle = $(btn).attr("ptitle");
  199. if (confirm("Confirm remove post titled: " + postTitle + "?")){
  200. $.ajax({
  201. url: "/api/fs/del?target=/blog/posts/" + postFilename,
  202. method: "POST",
  203. success: function(data){
  204. if (data.error != undefined){
  205. alert("Post delete failed. See console for more info.");
  206. console.log(data.error);
  207. }else{
  208. //Deleted
  209. initPosts();
  210. }
  211. }
  212. });
  213. }
  214. }
  215. /*
  216. Rendering for Posts
  217. */
  218. //Load a markdown file from URL and render it to target element
  219. function loadMarkdownToHTML(markdownURL, targetElement){
  220. fetch(markdownURL).then( r => r.text() ).then( text =>{
  221. var converter = new showdown.Converter();
  222. let targetHTML = converter.makeHtml(text);
  223. console.log(targetHTML);
  224. $(targetElement).html(targetHTML);
  225. });
  226. }
  227. function initPosts(){
  228. $("#posttable").html("<div class='ui basic segment'><p><i class='ui loading spinner icon'></i> Loading Blog Posts</p></div>");
  229. loadValue("blog-posts", function(data){
  230. $("#posttable").html("");
  231. try{
  232. let postList = JSON.parse(decodeURIComponent(atob(data)));
  233. //From latest to oldest
  234. postList.reverse();
  235. console.log("Post listed loaded: ", postList);
  236. if (postList.length == 0){
  237. $("#nopost").show();
  238. }else{
  239. $("#nopost").hide();
  240. postList.forEach(postFilename => {
  241. renderPost(postFilename);
  242. })
  243. }
  244. }catch(ex){
  245. $("#nopost").show();
  246. }
  247. })
  248. }
  249. function forceUpdatePostIndex(){
  250. updatePostIndex(function(){
  251. window.location.reload();
  252. });
  253. }
  254. function updatePostIndex(callback=undefined){
  255. let postList = [];
  256. $.ajax({
  257. url: "/api/fs/list?dir=/blog/posts",
  258. success: function(data){
  259. data.forEach(file => {
  260. let filename = file.Filename;
  261. let ext = filename.split(".").pop();
  262. if (ext == "md" && file.IsDir == false){
  263. //Markdown file. Render it
  264. postList.push(filename);
  265. }
  266. });
  267. setValue("blog-posts", btoa(encodeURIComponent(JSON.stringify(postList))), function(data){
  268. console.log(data);
  269. if (callback != undefined){
  270. callback();
  271. }
  272. });
  273. }
  274. });
  275. }
  276. //Render post
  277. function renderPost(filename){
  278. //Remove the timestamp
  279. let postTitle = filename.split("_");
  280. let timeStamp = postTitle.shift();
  281. postTitle = postTitle.join("_");
  282. //Pop the file extension
  283. postTitle = postTitle.split(".");
  284. postTitle.pop();
  285. postTitle = postTitle.join(".");
  286. var postTime = new Date(parseInt(timeStamp) * 1000).toLocaleDateString("en-US")
  287. let postEditFeature = `<div class="adminOnly" style="position: absolute; top: 3em; right: 0.4em;">
  288. <a class="ui basic mini icon button" onclick="editPost(this);" filename="${filename}" title="Edit Post"><i class="edit icon"></i></a>
  289. <button class="ui basic mini icon button" onclick="deletePost(this);" ptitle="${postTitle}" filename="${filename}" title="Remove Post"><i class="red trash icon"></i></button>
  290. </div>`;
  291. if (!loggedIn){
  292. postEditFeature = "";
  293. }
  294. //Create a wrapper element
  295. $("#posttable").append(`
  296. <div class="ui basic segment postObject" id="${timeStamp}">
  297. <div class="ui divider"></div>
  298. <h4 class="ui header">
  299. <i class="blue paperclip icon"></i>
  300. <div class="content">
  301. ${postTitle}
  302. </div>
  303. </h4>
  304. ${postEditFeature}
  305. <div class="postContent">
  306. </div>
  307. <small><i class="calendar alternate outline icon"></i> ${postTime}</small>
  308. </div>
  309. `);
  310. let targetElement = $("#" + timeStamp).find(".postContent");
  311. loadMarkdownToHTML("/blog/posts/" + filename,targetElement);
  312. }
  313. </script>
  314. </body>
  315. </html>