This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
forked from patrickmcelwee/spree_shipping_csv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e647e10
commit fa2f67b
Showing
13 changed files
with
306 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
= Shipping Csv | ||
|
||
Description goes here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
# I think this is the one that should be moved to the extension Rakefile template | ||
|
||
# In rails 1.2, plugins aren't available in the path until they're loaded. | ||
# Check to see if the rspec plugin is installed first and require | ||
# it if it is. If not, use the gem version. | ||
|
||
# Determine where the RSpec plugin is by loading the boot | ||
unless defined? SPREE_ROOT | ||
ENV["RAILS_ENV"] = "test" | ||
case | ||
when ENV["SPREE_ENV_FILE"] | ||
require File.dirname(ENV["SPREE_ENV_FILE"]) + "/boot" | ||
when File.dirname(__FILE__) =~ %r{vendor/SPREE/vendor/extensions} | ||
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../../")}/config/boot" | ||
else | ||
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../")}/config/boot" | ||
end | ||
end | ||
|
||
require 'rake' | ||
require 'rake/rdoctask' | ||
require 'rake/testtask' | ||
|
||
rspec_base = File.expand_path(SPREE_ROOT + '/vendor/plugins/rspec/lib') | ||
$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base) | ||
require 'spec/rake/spectask' | ||
# require 'spec/translator' | ||
|
||
# Cleanup the SPREE_ROOT constant so specs will load the environment | ||
Object.send(:remove_const, :SPREE_ROOT) | ||
|
||
extension_root = File.expand_path(File.dirname(__FILE__)) | ||
|
||
task :default => :spec | ||
task :stats => "spec:statsetup" | ||
|
||
desc "Run all specs in spec directory" | ||
Spec::Rake::SpecTask.new(:spec) do |t| | ||
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""] | ||
t.spec_files = FileList["#{extension_root}/spec/**/*_spec.rb"] | ||
end | ||
|
||
namespace :spec do | ||
desc "Run all specs in spec directory with RCov" | ||
Spec::Rake::SpecTask.new(:rcov) do |t| | ||
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""] | ||
t.spec_files = FileList['spec/**/*_spec.rb'] | ||
t.rcov = true | ||
t.rcov_opts = ['--exclude', 'spec', '--rails'] | ||
end | ||
|
||
desc "Print Specdoc for all specs" | ||
Spec::Rake::SpecTask.new(:doc) do |t| | ||
t.spec_opts = ["--format", "specdoc", "--dry-run"] | ||
t.spec_files = FileList['spec/**/*_spec.rb'] | ||
end | ||
|
||
[:models, :controllers, :views, :helpers].each do |sub| | ||
desc "Run the specs under spec/#{sub}" | ||
Spec::Rake::SpecTask.new(sub) do |t| | ||
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""] | ||
t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"] | ||
end | ||
end | ||
|
||
# Hopefully no one has written their extensions in pre-0.9 style | ||
# desc "Translate specs from pre-0.9 to 0.9 style" | ||
# task :translate do | ||
# translator = ::Spec::Translator.new | ||
# dir = RAILS_ROOT + '/spec' | ||
# translator.translate(dir, dir) | ||
# end | ||
|
||
# Setup specs for stats | ||
task :statsetup do | ||
require 'code_statistics' | ||
::STATS_DIRECTORIES << %w(Model\ specs spec/models) | ||
::STATS_DIRECTORIES << %w(View\ specs spec/views) | ||
::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) | ||
::STATS_DIRECTORIES << %w(Helper\ specs spec/views) | ||
::CodeStatistics::TEST_TYPES << "Model specs" | ||
::CodeStatistics::TEST_TYPES << "View specs" | ||
::CodeStatistics::TEST_TYPES << "Controller specs" | ||
::CodeStatistics::TEST_TYPES << "Helper specs" | ||
::STATS_DIRECTORIES.delete_if {|a| a[0] =~ /test/} | ||
end | ||
|
||
namespace :db do | ||
namespace :fixtures do | ||
desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y" | ||
task :load => :environment do | ||
require 'active_record/fixtures' | ||
ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym) | ||
(ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/) : Dir.glob(File.join(RAILS_ROOT, 'spec', 'fixtures', '*.{yml,csv}'))).each do |fixture_file| | ||
Fixtures.create_fixtures('spec/fixtures', File.basename(fixture_file, '.*')) | ||
end | ||
end | ||
end | ||
end | ||
end | ||
|
||
desc 'Generate documentation for the shipping_csv extension.' | ||
Rake::RDocTask.new(:rdoc) do |rdoc| | ||
rdoc.rdoc_dir = 'rdoc' | ||
rdoc.title = 'ShippingCsvExtension' | ||
rdoc.options << '--line-numbers' << '--inline-source' | ||
rdoc.rdoc_files.include('README') | ||
rdoc.rdoc_files.include('lib/**/*.rb') | ||
end | ||
|
||
# For extensions that are in transition | ||
desc 'Test the shipping_csv extension.' | ||
Rake::TestTask.new(:test) do |t| | ||
t.libs << 'lib' | ||
t.pattern = 'test/**/*_test.rb' | ||
t.verbose = true | ||
end | ||
|
||
namespace :test do | ||
desc 'Functional test the shipping_csv extension.' | ||
Rake::TestTask.new(:functionals) do |t| | ||
t.libs << 'lib' | ||
t.pattern = 'test/functional/*_test.rb' | ||
t.verbose = true | ||
end | ||
|
||
desc 'Unit test the shipping_csv extension.' | ||
Rake::TestTask.new(:units) do |t| | ||
t.libs << 'lib' | ||
t.pattern = 'test/unit/*_test.rb' | ||
t.verbose = true | ||
end | ||
end | ||
|
||
|
||
# Load any custom rakefiles for extension | ||
Dir[File.dirname(__FILE__) + '/tasks/*.rake'].sort.each { |f| require f } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
require 'fastercsv' | ||
|
||
class Admin::ShippingdocsController < Admin::BaseController | ||
def index | ||
@dateStart = DateTime.strptime(params[:start], "%m/%d/%Y") | ||
@dateEnd = DateTime.strptime(params[:end], "%m/%d/%Y") | ||
|
||
@orders = Order.find(:all, :conditions => { :created_at => @dateStart..@dateEnd }) | ||
|
||
csv_string = FasterCSV.generate do |csv| | ||
# header row | ||
csv << ["id", "billing_first_name", "billing_last_name", "billing_address_1", "billing_address_2", "billing_city", "billing_state", "billing_zip", | ||
"shipping_first_name", "shipping_last_name", "shipping_address_1", "shipping_address_2", "shipping_city", "shipping_state", "shipping_zip"] | ||
|
||
# data rows | ||
@orders.each do |order| | ||
@checkout = Checkout.find(:first, :conditions => {:order_id => order.id}) | ||
|
||
if @checkout.bill_address_id.nil? || @checkout.ship_address_id.nil? then | ||
else | ||
@billAddress = Address.find(:first, :conditions => {:id => @checkout.bill_address_id}) | ||
@shipAddress = Address.find(:first, :conditions => {:id => @checkout.ship_address_id}) | ||
|
||
csv << [order.id, @billAddress.firstname,@billAddress.lastname, @billAddress.address1, @billAddress.address2, @billAddress.city, @billAddress.state_name, @billAddress.zipcode, | ||
@shipAddress.firstname,@shipAddress.lastname, @shipAddress.address1, @shipAddress.address2, @shipAddress.city, @shipAddress.state_name, @shipAddress.zipcode] | ||
end | ||
|
||
end | ||
end | ||
|
||
# send it to the browsah | ||
send_data csv_string, | ||
:type => 'text/csv; charset=iso-8859-1; header=present', | ||
:disposition => "attachment; filename=users.csv" | ||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
module Admin::ShippingdocsHelper | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Put your extension routes here. | ||
|
||
map.namespace :admin do |admin| | ||
admin.resources :shippingdocs | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Use this file to load your own seed data from extensions. | ||
# See the db/seeds.rb file in the Spree core for some ideas on what you can do here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace :spree do | ||
namespace :extensions do | ||
namespace :shipping_csv do | ||
desc "Copies public assets of the Shipping Csv to the instance public/ directory." | ||
task :update => :environment do | ||
is_svn_git_or_dir = proc {|path| path =~ /\.svn/ || path =~ /\.git/ || File.directory?(path) } | ||
Dir[ShippingCsvExtension.root + "/public/**/*"].reject(&is_svn_git_or_dir).each do |file| | ||
path = file.sub(ShippingCsvExtension.root, '') | ||
directory = File.dirname(path) | ||
puts "Copying #{path}..." | ||
mkdir_p RAILS_ROOT + directory | ||
cp file, RAILS_ROOT + path | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Uncomment this if you reference any of your controllers in activate | ||
# require_dependency 'application' | ||
|
||
class ShippingCsvExtension < Spree::Extension | ||
version "1.0" | ||
description "Describe your extension here" | ||
url "http://yourwebsite.com/shipping_csv" | ||
|
||
# Please use shipping_csv/config/routes.rb instead for extension routes. | ||
|
||
# def self.require_gems(config) | ||
# config.gem "gemname-goes-here", :version => '1.2.3' | ||
# end | ||
|
||
def activate | ||
|
||
# make your helper avaliable in all views | ||
# Spree::BaseController.class_eval do | ||
# helper YourHelper | ||
# end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class ShippingCsvHooks < Spree::ThemeSupport::HookListener | ||
|
||
insert_after :admin_orders_index_search_buttons do | ||
%( <script> | ||
function submitCSV() | ||
{ | ||
var startDate = document.getElementById('search_created_at_after') | ||
var endDate = document.getElementById('search_created_at_before') | ||
window.location = "/admin/shippingdocs" + "?start=" + startDate.value + "&end=" + endDate.value | ||
} | ||
</script> | ||
<p><button type="button" onclick="javascript:submitCSV()"><span>CSV</span></button> | ||
) | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
require File.dirname(__FILE__) + '/../../spec_helper' | ||
|
||
describe Admin::ShippingdocsController do | ||
|
||
#Delete this example and add some real ones | ||
it "should use Admin::ShippingdocsController" do | ||
controller.should be_an_instance_of(Admin::ShippingdocsController) | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
require File.dirname(__FILE__) + '/../../spec_helper' | ||
|
||
describe Admin::ShippingdocsHelper do | ||
|
||
#Delete this example and add some real ones or delete this file | ||
it "should include the Admin::ShippingdocsHelper" do | ||
included_modules = self.metaclass.send :included_modules | ||
included_modules.should include(Admin::ShippingdocsHelper) | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--colour | ||
--format | ||
progress | ||
--loadby | ||
mtime | ||
--reverse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
unless defined? SPREE_ROOT | ||
ENV["RAILS_ENV"] = "test" | ||
case | ||
when ENV["SPREE_ENV_FILE"] | ||
require ENV["SPREE_ENV_FILE"] | ||
when File.dirname(__FILE__) =~ %r{vendor/SPREE/vendor/extensions} | ||
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../../../")}/config/environment" | ||
else | ||
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../")}/config/environment" | ||
end | ||
end | ||
require "#{SPREE_ROOT}/spec/spec_helper" | ||
|
||
if File.directory?(File.dirname(__FILE__) + "/scenarios") | ||
Scenario.load_paths.unshift File.dirname(__FILE__) + "/scenarios" | ||
end | ||
if File.directory?(File.dirname(__FILE__) + "/matchers") | ||
Dir[File.dirname(__FILE__) + "/matchers/*.rb"].each {|file| require file } | ||
end | ||
|
||
Spec::Runner.configure do |config| | ||
# config.use_transactional_fixtures = true | ||
# config.use_instantiated_fixtures = false | ||
# config.fixture_path = RAILS_ROOT + '/spec/fixtures' | ||
|
||
# You can declare fixtures for each behaviour like this: | ||
# describe "...." do | ||
# fixtures :table_a, :table_b | ||
# | ||
# Alternatively, if you prefer to declare them only once, you can | ||
# do so here, like so ... | ||
# | ||
# config.global_fixtures = :table_a, :table_b | ||
# | ||
# If you declare global fixtures, be aware that they will be declared | ||
# for all of your examples, even those that don't use them. | ||
end |