Giter Club home page Giter Club logo

clean-fb-wall's Introduction

Clean your Facebook Wall

Process

Add a bookmark to your Chrome with the following content:

javascript:!function(){function e(){holder=document.createElement("div"),holder.id="fbwd",firstStory=document.querySelector("div.lastCapsule").nextSibling,holder.className=firstStory.className+" "+firstStory.querySelector("div").className,newPost=document.querySelector("div.timelineUnitContainer").querySelector('button[type="submit"]'),innerHTML='<div style="text-align:center"><h2 style="color:#3b5998;text-align:center;font-size:2em;margin-bottom:5px;">Facebook wall delete</h2><br/>',innerHTML+='<p style="font-size:1.25em">',innerHTML+='<span style="color: #6a7480; font-weight:bold">Current status:</span> ',innerHTML+='<span style="color: #3b5998" id="currentStatus">Waiting...</span>',innerHTML+="</p>",innerHTML+='<p style="font-size:1.25em">',innerHTML+='<span style="color: #6a7480; font-weight:bold">Popups activated:</span> ',innerHTML+='<span style="color: #3b5998" id="activatedPopups">0</span>',innerHTML+="</p>",innerHTML+='<p style="font-size:1.25em">',innerHTML+='<span style="color: #6a7480; font-weight:bold">Stories to delete:</span> ',innerHTML+='<span style="color: #3b5998" id="storiesToDelete">0</span>',innerHTML+="</p>",innerHTML+="<p>",innerHTML+='<button id="continueDeletion" class="'+newPost.className+'">CLEAN MY WALL !</button>',innerHTML+="</p>",innerHTML+="</div>",holder.innerHTML=innerHTML,document.querySelector("div.lastCapsule").appendChild(holder)}window.fbwd={},window.fbwd.scroll=0,window.fbwd.scrollAttempts=0,window.fbwd.eventFire=function(e,o){if(e.fireEvent)e.fireEvent("on"+o);else{var t=document.createEvent("Events");t.initEvent(o,!0,!1),e.dispatchEvent(t)}},window.fbwd.click=function(e){window.fbwd.eventFire(e,"click")},window.fbwd.clickAll=function(e,o){for(i=0;i<e.length;++i)window.fbwd.click(e[i]),o&&o()},window.fbwd.log=function(e){document.getElementById("currentStatus").innerHTML=e+"..."},window.fbwd.scrollToBottom=function(){window.fbwd.scroll<document.body.scrollHeight?(console.log("scrolling"),window.fbwd.scroll=document.body.scrollHeight,window.fbwd.scrollAttempts=0,window.scrollTo(0,document.body.scrollHeight)):(console.log("not scrolling"),window.fbwd.scrollAttempts++)},window.fbwd.infiniteScrollToBottom=function(){window.fbwd.scrollAttempts<5?(window.fbwd.scrollToBottom(),setTimeout(window.fbwd.infiniteScrollToBottom,500)):(e(),aPopUp=document.querySelectorAll('div.fbTimelineCapsule a[aria-haspopup="true"][aria-label="Story options"]'),window.fbwd.toDelete=aPopUp.length,window.fbwd.log("Will activate "+aPopUp.length+" story options popups"),window.fbwd.clickAll(aPopUp),window.fbwd.log("Done"),document.getElementById("activatedPopups").innerHTML=aPopUp.length,window.fbwd.log("Discarding popups"),window.fbwd.click(document.getElementsByTagName("body")[0]),window.fbwd.log("Finding all visible delete handlers"),window.fbwd.locateDeleteHandlers=function(){aDelete=document.querySelectorAll('a[data-feed-option-name="FeedDeleteOption"]'),aDelete.length===window.fbwd.toDelete?(window.fbwd.toDelete=aDelete,document.getElementById("storiesToDelete").innerHTML=aDelete.length,window.fbwd.log("Waiting on you to accept or cancel")):(window.fbwd.log("Searching for stories to delete"),setTimeout(window.fbwd.locateDeleteHandlers,1e3))},window.fbwd.locateDeleteHandlers(),document.getElementById("continueDeletion").onclick=window.fbwd.continueDeletion)},window.fbwd.continueDeletion=function(){window.fbwd.log("Deleting..."),window.fbwd.delStatus={index:0,clickedDelete:!1,clickedConfirm:!1},window.fbwd.doDelete=function(){if(window.fbwd.delStatus.clickedDelete)if(btn=document.querySelectorAll('div[role="dialog"] button'),window.fbwd.delStatus.clickedConfirm){if(dialog=document.querySelectorAll('div[role="dialog"]'),dialog.length>0)for(i=0;i<dialog.length;i++)dialog[i].parentNode.removeChild(dialog[i]);window.fbwd.delStatus.index<window.fbwd.toDelete.length-1?(window.fbwd.delStatus={index:window.fbwd.delStatus.index+1,clickedDelete:!1,clickedConfirm:!1},setTimeout(window.fbwd.doDelete,100)):(window.fbwd.log("All done. Will refresh in two seconds"),setTimeout(function(){location.reload()},2e3))}else btn.length>0&&(window.fbwd.click(btn[0]),window.fbwd.delStatus.clickedConfirm=!0),setTimeout(window.fbwd.doDelete,100);else window.fbwd.click(window.fbwd.toDelete[window.fbwd.delStatus.index]),window.fbwd.delStatus.clickedDelete=!0,setTimeout(window.fbwd.doDelete,100)},window.fbwd.doDelete()},window.fbwd.infiniteScrollToBottom()}();

