polisher 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. data/README +243 -0
  2. data/app/controllers/application_controller.rb +12 -0
  3. data/app/controllers/callback_controller.rb +47 -0
  4. data/app/controllers/manage_controller.rb +112 -0
  5. data/app/helpers/application_helper.rb +3 -0
  6. data/app/models/artifact.rb +21 -0
  7. data/app/models/event_handler.rb +61 -0
  8. data/app/models/gem_search_criteria.rb +24 -0
  9. data/app/models/gem_source.rb +43 -0
  10. data/app/models/managed_gem.rb +47 -0
  11. data/app/views/callback/gem_updated.rhtml +0 -0
  12. data/app/views/layouts/_header.rhtml +8 -0
  13. data/app/views/layouts/index.rhtml +27 -0
  14. data/app/views/manage/create_event_handler.rhtml +15 -0
  15. data/app/views/manage/create_gem.rhtml +15 -0
  16. data/app/views/manage/create_gem_source.rhtml +15 -0
  17. data/app/views/manage/delete_event_handler.rhtml +15 -0
  18. data/app/views/manage/delete_gem.rhtml +15 -0
  19. data/app/views/manage/delete_gem_source.rhtml +15 -0
  20. data/app/views/manage/list.rhtml +66 -0
  21. data/app/views/manage/new_event_handler.rhtml +38 -0
  22. data/app/views/manage/new_gem.rhtml +21 -0
  23. data/app/views/manage/new_gem_search_criteria.rhtml +3 -0
  24. data/app/views/manage/new_gem_source.rhtml +10 -0
  25. data/config/boot.rb +110 -0
  26. data/config/database.yml +48 -0
  27. data/config/environment.rb +44 -0
  28. data/config/environments/development.rb +17 -0
  29. data/config/environments/production.rb +28 -0
  30. data/config/environments/test.rb +28 -0
  31. data/config/initializers/backtrace_silencers.rb +7 -0
  32. data/config/initializers/inflections.rb +10 -0
  33. data/config/initializers/mime_types.rb +5 -0
  34. data/config/initializers/new_rails_defaults.rb +21 -0
  35. data/config/initializers/session_store.rb +15 -0
  36. data/config/locales/en.yml +5 -0
  37. data/config/polisher.yml +10 -0
  38. data/config/routes.rb +44 -0
  39. data/db/migrate/001_create_gem_sources.rb +34 -0
  40. data/db/migrate/002_create_managed_gems.rb +32 -0
  41. data/db/migrate/003_create_gem_search_criterias.rb +33 -0
  42. data/db/migrate/004_create_event_handlers.rb +32 -0
  43. data/db/migrate/005_create_artifacts.rb +32 -0
  44. data/db/schema.rb +42 -0
  45. data/db/seeds.rb +7 -0
  46. data/lib/email_adapter.rb +46 -0
  47. data/lib/gem2rpm.rb +189 -0
  48. data/lib/gem_api_adapter.rb +87 -0
  49. data/lib/rpm_adapter.rb +39 -0
  50. data/public/404.html +30 -0
  51. data/public/422.html +30 -0
  52. data/public/500.html +30 -0
  53. data/public/dispatch.cgi +10 -0
  54. data/public/dispatch.fcgi +24 -0
  55. data/public/dispatch.rb +29 -0
  56. data/public/favicon.ico +0 -0
  57. data/public/images/rails.png +0 -0
  58. data/public/javascripts/application.js +2 -0
  59. data/public/javascripts/controls.js +963 -0
  60. data/public/javascripts/dragdrop.js +973 -0
  61. data/public/javascripts/effects.js +1128 -0
  62. data/public/javascripts/jquery-1.2.6.min.js +32 -0
  63. data/public/javascripts/prototype.js +4320 -0
  64. data/public/robots.txt +5 -0
  65. data/public/stylesheets/style.css +68 -0
  66. data/script/about +4 -0
  67. data/script/console +3 -0
  68. data/script/dbconsole +3 -0
  69. data/script/destroy +3 -0
  70. data/script/generate +3 -0
  71. data/script/performance/benchmarker +3 -0
  72. data/script/performance/profiler +3 -0
  73. data/script/plugin +3 -0
  74. data/script/runner +3 -0
  75. data/script/server +3 -0
  76. data/tmp/gems/README +1 -0
  77. data/tmp/rpms/README +1 -0
  78. metadata +141 -0
