Commit 0d4a1333
Changed files (4)
app
db
app/controllers/creations_controller.rb
@@ -23,14 +23,11 @@ class CreationsController < ApplicationController
# POST /creations
def create
- logger.debug "#{Time.now} starting creation"
@creation = current_user.creations.create(params[:creation])
@creation.category_ids = params[:creation][:category_ids] ||= []
- logger.debug "#{Time.now}finished updating params"
+ @creation.photos.build({:is_primary => true, :image => params[:creation][:image]})
+
if @creation.save
- logger.debug "#{Time.now}finished saving"
- @creation.delay.migrate_primary_image
- logger.debug "#{Time.now}background primary image migration"
redirect_to(creations_url, :notice => 'Thank you for sharing your creation. It will appear in the main timeline shortly.')
else
flash[:error] = @creation.errors.full_messages
app/uploaders/photo_uploader.rb
@@ -21,14 +21,15 @@ class PhotoUploader < CarrierWave::Uploader::Base
end
process :set_content_type
- process :convert => 'png'
# Create different versions of your uploaded files:
version :large do
+ process :convert => 'png'
process :resize_to_fit => [910, 630]
process :watermark
end
version :thumb, :from_version => :large do
+ process :convert => 'png'
process :resize_to_fill => [260, 180]
end
app/views/creations/_form.html.erb
@@ -5,7 +5,7 @@
});
</script>
<% end %>
-<%= form_for(@creation, :url => fast_upload_path, :html => {:multipart => true, :class => "form-horizontal"}) do |f| %>
+<%= form_for(@creation, :html => {:multipart => true, :class => "form-horizontal"}) do |f| %>
<fieldset>
<div class="control-group">
<%= f.label :name, :class => "control-label" %>
db/schema.rb
@@ -29,18 +29,18 @@ ActiveRecord::Schema.define(:version => 20121013031725) do
add_index "active_admin_comments", ["resource_type", "resource_id"], :name => "index_admin_notes_on_resource_type_and_resource_id"
create_table "admin_users", :force => true do |t|
- t.string "email", :default => "", :null => false
- t.string "encrypted_password", :limit => 128, :default => "", :null => false
+ t.string "email", :default => "", :null => false
+ t.string "encrypted_password", :default => "", :null => false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
- t.integer "sign_in_count", :default => 0
+ t.integer "sign_in_count", :default => 0
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
end
add_index "admin_users", ["email"], :name => "index_admin_users_on_email", :unique => true
@@ -55,8 +55,8 @@ ActiveRecord::Schema.define(:version => 20121013031725) do
create_table "categories", :force => true do |t|
t.string "name"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
t.string "slug"
end
@@ -80,8 +80,8 @@ ActiveRecord::Schema.define(:version => 20121013031725) do
create_table "creations", :force => true do |t|
t.string "name"
t.text "story"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
t.integer "user_id"
t.string "image"
t.boolean "is_restricted", :default => false, :null => false
@@ -113,8 +113,8 @@ ActiveRecord::Schema.define(:version => 20121013031725) do
create_table "favorites", :force => true do |t|
t.integer "user_id"
t.integer "creation_id"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
end
create_table "interests", :force => true do |t|
@@ -126,8 +126,8 @@ ActiveRecord::Schema.define(:version => 20121013031725) do
create_table "photos", :force => true do |t|
t.integer "creation_id"
t.string "image"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
t.boolean "is_primary", :default => false
end
@@ -163,18 +163,18 @@ ActiveRecord::Schema.define(:version => 20121013031725) do
end
create_table "users", :force => true do |t|
- t.string "email", :default => "", :null => false
- t.string "encrypted_password", :limit => 128, :default => "", :null => false
+ t.string "email", :default => "", :null => false
+ t.string "encrypted_password", :default => "", :null => false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
- t.integer "sign_in_count", :default => 0
+ t.integer "sign_in_count", :default => 0
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
t.string "name"
t.string "website"
t.string "twitter"