Then go to your timeline, and click your bookmark file.

The process will scroll on your timeline until it cannot find something new, then will get to the top of the page showing you a little box with a button that you need to click to clean your entire wall.

Click it and wait until it has finished. At the end of the process the page will refresh, you should see no more posts on your timeline.

The code

This is the code documented:

(function() {
  // global holder
  window.fbwd = {};
  window.fbwd.scroll = 0;
  window.fbwd.scrollAttempts = 0;

  // properly send an event to dom element
  window.fbwd.eventFire = function(el, etype) {
    if (el.fireEvent) {
      el.fireEvent('on' + etype);
    } else {
      var evObj = document.createEvent('Events');
      evObj.initEvent(etype, true, false);
      el.dispatchEvent(evObj);
    }
  }

  // click on a dom element
  window.fbwd.click = function(el) {
    window.fbwd.eventFire(el, 'click');
    //console.log('Clicking on ', el);
  }

  // click on all dom elements part of the array `a`
  // Run callback cb each time if any given
  window.fbwd.clickAll = function(a, cb) {
    for (i = 0; i < a.length; ++i) {
        window.fbwd.click(a[i]);
        if (cb) cb();
    }
  }

  window.fbwd.log = function(s) {
    document.getElementById('currentStatus').innerHTML = s + '...';
  }

  // enhance UI
  function enhanceUI() {
    // locate the div.lastCapsule and append a child that will reflect what's being done on the UI
    // during the delete process.
    holder = document.createElement('div');
    holder.id = 'fbwd';
    // retrieve the first story and copy its generated style
    firstStory = document.querySelector('div.lastCapsule').nextSibling;
    holder.className = firstStory.className + " " + firstStory.querySelector('div').className;
    // retrieve the new story post button and copy its generated style
    newPost = document.querySelector('div.timelineUnitContainer').querySelector('button[type="submit"]');
    // Ok now that we have our holder div, append some HTML with some predefined ids
    innerHTML = '<div style="text-align:center"><h2 style="color:#3b5998;text-align:center;font-size:2em;margin-bottom:5px;">Facebook wall delete</h2><br/>';
    innerHTML += '<p style="font-size:1.25em">';
    innerHTML += '<span style="color: #6a7480; font-weight:bold">Current status:</span> ';
    innerHTML += '<span style="color: #3b5998" id="currentStatus">Waiting...</span>';
    innerHTML += '</p>';
    innerHTML += '<p style="font-size:1.25em">';
    innerHTML += '<span style="color: #6a7480; font-weight:bold">Popups activated:</span> ';
    innerHTML += '<span style="color: #3b5998" id="activatedPopups">0</span>';
    innerHTML += '</p>';
    innerHTML += '<p style="font-size:1.25em">';
    innerHTML += '<span style="color: #6a7480; font-weight:bold">Stories to delete:</span> ';
    innerHTML += '<span style="color: #3b5998" id="storiesToDelete">0</span>';
    innerHTML += '</p>';
    innerHTML += '<p>';
    innerHTML += '<button id="continueDeletion" class="' + newPost.className + '">CLEAN MY WALL !</button>';
    innerHTML += '</p>'
    innerHTML += '</div>';
    holder.innerHTML = innerHTML;
    document.querySelector('div.lastCapsule').appendChild(holder);
  }

  window.fbwd.scrollToBottom = function() {
    if (window.fbwd.scroll < document.body.scrollHeight) {
      //console.log('scrolling');
      window.fbwd.scroll = document.body.scrollHeight;
      window.fbwd.scrollAttempts = 0;
      window.scrollTo(0, document.body.scrollHeight);
    } else {
      //console.log('not scrolling');
      window.fbwd.scrollAttempts++;
    }
  };

  window.fbwd.infiniteScrollToBottom = function() {
    if (window.fbwd.scrollAttempts < 5) {
      window.fbwd.scrollToBottom();
      setTimeout(window.fbwd.infiniteScrollToBottom, 500);
    } else {
      // loaded all it could
      // add some fancy HTML to show progress
      enhanceUI();

      // force write the popup's content into the DOM
      // TODO: Make it language independant? Seems not possible at the moment since the aria-label attribute
      //       is the only thing differentiating from the "Your friends button" showing how the story is shared
      //       among friends. Obviously we cannot rely on generated CSS classes.
      aPopUp = document.querySelectorAll('div.fbTimelineCapsule a[aria-haspopup="true"][aria-label="Story options"]');
      window.fbwd.toDelete = aPopUp.length;
      window.fbwd.log('Will activate ' + aPopUp.length + ' story options popups');
      window.fbwd.clickAll(aPopUp);
      window.fbwd.log('Done');
      document.getElementById('activatedPopups').innerHTML = aPopUp.length;
      // click somewhere else to discard popups
      window.fbwd.log('Discarding popups');
      window.fbwd.click(document.getElementsByTagName('body')[0]);

      window.fbwd.log('Finding all visible delete handlers');
      window.fbwd.locateDeleteHandlers = function() {
        aDelete = document.querySelectorAll('a[data-feed-option-name="FeedDeleteOption"]');
        if (aDelete.length === window.fbwd.toDelete) {
          // ok cool
          window.fbwd.toDelete = aDelete;
          document.getElementById('storiesToDelete').innerHTML = aDelete.length;
          window.fbwd.log('Waiting on you to accept or cancel');
        } else {
          window.fbwd.log('Searching for stories to delete');
          setTimeout(window.fbwd.locateDeleteHandlers, 1000); // retry
        }
      }
      // locate them!
      window.fbwd.locateDeleteHandlers();

      document.getElementById('continueDeletion').onclick = window.fbwd.continueDeletion;
    }
  };

  // install global function that will be called on user click on generated accept button
  window.fbwd.continueDeletion = function() {
    window.fbwd.log('Deleting...');
    window.fbwd.delStatus = {
      index: 0,
      clickedDelete: false,
      clickedConfirm: false
    };

    // Method that check for a current story to delete and actually delete it
    // handling the clicking etc.
    window.fbwd.doDelete = function() {
      //console.log('doDelete: ', window.fbwd.delStatus);
      if (!window.fbwd.delStatus.clickedDelete) {
        //console.log('Need to click delete button');
        window.fbwd.click(window.fbwd.toDelete[window.fbwd.delStatus.index]);
        window.fbwd.delStatus.clickedDelete = true;
        //console.log('Clicked delete button');
        setTimeout(window.fbwd.doDelete, 100);
      } else {
        btn = document.querySelectorAll('div[role="dialog"] button');
        if (!window.fbwd.delStatus.clickedConfirm) {
          //console.log('Waiting for confirm button');
          if (btn.length > 0) {
            //console.log('Need to click confirm button');
            window.fbwd.click(btn[0]);
            window.fbwd.delStatus.clickedConfirm = true;
            //console.log('Clicked confirm button');
          }
          setTimeout(window.fbwd.doDelete, 100);
        } else {
          //console.log('Waiting for dialog to disappear');
          dialog = document.querySelectorAll('div[role="dialog"]');
          if (dialog.length > 0) {
            // discard it really, we don't care
            // the ajax request is already gone, discard the dialog, we don't care
            for (i = 0; i < dialog.length; i++)
              dialog[i].parentNode.removeChild(dialog[i]);
          }
          //console.log('Dialog has disappeared');
          // continue with next timeline story
          if (window.fbwd.delStatus.index < window.fbwd.toDelete.length - 1) {
            window.fbwd.delStatus = {
              index: window.fbwd.delStatus.index + 1,
              clickedDelete: false,
              clickedConfirm: false
            };
            setTimeout(window.fbwd.doDelete, 100);
          } else {
            // We've deleted everything
            //console.log('All done !');
            window.fbwd.log('All done. Will refresh in two seconds');
            setTimeout(function() { location.reload(); }, 2000);
          }
        }
      }
    };

    // let's do that
    window.fbwd.doDelete();
  };

  window.fbwd.infiniteScrollToBottom();

})();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.