{"id": "eB4rTdZFvrdKK5VP", "name": "Backup Squarespace code Injections to Github", "nodes": [{"id": "e0811eee-5bfe-4e48-8bd2-76b415261e93", "name": "On clicking 'execute'", "type": "n8n-nodes-base.manualTrigger", "position": [820, 486.1164603611751], "parameters": {}, "typeVersion": 1}, {"id": "e48028e0-d88a-4681-84b8-fa17fe695344", "name": "Loop Over Items", "type": "n8n-nodes-base.splitInBatches", "position": [2380, 580], "parameters": {"options": {}, "batchSize": 2}, "typeVersion": 3, "alwaysOutputData": true}, {"id": "0dd2a2b1-8c19-4d7a-a631-d934320bcf74", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [820, 686.1164603611751], "parameters": {"rule": {"interval": [{"field": "hours", "hoursInterval": 2}]}}, "typeVersion": 1.2}, {"id": "a1bc1313-5993-4d10-b322-0b31dd005d00", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [380, 240], "parameters": {"color": 4, "width": 371.1995072042308, "height": 600.88409546716, "content": "## Backup to GitHub \nThis workflow will backup Squarespace header & footer Injections to Github\n\n\n### Setup\nšŸ‘‰ Edit the Squarespace node to place the website URL there\n\nšŸ‘‰ Open `Globals` node and update the values below šŸ‘‡\n\n- **repo.owner:** your Github username\n- **repo.name:** the name of your repository\n- **repo.path:** the folder to use within the repository.\n\n\nIf your username was `john-doe` and your repository was called `n8n-backups` and you wanted the injections to go into a `squarespace-backup` folder you would set:\n\n- repo.owner - john-doe\n- repo.name - n8n-backups\n- repo.path - squarespace-backup/\n\nEach site's injections will be added into seperate folder\n"}, "typeVersion": 1}, {"id": "125b425c-1f59-4984-8658-e57d3145cccd", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [780, 400], "parameters": {"color": 7, "width": 1066, "height": 435, "content": "## Main workflow loop"}, "typeVersion": 1}, {"id": "626d534f-f2fb-4493-af58-0f5e309c58d4", "name": "Get Squarespace data", "type": "n8n-nodes-base.httpRequest", "position": [1140, 600], "parameters": {"url": "https://beyondspace.studio", "options": {}, "sendQuery": true, "queryParameters": {"parameters": [{"name": "format", "value": "page-context"}]}}, "typeVersion": 4.2}, {"id": "e2b1481e-b9de-4006-92b6-4677b4e11213", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1080, 460], "parameters": {"color": 4, "width": 170, "height": 120, "content": "## Edit this node šŸ‘‡\nSquarespace URL"}, "typeVersion": 1}, {"id": "e8fb73af-9999-43cd-9857-564a049b2579", "name": "If", "type": "n8n-nodes-base.if", "position": [3060, 600], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "0f6f0b04-6d87-47fb-bee7-df2c93283d1c", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.error }}", "rightValue": "The resource you are requesting could not be found"}]}}, "typeVersion": 2.2}, {"id": "679cd20a-c124-4f89-aea3-14dc5a739826", "name": "Clean up Footers", "type": "n8n-nodes-base.code", "position": [1620, 460], "parameters": {"jsCode": "const cheerio = require('cheerio');\n\ntry {\n const $footers = cheerio.load($input.first().json.value);\n let sqsFooters = '';\n\n /** CLEAN FOOTERS */\n // Remove all elements after and including .social-icons-svg\n const socialIcons = $footers('[data-usage=social-icons-svg]');\n if (socialIcons.length) {\n socialIcons.nextAll().remove(); // Remove everything after it\n socialIcons.remove(); // Remove the element itself\n }\n\n // Extract cleaned-up footer content\n $footers('head').each((i, el) => {\n sqsFooters += $footers(el).html();\n });\n\n // Remove excessive newlines caused by removed elements\n sqsFooters = sqsFooters.replace(/\\n{2,}/g, '\\n').trim();\n\n return [{\n ...$input.first().json,\n value: sqsFooters,\n }];\n} catch (error) {\n console.error('Error processing Squarespace footers:', error);\n\n // Return the original full input in case of failure\n return [{\n ...$input.first().json,\n value: $input.first().json.value,\n }];\n}\n"}, "typeVersion": 2}, {"id": "92150603-acbd-41bf-8cf2-b6891e08e326", "name": "Clean up Headers", "type": "n8n-nodes-base.code", "position": [1620, 680], "parameters": {"jsCode": "const cheerio = require('cheerio');\n\ntry {\n const $headers = cheerio.load($input.first().json.value);\n let sqsHeaders = '';\n\n // Find the Squarespace CSS link that marks the start of relevant headers\n const $headerStart = $headers('link[href*=\"static1.squarespace.com/static/versioned-site-css\"][href*=\"site.css\"]');\n\n // Remove all elements before and including the header start\n if ($headerStart.length) {\n $headers($headerStart).prevAll().remove();\n $headers($headerStart).remove();\n }\n\n // Remove Squarespace's cookie banner script (marks the end) and any following elements\n const cookieBannerScript = $headers('script').filter((_, el) => \n $headers(el).html().includes('Static.COOKIE_BANNER_CAPABLE = true;')\n );\n if (cookieBannerScript.length) {\n cookieBannerScript.nextAll().remove(); // Remove everything after it\n cookieBannerScript.remove(); // Remove the script itself\n }\n\n // Extract cleaned-up headers\n $headers('head').each((i, el) => {\n sqsHeaders += $headers(el).html();\n });\n\n // Remove any unwanted comments or placeholders\n sqsHeaders = sqsHeaders.replace('', '');\n\n // Remove excessive newlines caused by removed elements\n sqsHeaders = sqsHeaders.replace(/\\n{2,}/g, '\\n').trim();\n\n return [{\n ...$input.first().json,\n value: sqsHeaders,\n }];\n} catch (error) {\n console.log('Error processing Squarespace headers:', error);\n \n // Return the original full input in case of failure\n return [{\n ...$input.first().json,\n value: $input.first().json.value,\n }];\n}\n"}, "typeVersion": 2}, {"id": "a777d9ca-2841-47dc-a4d5-5ae36713d4a2", "name": "Get Footer Injection", "type": "n8n-nodes-base.set", "position": [1380, 460], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "49e2fd3c-d46e-42a0-84d5-578166c1fbae", "name": "value", "type": "string", "value": "={{ $json[\"squarespace-footers\"] }}"}, {"id": "b2de857c-2120-4e7e-81d8-bb73dd059261", "name": "id", "type": "string", "value": "footers"}, {"id": "14de0bc4-6a40-488d-a17e-0ff940a8d38b", "name": "name", "type": "string", "value": "footers"}, {"id": "065cb5cd-b9fd-4aab-90be-5191e96d9b91", "name": "timestamp", "type": "string", "value": "={{ new Date().getTime() }}"}, {"id": "41016a39-abf7-46ce-88b9-985553210983", "name": "domain", "type": "string", "value": "={{ ($json.website.primaryDomain