@@ -0,0 +1,48 @@
1
+ # PostgresSQL. Versions 8.2 recommended.
2
+ #
3
+ # Fedora Install Instructions:
4
+ # sudo yum install ruby-postgres postgresql-server
5
+ # sudo /sbin/service postgresql initdb
6
+ # sudo /sbin/service postgresql start
7
+ # sudo su - postgres
8
+ # $ createdb polisher
9
+ # $ psql polisher
10
+ # $-# CREATE USER polisher WITH PASSWORD 'polisher';
11
+ # $-# CREATE DATABASE polisher_development;
12
+ # $-# GRANT ALL PRIVILEGES ON DATABASE polisher_development to polisher;
13
+ # $-# CREATE DATABASE polisher_test;
14
+ # $-# GRANT ALL PRIVILEGES ON DATABASE polisher_test to polisher;
15
+ # $-# CREATE DATABASE polisher;
16
+ # $-# GRANT ALL PRIVILEGES ON DATABASE polisher to polisher;
17
+ # $-# \q
18
+ # $ exit
19
+ # rake db:migrate
20
+ #
21
+ # On a local system you may need to edit this file to have only the following
22
+ # /var/lib/pgsql/data/pg_hba.conf
23
+ # local all all trust
24
+ # host all all 127.0.0.1 255.255.255.255 trust
25
+
26
+
27
+ development:
28
+ adapter: postgresql
29
+ database: polisher
30
+ username: polisher
31
+ password: polisher
32
+ host: localhost
33
+
34
+ # Warning: The database defined as 'test' will be erased and
35
+ # re-generated from your development database when you run 'rake'.
36
+ # Do not set this db to the same as development or production.
37
+ test:
38
+ adapter: postgresql
39
+ database: polisher
40
+ username: polisher
41
+ host: localhost
42
+
43
+ production:
44
+ adapter: postgresql
45
+ database: polisher
46
+ username: polisher
47
+ password: polisher
48
+ host: localhost
@@ -0,0 +1,44 @@
1
+ # Be sure to restart your server when you modify this file
2
+ require 'yaml'
3
+
4
+ # Specifies gem version of Rails to use when vendor/rails is not present
5
+ RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION
6
+
7
+ # Bootstrap the Rails environment, frameworks, and default configuration
8
+ require File.join(File.dirname(__FILE__), 'boot')
9
+
10
+ Rails::Initializer.run do |config|
11
+ # Settings in config/environments/* take precedence over those specified here.
12
+ # Application configuration should go into files in config/initializers
13
+ # -- all .rb files in that directory are automatically loaded.
14
+
15
+ # Add additional load paths for your own custom dirs
16
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
17
+
18
+ # Specify gems that this application depends on and have them installed with rake gems:install
19
+ # config.gem "bj"
20
+ # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
21
+ # config.gem "sqlite3-ruby", :lib => "sqlite3"
22
+ # config.gem "aws-s3", :lib => "aws/s3"
23
+
24
+ # Only load the plugins named here, in the order given (default is alphabetical).
25
+ # :all can be used as a placeholder for all plugins not explicitly named
26
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
27
+
28
+ # Skip frameworks you're not going to use. To use Rails without a database,
29
+ # you must remove the Active Record framework.
30
+ # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
31
+
32
+ # Activate observers that should always be running
33
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
34
+
35
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
36
+ # Run "rake -D time" for a list of tasks for finding time zone names.
37
+ config.time_zone = 'UTC'
38
+
39
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
40
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
41
+ # config.i18n.default_locale = :de
42
+ end
43
+
44
+ POLISHER_CONFIG = YAML::load(File.open("#{RAILS_ROOT}/config/polisher.yml"))[RAILS_ENV]
@@ -0,0 +1,17 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = false
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Show full error reports and disable caching
12
+ config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.action_controller.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # See everything in the log (default is :info)
13
+ # config.log_level = :debug
14
+
15
+ # Use a different logger for distributed setups
16
+ # config.logger = SyslogLogger.new
17
+
18
+ # Use a different cache store in production
19
+ # config.cache_store = :mem_cache_store
20
+
21
+ # Enable serving of images, stylesheets, and javascripts from an asset server
22
+ # config.action_controller.asset_host = "http://assets.example.com"
23
+
24
+ # Disable delivery errors, bad email addresses will be ignored
25
+ # config.action_mailer.raise_delivery_errors = false
26
+
27
+ # Enable threaded mode
28
+ # config.threadsafe!
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The test environment is used exclusively to run your application's
4
+ # test suite. You never need to work with it otherwise. Remember that
5
+ # your test database is "scratch space" for the test suite and is wiped
6
+ # and recreated between test runs. Don't rely on the data there!
7
+ config.cache_classes = true
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.action_controller.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+ config.action_view.cache_template_loading = true
16
+
17
+ # Disable request forgery protection in test environment
18
+ config.action_controller.allow_forgery_protection = false
19
+
20
+ # Tell Action Mailer not to deliver emails to the real world.
21
+ # The :test delivery method accumulates sent emails in the
22
+ # ActionMailer::Base.deliveries array.
23
+ config.action_mailer.delivery_method = :test
24
+
25
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
26
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
27
+ # like if you have constraints or database-specific column types
28
+ # config.active_record.schema_format = :sql
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying do debug a problem that might steem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,21 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # These settings change the behavior of Rails 2 apps and will be defaults
4
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
5
+
6
+ if defined?(ActiveRecord)
7
+ # Include Active Record class name as root for JSON serialized output.
8
+ ActiveRecord::Base.include_root_in_json = true
9
+
10
+ # Store the full class name (including module namespace) in STI type column.
11
+ ActiveRecord::Base.store_full_sti_class = true
12
+ end
13
+
14
+ ActionController::Routing.generate_best_match = false
15
+
16
+ # Use ISO 8601 format for JSON serialized times and dates.
17
+ ActiveSupport.use_standard_json_time_format = true
18
+
19
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
20
+ # if you're including raw json in an HTML page.
21
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying cookie session data integrity.
4
+ # If you change this key, all old sessions will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ ActionController::Base.session = {
8
+ :key => '_polisher_session',
9
+ :secret => 'ca03eb97fd6577ab3025ed517d63c2d0217a672727d45208780ed3cd21850a357784fb31e30617021697e9a96254fae30377e5aaf7c44ef944b94806cbe440a8'
10
+ }
11
+
12
+ # Use the database for sessions instead of the cookie-based default,
13
+ # which shouldn't be used to store highly confidential information
14
+ # (create the session table with "rake db:sessions:create")
15
+ # ActionController::Base.session_store = :active_record_store
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,10 @@
1
+ development:
2
+ gem_api_key: "YOUR_GEMCUTTER_KEY_HERE"
3
+ smtp_server: "localhost"
4
+ email_from: "user@host.com"
5
+ email_to: "user@host.com"
6
+ bugzilla_post_url: "https://bugzilla.redhat.com/post_bug.cgi"
7
+
8
+ test:
9
+
10
+ production:
@@ -0,0 +1,44 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+
4
+ # Sample of regular route:
5
+ # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
6
+ # Keep in mind you can assign values other than :controller and :action
7
+
8
+ # Sample of named route:
9
+ # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
10
+ # This route can be invoked with purchase_url(:id => product.id)
11
+
12
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
13
+ # map.resources :products
14
+
15
+ # Sample resource route with options:
16
+ # map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
17
+
18
+ # Sample resource route with sub-resources:
19
+ # map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
20
+
21
+ # Sample resource route with more complex sub-resources
22
+ # map.resources :products do |products|
23
+ # products.resources :comments
24
+ # products.resources :sales, :collection => { :recent => :get }
25
+ # end
26
+
27
+ # Sample resource route within a namespace:
28
+ # map.namespace :admin do |admin|
29
+ # # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
30
+ # admin.resources :products
31
+ # end
32
+
33
+ # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
34
+ # map.root :controller => "welcome"
35
+
36
+ # See how all your routes lay out with "rake routes"
37
+
38
+ # Install the default routes as the lowest priority.
39
+ # Note: These default routes make all actions in every controller accessible via GET requests. You should
40
+ # consider removing or commenting them out if you're using named routes and resources.
41
+ #map.connect ':controller/:action/:id'
42
+ map.connect ':controller/:action/:id', :action => 'list', :controller => 'manage'
43
+ map.connect ':controller/:action/:id.:format'
44
+ end
@@ -0,0 +1,34 @@
1
+ #
2
+ # Copyright (C) 2010 Red Hat, Inc.
3
+ # Written by Mohammed Morsi <mmorsi@redhat.com>
4
+ #
5
+ # This program is free software; you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation; version 2 of the License.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program; if not, write to the Free Software
16
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17
+ # MA 02110-1301, USA. A copy of the GNU General Public License is
18
+ # also available at http://www.gnu.org/copyleft/gpl.html.
19
+
20
+ class CreateGemSources < ActiveRecord::Migration
21
+ def self.up
22
+ create_table :gem_sources do |t|
23
+ t.string :name
24
+ t.string :uri
25
+ end
26
+
27
+ # create entry for the official gemcutter repo
28
+ GemSource.create :name => "gemcutter", :uri => "http://gemcutter.org"
29
+ end
30
+
31
+ def self.down
32
+ drop_table :gem_sources
33
+ end
34
+ end
@@ -0,0 +1,32 @@
1
+ #
2
+ # Copyright (C) 2010 Red Hat, Inc.
3
+ # Written by Mohammed Morsi <mmorsi@redhat.com>
4
+ #
5
+ # This program is free software; you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation; version 2 of the License.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program; if not, write to the Free Software
16
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17
+ # MA 02110-1301, USA. A copy of the GNU General Public License is
18
+ # also available at http://www.gnu.org/copyleft/gpl.html.
19
+
20
+ class CreateManagedGems < ActiveRecord::Migration
21
+ def self.up
22
+ create_table :managed_gems do |t|
23
+ t.string :name
24
+ t.string :version
25
+ t.references :gem_source
26
+ end
27
+ end
28
+
29
+ def self.down
30
+ drop_table :managed_gems
31
+ end
32
+ end
@@ -0,0 +1,33 @@
1
+ #
2
+ # Copyright (C) 2010 Red Hat, Inc.
3
+ # Written by Mohammed Morsi <mmorsi@redhat.com>
4
+ #
5
+ # This program is free software; you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation; version 2 of the License.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program; if not, write to the Free Software
16
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17
+ # MA 02110-1301, USA. A copy of the GNU General Public License is
18
+ # also available at http://www.gnu.org/copyleft/gpl.html.
19
+
20
+ # according to google the plural for "criteria" is "criterion"
21
+ # but the active_support inflector begs to differ and I'm not gonna argue :-)
22
+ class CreateGemSearchCriterias < ActiveRecord::Migration
23
+ def self.up
24
+ create_table :gem_search_criterias do |t|
25
+ t.string :regex
26
+ t.references :gem_source
27
+ end
28
+ end
29
+
30
+ def self.down
31
+ drop_table :gem_search_criterias
32
+ end
33
+ end
@@ -0,0 +1,32 @@
1
+ #
2
+ # Copyright (C) 2010 Red Hat, Inc.
3
+ # Written by Mohammed Morsi <mmorsi@redhat.com>
4
+ #
5
+ # This program is free software; you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation; version 2 of the License.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program; if not, write to the Free Software
16
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17
+ # MA 02110-1301, USA. A copy of the GNU General Public License is
18
+ # also available at http://www.gnu.org/copyleft/gpl.html.
19
+
20
+ class CreateEventHandlers < ActiveRecord::Migration
21
+ def self.up
22
+ create_table :event_handlers do |t|
23
+ t.references :managed_gem
24
+ t.string :event
25
+ t.string :handler
26
+ end
27
+ end
28
+
29
+ def self.down
30
+ drop_table :event_handlers
31
+ end
32
+ end
@@ -0,0 +1,32 @@
1
+ #
2
+ # Copyright (C) 2010 Red Hat, Inc.
3
+ # Written by Mohammed Morsi <mmorsi@redhat.com>
4
+ #
5
+ # This program is free software; you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation; version 2 of the License.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program; if not, write to the Free Software
16
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17
+ # MA 02110-1301, USA. A copy of the GNU General Public License is
18
+ # also available at http://www.gnu.org/copyleft/gpl.html.
19
+
20
+ class CreateArtifacts < ActiveRecord::Migration
21
+ def self.up
22
+ create_table :artifacts do |t|
23
+ t.references :gem
24
+ t.string :type
25
+ t.string :location
26
+ end
27
+ end
28
+
29
+ def self.down
30
+ drop_table :artifacts
31
+ end
32
+ end