Friday, July 3, 2015

Php Script to Download Your Facebook Albums

In facebook there is no option to download all the albums that you have created. Following steps will describe how you can use a php script to download all the albums to your local machine.

I have used facebook access token to authenticate and facebook graph API to retrieve album details.

1. You can get the script from following git-hub repository.
https://github.com/yasithacp/fb-albums-download-script

2. Then you need to get your facebook access token.
  • Go to the facebook graph explorer.
  • Log in using your facebook credentials.
  • Click on the Get Token drop down and then Get Access Token.
  • Select check-box and click on Get Access Token.
  • Note down your access token.

3. Open up the script file and modify the following configuration section.
define('ACCESS_KEY', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
define('API_HOST', 'https://graph.facebook.com/');
define('VERSION', 'v2.3');
define('FOLDER_PATH', '/Users/yasitha/facebook_albums/');
  • ACCESS_KEY: Access key retrieved in step 2.
  • FOLDER_PATH: Local folder path that albums should download.
4. Obviously you should have php on your machine.

5. Execute the following command to run the script and download will start.
php download-facebook-albums.php
6. If you have large number of albums, script will take time to download all the albums. If your access token get expired repeat the step 1 and replace the script with your new access token and re-run the script. Download will resume.

Sunday, June 21, 2015

Ruby script to use Azure Blob Storage

Azure Blob storage is a service for storing large amounts of unstructured data, such as text or binary data, that can be accessed from anywhere in the world via HTTP or HTTPS. You can use Blob storage to expose data publicly to the world, or to store application data privately.

This post will show you how to perform common scenarios using the Azure Blob service. The samples are written using the Ruby API. The scenarios covered include uploading, listing, downloading, and deleting blobs.

You can download final ruby script from here.

This post assumes you have already created a storage account and a container.

  • Type "gem install azure" in the command window to install the gem and dependencies.
  • Import installed package in to the script file.
require "azure"
view raw blobstorage1.rb hosted with ❤ by GitHub
  • Setup global parameters.
Azure.config.storage_account_name = "account"
Azure.config.storage_access_key = "xxxxxxxxxxxxxxx+xxxxxxxxxxxxxxxx/xxxx+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=="
CONTAINER = "container"
AZURE_BLOB_SERVICE = Azure::BlobService.new
view raw blobstorage2.rb hosted with ❤ by GitHub
  • Uploading a Blob into a Container
def upload(input_path, blob_name)
content = File.open(input_path, "rb") { |file| file.read }
blob = AZURE_BLOB_SERVICE.create_block_blob(CONTAINER,
blob_name, content)
puts blob.name + " uploaded succesfully.."
end
view raw blobstorage3.rb hosted with ❤ by GitHub
  • List the Blobs in a Container
def list()
containers = AZURE_BLOB_SERVICE.list_containers()
containers.each do |container|
blobs = AZURE_BLOB_SERVICE.list_blobs(container.name)
blobs.each do |blob|
puts blob.name
end
end
end
view raw blobstorage4.rb hosted with ❤ by GitHub
  • Download Blobs
def download(blob_name, output_file)
blob, content = AZURE_BLOB_SERVICE.get_blob(CONTAINER,blob_name)
File.open(output_file,"wb") {|f| f.write(content)}
puts blob_name + " downloaded succesfully.."
end
view raw blobstorage5.rb hosted with ❤ by GitHub
  • Delete a Blob
def delete(blob_name)
AZURE_BLOB_SERVICE.delete_blob(CONTAINER, blob_name)
puts blob_name + " deleted succesfully.."
end
view raw blobstorage6.rb hosted with ❤ by GitHub

Writing Dynamic SQL in MyBatis

This post will take you through a several examples of creating a dynamic sql queries which you will come up in a day to day development using mybatis.
  • Use of if statement
We can use the if statement where we need to conditionally include parts of a where clause.
eg: Search Employee. Employee name and role can be added as filter fields.
<select id="searchEmployee" resultType="Employee">
SELECT * FROM Employee
WHERE status = 'ACTIVE'
<if test="empName != null">
AND empName LIKE #{empName}
</if>
<if test="empRole != null">
AND empRole = #{empRole}
</if>
</select>
view raw ibatis1.xml hosted with ❤ by GitHub
  • Use of choose, when, otherwise
What about switch statement in query where we need to choose only one case among many options.
<select id="findEmployeesByLocation" resultType="Employee">
SELECT * FROM Employee WHERE status = 'ACTIVE'
<choose>
<when test="locationType == 'local'">
AND local_loc_code = #{loc_code}
</when>
<when test="locationType == 'remote'">
AND local_loc_code = #{loc_code}
</when>
<otherwise>
AND loc_code = #{loc_code}
</otherwise>
</choose>
</select>
view raw ibatis2.xml hosted with ❤ by GitHub
  • Use of where
When you have a query with multiple optional where clauses you may find a difficulty to build the query with correct prefix. MyBatis has a simple solution for this. It is where element. The where element knows to only insert "WHERE" if there is any content returned by the containing tags. Furthermore, if that content begins with "AND" or "OR", it knows to strip it off.
<select id="searchEmployee" resultType="Employee">
SELECT * FROM Employee
<where>
<if test="status != null">
status = #{status}
</if>
<if test="empName != null">
AND empName LIKE #{empName}
</if>
<if test="empRole != null">
AND empRole = #{empRole}
</if>
</where>
</select>
view raw ibatis3.xml hosted with ❤ by GitHub
  • Use of set
The set element can be used to dynamically include columns to update, and leave out others.
<update id="updateEmployee">
update Employee
<set>
<if test="firstName != null">firstName=#{firstName},</if>
<if test="lastName != null">lastName=#{lastName},</if>
<if test="email != null">email=#{email},</if>
<if test="mobileNo != null">mobileNo=#{mobileNo}</if>
</set>
where id=#{id}
</update>
view raw ibatis4.xml hosted with ❤ by GitHub
  • Use of foreach
Another common necessity for dynamic SQL is the need to iterate over a collection, often to build an IN condition.
<select id="selectEmployeesIn" resultType="Employee">
SELECT *
FROM Employee
WHERE id in
<foreach item="item" index="index" collection="list"
open="(" separator="," close=")">
#{item}
</foreach>
</select>
view raw ibatis5.xml hosted with ❤ by GitHub