I would like to store the youtube embed link version of youtube URL's in my db. I have a helper that helps convert the users pasted link into the embed version.
Anyway before saving I'd like to convert it then pass the converted value over to the model for it to be saved. I've created a method in my controller that I use to pass the link param into the helper method that does the conversion.
Anyway this has no effect. The orignal link pasted into the text box gets saved. I've tried doing this in the model with before_save and self.link but it doesn't work either. Below is my current code.
Form:
= form_for @micropost, :remote => true do |f|
= f.text_field :link, :class => "addLinkField"
= f.submit
Helper for converting pasted link:
module OgpObjectsHelper
def video_embed(video_url)
if video_url[/(https?):\/\/(www.)?(youtube\.com\/watch\?v=|youtu\.be\|youtube\.com\/watch\?feature=player_embedded&v=)([A-Za-z0-9_-]*)(\&\S+)?(\S)*/]youtube_id = $4
"http://www.youtube.com/embed/#{ youtube_id }"
end
end
Controller:
class MicropostsController < ApplicationController
include OgpObjectsHelper
before_filter :convert_video_link
def create
@micropost = current_user.microposts.build(params[:micropost])
respond_to do |format|
if @micropost.save
format.html { render :partial => '/users/partials/micropost'}
end
end
end
def convert_video_link
video_embed(params[:micropost][:link])
end
end
I would appreciate a best approach solution thanks.
Kind regards