diff --git a/Gemfile b/Gemfile
index 77627808d..cc92bec3d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -28,9 +28,12 @@ gem 'redfinger', :git => 'git://github.com/rsofaer/redfinger.git'
#EventMachine
gem 'em-http-request',:git => 'git://github.com/igrigorik/em-http-request.git', :require => 'em-http'
-gem 'em-websocket'
gem 'thin'
+#Websocket
+gem 'em-websocket'
+gem 'magent', :git => 'http://github.com/dcu/magent.git'
+
#File uploading
gem 'carrierwave', :git => 'git://github.com/rsofaer/carrierwave.git' , :branch => 'master' #Untested mongomapper branch
gem 'mini_magick'
diff --git a/Gemfile.lock b/Gemfile.lock
index 007810850..dd181b320 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -47,6 +47,14 @@ GIT
bcrypt-ruby (~> 2.1.2)
warden (~> 0.10.7)
+GIT
+ remote: http://github.com/dcu/magent.git
+ revision: 06513f3dac812469a55f2e365c349af4d2abc92a
+ specs:
+ magent (0.4.2)
+ mongo (>= 0.1.0)
+ uuidtools (>= 2.0.0)
+
GIT
remote: http://github.com/jnunemaker/mongomapper.git
revision: 931dab779011aa7acf60c1a4c7ad19e1ba838345
@@ -213,6 +221,7 @@ GEM
treetop (1.4.8)
polyglot (>= 0.3.1)
tzinfo (0.3.23)
+ uuidtools (2.1.1)
warden (0.10.7)
rack (>= 1.0.0)
webmock (1.3.5)
@@ -242,6 +251,7 @@ DEPENDENCIES
haml
jnunemaker-validatable (= 1.8.4)!
json
+ magent!
mini_magick
mocha
mongo_mapper (= 0.8.4)!
diff --git a/README.md b/README.md
index 89ea0ae19..066e4171c 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ You are welcome to contribute, add and extend Diaspora however you see fit. We
We need you to fill out a [contributor agreement form](https://spreadsheets.google.com/a/joindiaspora.com/viewform?formkey=dGI2cHA3ZnNHLTJvbm10LUhXRTJjR0E6MQ&theme=0AX42CRMsmRFbUy1iOGYwN2U2Mi1hNWU0LTRlNjEtYWMyOC1lZmU4ODg1ODc1ODI&ifq) before we can accept your patches. The agreement gives Diaspora joint ownership of the patch so the copyright isn't scattered. You can find it [here](https://spreadsheets.google.com/a/joindiaspora.com/viewform?formkey=dGI2cHA3ZnNHLTJvbm10LUhXRTJjR0E6MQ&theme=0AX42CRMsmRFbUy1iOGYwN2U2Mi1hNWU0LTRlNjEtYWMyOC1lZmU4ODg1ODc1ODI&ifq).
-All commits must be tested, and after each commit, all tests should be green before a pull request is sent. Please write your tests in Rspec or Test-Unit.
+All commits must be tested, and after each commit, all tests should be green before a pull request is sent. Please write your tests in Rspec.
GEMS: We would like to keep external dependencies unduplicated. We're using Nokogiri, and Mongomapper, and EM::HttpRequest as much as possible. We have a few gems in the project we'd rather not use, but if you can, use dependencies we already have.
@@ -12,6 +12,13 @@ GEMS: We would like to keep external dependencies unduplicated. We're using No
The privacy aware, personally controlled, do-it-all, open source social network.
**DISCLAIMER: THIS IS PRE-ALPHA SOFTWARE AND SHOULD BE TREATED ACCORDINGLY.**
+**PLEASE, DO NOT RUN IN PRODUCTION. IT IS FUN TO GET RUNNING, BUT EXPECT THINGS TO BE BROKEN**
+
+Also, we really want to continue to focus on features and improving the code base. When we think it is
+ready for general use, we will post more detailed instructions.
+
+
+
These instructions are for machines running [Ubuntu](http://www.ubuntu.com/), [Fedora](http://www.fedoraproject.org) or Mac OS X. We are developing Diaspora for the latest and greatest browsers, so please update your Firefox, Chrome or Safari to the latest and greatest.
## Preparing your system
@@ -29,7 +36,7 @@ After you have Ruby installed on your system, you will need to get RubyGems, the
- [RubyGems](http://rubygems.org/) - Source for Ruby gems.
- [Bundler](http://gembundler.com/) - Gem management tool for Ruby projects.
-**We suggest using a package management system to download these dependencies. Trust us, it's going to make your life a lot easier. If you're using Mac OS X, you can use [homebrew](http://mxcl.github.com/homebrew/); if you're using Ubuntu, just use [Synaptic](http://www.nongnu.org/synaptic/) (it comes pre-installed); if you're using Fedora simply use [yum](http://yum.baseurl.org/). The instructions below assume you have these installed.**
+**We suggest using a package management system to download these dependencies. Trust us, it's going to make your life a lot easier. If you're using Mac OS X, you can use [homebrew](http://mxcl.github.com/homebrew/); if you're using Ubuntu, just use [Synaptic](http://www.nongnu.org/synaptic/) (it comes pre-installed); if you're using Fedora simply use [yum](http://yum.baseurl.org/). The instructions below assume you have these installed.**
### Build Tools
@@ -49,6 +56,8 @@ To install Ruby 1.8.7 on **Ubuntu**, run the following command:
sudo apt-get install ruby-full
+Please note that you need to have Universe enabled in your /etc/apt/sources.list file to install ruby using apt-get.
+
At this time Fedora does not have Ruby 1.8.7. As a workaround it is possible to use [rvm](http://rvm.beginrescueend.com/) with a locally compiled Ruby installation. A semi automated method for doing this is available. It is highly recommended that you review the script before running it so you understand what will occur. The script can be executed by running the following command:
./script/bootstrap-fedora-diaspora.sh
@@ -64,7 +73,7 @@ To install MongoDB on **Ubuntu**, add the official MongoDB repository from this
http://www.mongodb.org/display/DOCS/Ubuntu+and+Debian+packages
-For Lucid, add the following line to your /etc/apt/sources.list:
+For Lucid, add the following line to your /etc/apt/sources.list (for other distros, see http://www.mongodb.org/display/DOCS/Ubuntu+and+Debian+packages):
deb http://downloads.mongodb.org/distros/ubuntu 10.4 10gen
@@ -82,7 +91,7 @@ If you're running a 32-bit system, run `wget http://fastdl.mongodb.org/linux/mon
# create the required data directory
sudo mkdir -p /data/db
sudo chmod -Rv 777 /data/
-
+
To install MongoDB on a x86_64 **Fedora** system, add the official MongoDB repository from MongoDB (http://www.mongodb.org/display/DOCS/CentOS+and+Fedora+Packages) into /etc/yum.repos.d/10gen.repo:
@@ -110,6 +119,8 @@ If you're running a 32-bit system, run `wget http://fastdl.mongodb.org/linux/mon
To install MongoDB on **Mac OS X**, run the following:
brew install mongo
+ sudo mkdir -p /data/db
+ sudo chmod -Rv 777 /data/
### OpenSSL
@@ -132,11 +143,11 @@ To install ImageMagick on **Mac OS X**, run the following:
### Git
To install Git on **Ubuntu**, run the following:
-
+
sudo apt-get install git-core
To install Git on **Fedora**, run the following:
-
+
sudo yum install git
@@ -147,13 +158,13 @@ To install Git on **Mac OS X**, run the following:
### Rubygems
-On **Ubuntu**, run the following:
+On **Ubuntu** 10.04, run the following:
- wget http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz
- tar -xf rubygems-1.3.7.tgz
- cd rubygems-1.3.7
- sudo ruby setup.rb
- sudo ln -s /usr/bin/gem1.8 /usr/bin/gem
+ sudo add-apt-repository ppa:maco.m/ruby
+ sudo apt-get update
+ sudo apt-get install rubygems
+
+This PPA is maintained by an Ubuntu Developer. For Ubuntu 10.10, this version of rubygems is in the repositories.
On **Fedora**, run the following:
@@ -164,7 +175,7 @@ On **Mac OS X**, RubyGems comes preinstalled; however, you might need to update
### Bundler
-After RubyGems is updated, simply run `sudo gem install bundler` to get Bundler.
+After RubyGems is updated, simply run `sudo gem install bundler` to get Bundler. If you're using Ubuntu repository .debs, bundler is found at /var/lib/gems/1.8/bin/bundle
## Getting Diaspora
@@ -184,11 +195,19 @@ If you installed the Ubuntu package, MongoDB should already be running (if not,
If you installed the Fedora package, MongoDB will need to be started via `service mongodb start`. If you installed the binary manually, run `sudo mongod` from where mongo is installed to start mongo.
+If you installed the OsX package through "brew", MongoDB will need to be started via `sudo launchctl load /Library/LaunchDaemons/org.mongodb.mongod.plist`. (before you have to go to /Library/LaunchDaemons and add a symlink to /usr/local/Cellar/mongodb/1.6.2-x86_64/org.mongodb.mongod.plist)
+
Diaspora will not run unless mongo is running. Mongo will not run by default, and will need to be started every time you wish to use or run the test suite for Diaspora.
+### Run the server
+`./script/server` will start both thin and the websocket server. If you want to run a different app server, you will have to run them separately. See below for instructions.
+
### Run the app server
Once mongo is running and bundler has finished, run `bundle exec thin start` from the root Diaspora directory. This will start the app server in development mode[.](http://bit.ly/9mwtUw)
+### Run the websocket server
+run `bundle exec ruby ./script/websocket_server` to start the websocket server on port 8080. Change the port in config/app_config.yml.
+
### Logging in
Run `rake db:seed:tom`, then login with user `tom` and password `evankorth`. More details in db/seeds/tom.rb.
@@ -201,9 +220,9 @@ Diaspora's test suite uses [rspec](http://rspec.info/), a behavior driven testin
We are maintaining a [public tracker project](http://www.pivotaltracker.com/projects/61641) and a [roadmap](https://github.com/diaspora/diaspora/wiki/Roadmap). Also, you can file [bug reports](https://github.com/diaspora/diaspora/issues) right here on github.
Ongoing discussion:
-
- [Diaspora Developer Google Group](http://groups.google.com/group/diaspora-dev)
- [Diaspora Discussion Google Group](http://groups.google.com/group/diaspora-discuss)
+- [Diaspora Q&A site](http://diaspora.shapado.com/)
- [#diaspora-dev](irc://irc.freenode.net/#diaspora-dev)
More general info and updates about the project can be found on our [blog](http://joindiaspora.com), [twitter](http://twitter.com/joindiaspora). Also, be sure to join the official [mailing list](http://http://eepurl.com/Vebk).
@@ -218,5 +237,5 @@ Diaspora is free software: you can redistribute it and/or modify it under the te
Diaspora is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
-You should have received a copy of the GNU Affero General Public License along with Diaspora. If not, see .
+You should have received a copy of the GNU Affero General Public License along with Diaspora. If not, see .
diff --git a/app/controllers/albums_controller.rb b/app/controllers/albums_controller.rb
index c4bab3d8a..dbd59c64e 100644
--- a/app/controllers/albums_controller.rb
+++ b/app/controllers/albums_controller.rb
@@ -26,7 +26,7 @@ class AlbumsController < ApplicationController
end
def destroy
- @album = Album.find_by_id params[:id]
+ @album = current_user.album_by_id params[:id]
@album.destroy
flash[:notice] = "Album #{@album.name} deleted."
respond_with :location => albums_url
@@ -41,12 +41,12 @@ class AlbumsController < ApplicationController
end
def edit
- @album = Album.find_by_id params[:id]
+ @album = current_user.album_by_id params[:id]
redirect_to @album unless current_user.owns? @album
end
def update
- @album = Album.find_by_id params[:id]
+ @album = current_user.album_by_id params[:id]
if @album.update_attributes params[:album]
flash[:notice] = "Album #{@album.name} successfully edited."
respond_with @album
diff --git a/app/controllers/aspects_controller.rb b/app/controllers/aspects_controller.rb
index 87c41f097..ab144ad12 100644
--- a/app/controllers/aspects_controller.rb
+++ b/app/controllers/aspects_controller.rb
@@ -26,9 +26,15 @@ class AspectsController < ApplicationController
def destroy
@aspect = Aspect.find_by_id params[:id]
- @aspect.destroy
- flash[:notice] = "You are no longer sharing the aspect called #{@aspect.name}."
- respond_with :location => aspects_url
+
+ begin
+ current_user.drop_aspect @aspect
+ flash[:notice] = "#{@aspect.name} was successfully removed."
+ rescue RuntimeError => e
+ flash[:error] = e.message
+ end
+
+ respond_with :location => aspects_manage_path
end
def show
@@ -41,7 +47,7 @@ class AspectsController < ApplicationController
def manage
@aspect = :manage
- @remote_requests = Request.for_user current_user
+ @remote_requests = Request.for_user(current_user).all
end
def update
diff --git a/app/controllers/sockets_controller.rb b/app/controllers/sockets_controller.rb
index 2852a7160..9b90ea831 100644
--- a/app/controllers/sockets_controller.rb
+++ b/app/controllers/sockets_controller.rb
@@ -14,7 +14,7 @@ class SocketsController < ApplicationController
def outgoing(uid,object,opts={})
@_request = ActionDispatch::Request.new({})
- Diaspora::WebSocket.push_to_user(uid, action_hash(uid, object, opts))
+ Diaspora::WebSocket.queue_to_user(uid, action_hash(uid, object, opts))
end
end
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb
index 4a36672bc..72666bc30 100644
--- a/app/controllers/users_controller.rb
+++ b/app/controllers/users_controller.rb
@@ -7,13 +7,6 @@ class UsersController < ApplicationController
before_filter :authenticate_user!, :except => [:new, :create]
respond_to :html
- respond_to :json, :only => :show
-
- def show
- @user = User.find_by_id params[:id]
- @user_profile = @user.person.profile
- respond_with @user
- end
def edit
@user = current_user
@@ -23,7 +16,7 @@ class UsersController < ApplicationController
end
def update
- @user = User.find_by_id params[:id]
+ @user = current_user
prep_image_url(params[:user])
@user.update_profile params[:user]
diff --git a/app/helpers/aspects_helper.rb b/app/helpers/aspects_helper.rb
index adceab8fd..1c8f69b8a 100644
--- a/app/helpers/aspects_helper.rb
+++ b/app/helpers/aspects_helper.rb
@@ -7,4 +7,12 @@ module AspectsHelper
def link_for_aspect( aspect )
link_to aspect.name, aspect
end
+
+ def remove_link( aspect )
+ if aspect.people.size == 0
+ link_to "remove", aspect, :method => :delete
+ else
+ "remove"
+ end
+ end
end
diff --git a/app/models/person.rb b/app/models/person.rb
index bed5bb246..1e2a7b18d 100644
--- a/app/models/person.rb
+++ b/app/models/person.rb
@@ -85,9 +85,12 @@ class Person
local_person
elsif !identifier.include?("localhost") && !opts[:local]
begin
+ Rails.logger.info("Webfingering #{identifier}")
f = Redfinger.finger(identifier)
rescue SocketError => e
raise "Diaspora server for #{identifier} not found" if e.message =~ /Name or service not known/
+ rescue Errno::ETIMEDOUT => e
+ raise "Connection timed out to Diaspora server for #{identifier}"
end
raise "No webfinger profile found at #{identifier}" if f.nil? || f.links.empty?
Person.from_webfinger_profile(identifier, f )
diff --git a/app/models/post.rb b/app/models/post.rb
index e2dd53d3d..e9e135abb 100644
--- a/app/models/post.rb
+++ b/app/models/post.rb
@@ -4,6 +4,7 @@
class Post
+ require 'lib/diaspora/websocket'
require 'lib/encryptable'
include MongoMapper::Document
include ApplicationHelper
@@ -17,7 +18,7 @@ class Post
key :person_id, ObjectId
key :user_refs, Integer, :default => 0
- many :comments, :class_name => 'Comment', :foreign_key => :post_id
+ many :comments, :class_name => 'Comment', :foreign_key => :post_id, :order => 'created_at ASC'
belongs_to :person, :class_name => 'Person'
timestamps!
diff --git a/app/models/user.rb b/app/models/user.rb
index ddb8036fe..4ec528e70 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -34,7 +34,6 @@ class User
many :aspects, :class_name => 'Aspect'
-
after_create :seed_aspects
before_validation_on_create :downcase_username
@@ -65,6 +64,15 @@ class User
Aspect.create(opts)
end
+ def drop_aspect( aspect )
+ if aspect.people.size == 0
+ aspect.destroy
+ else
+ raise "Aspect not empty"
+ end
+ end
+
+
def move_friend( opts = {})
return true if opts[:to] == opts[:from]
friend = Person.first(:_id => opts[:friend_id])
@@ -230,8 +238,7 @@ class User
Rails.logger.info( "the person id is #{object.post_id} the friend found is #{visible_person_by_id(object.post_id).inspect}")
unfriended_by visible_person_by_id(object.post_id)
-
- else
+else
object.perform self.id
aspects = self.aspects_with_person(object.person)
aspects.each{ |aspect| aspect.post_ids.delete(object.post_id.to_id)
diff --git a/app/views/aspects/manage.html.haml b/app/views/aspects/manage.html.haml
index 8a6ed97ac..667196b85 100644
--- a/app/views/aspects/manage.html.haml
+++ b/app/views/aspects/manage.html.haml
@@ -12,7 +12,7 @@
Requests
.requests
- %ul
+ %ul.dropzone
- for request in @remote_requests
%li.requested_person{:id => request.person.id, :request_id => request.id}
= person_image_tag(request.person)
@@ -22,7 +22,7 @@
Ignore/Remove
%li.remove
- %ul
+ %ul.dropzone
- content_for :publish do
= link_to("add a new aspect", "#add_aspect_pane", :id => "add_aspect_button", :class => "new_aspect button", :title => "Add a new aspect")
@@ -36,12 +36,12 @@
.aspect_name
%h1{:contenteditable => true}= aspect.name
- .tools
- = link_to "add a new friend", "#add_request_pane_#{aspect.id}", :class => 'add_request_button'
- |
- = link_to "show", aspect_path(aspect)
+ %ul.tools
+ %li= link_to "add a new friend", "#add_request_pane_#{aspect.id}", :class => 'add_request_button'
+ %li= link_to "show", aspect_path(aspect)
+ %li!= remove_link(aspect)
- %ul{:id => aspect.id}
+ %ul.dropzone{:id => aspect.id}
-if aspect.people.size < 1
%li.grey Drag to add people
diff --git a/app/views/photos/_new_photo.haml b/app/views/photos/_new_photo.haml
index f6777fa4a..0f1e423fb 100644
--- a/app/views/photos/_new_photo.haml
+++ b/app/views/photos/_new_photo.haml
@@ -9,7 +9,7 @@
element: document.getElementById('file-upload'),
params: {'album_id' : "#{@album.id}"},
allowedExtensions: ['jpg', 'jpeg', 'png'],
- action: "/photos"
+ action: "#{photos_path}"
});
}
window.onload = createUploader;
diff --git a/app/views/posts/_debug.haml b/app/views/posts/_debug.haml
index 27d508cf2..17d7baad8 100644
--- a/app/views/posts/_debug.haml
+++ b/app/views/posts/_debug.haml
@@ -7,6 +7,9 @@
%h5 DEBUG INFO
#debug_more{ :style => "display:none;" }
%ul
+ %li
+ %b
+ = GIT_INFO
%li
%b params
= params.inspect
@@ -14,3 +17,4 @@
%b websocket status
#debug
.msg
+
diff --git a/config/app_config.yml b/config/app_config.yml
index 0a206c366..a138424ee 100644
--- a/config/app_config.yml
+++ b/config/app_config.yml
@@ -8,6 +8,7 @@ development:
debug: false
socket_debug : false
socket_port: 8080
+ socket_collection_name: 'websocket'
pubsub_server: 'https://pubsubhubbub.appspot.com/'
test:
diff --git a/config/application.rb b/config/application.rb
index ef8a567a5..b409f91d3 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -6,9 +6,9 @@
require File.expand_path('../boot', __FILE__)
-require "action_controller/railtie"
-require "action_mailer/railtie"
-require "active_resource/railtie"
+require 'action_controller/railtie'
+require 'action_mailer/railtie'
+require 'active_resource/railtie'
# If you have a Gemfile, require the gems listed there, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env) if defined?(Bundler)
diff --git a/config/deploy.rb b/config/deploy.rb
index b4870f94d..c84d25556 100644
--- a/config/deploy.rb
+++ b/config/deploy.rb
@@ -39,8 +39,6 @@ backers.each{ |backer|
# Start Nginx
after "deploy:cold" do
- run("nginx stop")
- run("killall nginx")
#run("nginx")
end
@@ -58,6 +56,11 @@ namespace :deploy do
task :start do
start_mongo
start_thin
+ start_websocket
+ end
+
+ task :start_websocket do
+ run("cd #{current_path} && bundle exec ruby ./script/websocket_server.rb > /dev/null&")
end
task :start_mongo do
diff --git a/config/environment.rb b/config/environment.rb
index dc11087dd..385a96651 100644
--- a/config/environment.rb
+++ b/config/environment.rb
@@ -7,6 +7,7 @@
# Load the rails application
require File.expand_path('../application', __FILE__)
Haml::Template.options[:format] = :html5
+Haml::Template.options[:escape_html] = true
# Initialize the rails application
Diaspora::Application.initialize!
diff --git a/config/environments/development.rb b/config/environments/development.rb
index 66a0ef31a..e73a3e9d1 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -21,8 +21,19 @@ Diaspora::Application.configure do
config.action_controller.perform_caching = false
# Don't care if the mailer can't send
- config.action_mailer.raise_delivery_errors = false
+ config.action_mailer.raise_delivery_errors = true
config.active_support.deprecation = :log
config.middleware.use MongoMapper::ClearDevMemory
#config.threadsafe!
+ config.action_mailer.delivery_method = :smtp
+ config.action_mailer.default_url_options = {:host => 'localhost:3000'}
+ config.action_mailer.smtp_settings = {
+ :address => 'smtp.gmail.com',
+ :port => 587,
+ :domain => 'mail.joindiaspora.com',
+ :authentication => 'plain',
+ :user_name => 'diaspora-pivots@joindiaspora.com',
+ :password => "xy289|]G+R*-kA",
+ :enable_starttls_auto => true
+ }
end
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 1267a96a3..3207c627d 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -15,12 +15,12 @@ Diaspora::Application.configure do
config.action_controller.perform_caching = true
# Specifies the header that your server uses for sending files
- config.action_dispatch.x_sendfile_header = "X-Sendfile"
+ #config.action_dispatch.x_sendfile_header = "X-Sendfile"
config.active_support.deprecation = :notify
# For nginx:
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
+ config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
# If you have no front-end server that supports something like X-Sendfile,
# just comment this out and Rails will serve the files
@@ -36,7 +36,7 @@ Diaspora::Application.configure do
# Disable Rails's static asset server
# In production, Apache or nginx will already do this
- config.serve_static_assets = true
+ #config.serve_static_assets = true
# Enable serving of images, stylesheets, and javascripts from an asset server
# config.action_controller.asset_host = "http://assets.example.com"
@@ -44,12 +44,20 @@ Diaspora::Application.configure do
# Disable delivery errors, bad email addresses will be ignored
# config.action_mailer.raise_delivery_errors = false
- # Enable threaded mode
- # config.threadsafe!
-
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation can not be found)
config.i18n.fallbacks = true
config.threadsafe!
+ config.action_mailer.delivery_method = :smtp
+ config.action_mailer.default_url_options = {:host => 'pivots.joindiaspora.com'}
+ config.action_mailer.smtp_settings = {
+ :address => 'smtp.gmail.com',
+ :port => 587,
+ :domain => 'mail.joindiaspora.com',
+ :authentication => 'plain',
+ :user_name => 'diaspora-pivots@joindiaspora.com',
+ :password => "xy289|]G+R*-kA",
+ :enable_starttls_auto => true
+ }
end
diff --git a/config/initializers/git_info.rb b/config/initializers/git_info.rb
new file mode 100644
index 000000000..a6d767aa4
--- /dev/null
+++ b/config/initializers/git_info.rb
@@ -0,0 +1,6 @@
+# Copyright (c) 2010, Diaspora Inc. This file is
+# licensed under the Affero General Public License version 3. See
+# the COPYRIGHT file.
+
+
+GIT_INFO = `git show`
diff --git a/config/initializers/locale.rb b/config/initializers/locale.rb
new file mode 100644
index 000000000..42f34a3a7
--- /dev/null
+++ b/config/initializers/locale.rb
@@ -0,0 +1,8 @@
+# Copyright (c) 2010, Diaspora Inc. This file is
+# licensed under the Affero General Public License version 3. See
+# the COPYRIGHT file.
+
+
+# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
+I18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
+I18n.default_locale = :en
\ No newline at end of file
diff --git a/config/initializers/socket.rb b/config/initializers/socket.rb
deleted file mode 100644
index 1fd09fd93..000000000
--- a/config/initializers/socket.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright (c) 2010, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3. See
-# the COPYRIGHT file.
-
-
-require 'em-websocket'
-require 'eventmachine'
-require "lib/diaspora/websocket"
- EM.next_tick {
- Diaspora::WebSocket.initialize_channels
-
- EventMachine::WebSocket.start(
- :host => "0.0.0.0",
- :port => APP_CONFIG[:socket_port],
- :debug =>APP_CONFIG[:socket_debug]) do |ws|
- ws.onopen {
-
- sid = Diaspora::WebSocket.subscribe(ws.request['Path'].gsub('/',''), ws)
-
- ws.onmessage { |msg| SocketsController.new.incoming(msg) }
-
- ws.onclose { Diaspora::WebSocket.unsubscribe(ws.request['Path'].gsub('/',''), sid) }
- }
- end
- }
-
diff --git a/config/locales/devise.es.yml b/config/locales/devise.es.yml
new file mode 100644
index 000000000..70209ff79
--- /dev/null
+++ b/config/locales/devise.es.yml
@@ -0,0 +1,42 @@
+es:
+ errors:
+ messages:
+ not_found: 'no encontrado'
+ already_confirmed: 'ya ha sido confirmada'
+ not_locked: 'no está bloqueada'
+
+ devise:
+ failure:
+ unauthenticated: 'Necesitas acceder a tu cuenta o registrarte antes de continuar.'
+ unconfirmed: 'Necesitas confirmar tu cuenta antes de continuar.'
+ locked: 'Tu cuenta esta bloqueada.'
+ invalid: 'Contraseña o Email incorrecto.'
+ invalid_token: 'Token de autenticación incorrecto.'
+ timeout: 'Tu sesión ha expirado, por favor accede de nuevo para continuar.'
+ inactive: 'Tu cuenta no ha sido activada.'
+ sessions:
+ signed_in: 'Has ingresado correctamente.'
+ signed_out: 'Has salido correctamente.'
+ passwords:
+ send_instructions: 'Recibirás un email con instrucciones para cambiar tu contraseña en poco minutos.'
+ updated: 'Tu contraseña ha sido modificada. Ya has accedido a tu cuenta.'
+ confirmations:
+ send_instructions: 'Recibirás un email con instrucciones para confirmar tu cuenta en poco minutos.'
+ confirmed: 'Tu cuenta ha sido confirmada. Ya has accedido a tu cuenta.'
+ registrations:
+ signed_up: 'Te has registrado correctamente. Si está disponible, te habremos enviado un email de confirmación.'
+ updated: 'Has actualizado tu cuenta correctamente.'
+ destroyed: '!Adiós! Tu cuenta ha sido cancelada. Esperamos verte pronto.'
+ unlocks:
+ send_instructions: 'Recibirás un email con instrucciones para desbloquear tu cuenta en pocos minutos.'
+ unlocked: 'Tu cuenta ha sido desbloqueada. Ya has accedido a tu cuenta.'
+ oauth_callbacks:
+ success: 'Has sido autorizado satisfactoriamente de la cuenta %{kind}.'
+ failure: 'No has sido autorizado en la cuenta %{kind} porque "%{reason}".'
+ mailer:
+ confirmation_instructions:
+ subject: 'Instrucciones de confirmación'
+ reset_password_instructions:
+ subject: 'Instrucciones para cambiar tu contraseña'
+ unlock_instructions:
+ subject: 'Instrucciones para desbloquear tu cuenta'
\ No newline at end of file
diff --git a/config/locales/devise.lt.yml b/config/locales/devise.lt.yml
new file mode 100644
index 000000000..86510d13c
--- /dev/null
+++ b/config/locales/devise.lt.yml
@@ -0,0 +1,41 @@
+# Copyright (c) 2010, Diaspora Inc. This file is
+# licensed under the Affero General Public License version 3. See
+# the COPYRIGHT file.
+
+
+en:
+ errors:
+ messages:
+ not_found: "nerasta"
+ already_confirmed: "jau patvirtinta"
+ not_locked: "nebuvo užrakinta"
+
+ devise:
+ failure:
+ unauthenticated: 'Norint tęsti, reikia prisijungti arba susikurti paskyrą.'
+ unconfirmed: 'Norint prisijungti, reikia patvirtinti savo paskyrą.'
+ locked: 'Jūsų paskyra yra užrakinta.'
+ invalid: 'Neteisingas el. pašto adresas arba slaptažodis.'
+ invalid_token: 'Neteisingas prisijungimo raktas.'
+ timeout: 'Sesija baigėsi. Norint tęsti, reikia prisijungti iš naujo.'
+ inactive: 'Paskyra dar neaktyvuota.'
+ sessions:
+ signed_in: 'Sėkmingai prisijungta.'
+ signed_out: 'Sėkmingai atsijungta.'
+ passwords:
+ send_instructions: 'Netrukus gausite el. laišką su nurodymais slaptažodžiui atstatyti.'
+ updated: 'Slaptažodis pakeistas sėkmingai. Jūs esate prisijungęs.'
+ confirmations:
+ send_instructions: 'Netrukus gausite el. laišką su nurodymais paskyros patvirtinimui.'
+ confirmed: 'Paskyra patvirtinta. Prisijungėte.'
+ registrations:
+ signed_up: 'Prisijungta sėkmingai. Jei nustatyta, patvirtinimas išsiųstas į jūsų el. paštą.'
+ updated: 'Paskyra atnaujinta sėkmingai.'
+ destroyed: 'Paskyra sėkmingai atšaukta. Iki pasimatymo!'
+ unlocks:
+ send_instructions: 'Netrukus gausite el. laišką su nurodymais paskyros atrakinimui.'
+ unlocked: 'Paskyra atrakinta. Prisijungėte.'
+ mailer:
+ confirmation_instructions: 'Nurodymai patvirtinimui'
+ reset_password_instructions: 'Nurodymai slaptažodžio atstatymui'
+ unlock_instructions: 'Nurodymai paskyros atrakinimui'
diff --git a/config/locales/lt.yml b/config/locales/lt.yml
new file mode 100644
index 000000000..d20c8ff38
--- /dev/null
+++ b/config/locales/lt.yml
@@ -0,0 +1,10 @@
+# Copyright (c) 2010, Diaspora Inc. This file is
+# licensed under the Affero General Public License version 3. See
+# the COPYRIGHT file.
+
+
+# Sample localization file for English. Add more files in this directory for other locales.
+# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
+
+en:
+ hello: "Sveikas pasauli"
diff --git a/config/routes.rb b/config/routes.rb
index 12dd20ba7..188c4b137 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -6,7 +6,7 @@
Diaspora::Application.routes.draw do
resources :people, :only => [:index, :show, :destroy]
- resources :users, :except => [:create, :new]
+ resources :users, :except => [:create, :new, :show]
resources :status_messages, :only => [:create, :destroy, :show]
resources :comments, :except => [:index]
resources :requests, :except => [:edit, :update]
diff --git a/config/sprinkle/conf/nginx.conf b/config/sprinkle/conf/nginx.conf
index 2b3aa8a40..eba9fa45b 100644
--- a/config/sprinkle/conf/nginx.conf
+++ b/config/sprinkle/conf/nginx.conf
@@ -33,12 +33,14 @@ http {
# gzip_disable "MSIE [1-6]\.(?!.*SV1)";
upstream thin_cluster {
server unix:/tmp/thin.0.sock;
+ server unix:/tmp/thin.1.sock;
+ server unix:/tmp/thin.2.sock;
}
server {
listen 80;
- server_name babycakes.sofaer.net www.babycakes.sofaer.net;
+ server_name pivots.joindiaspora.com www.pivots.joindiaspora.com;
root /usr/local/app/diaspora/current;
location / {
diff --git a/config/sprinkle/provision.rb b/config/sprinkle/provision.rb
index 9f983399e..fc81b1ca3 100644
--- a/config/sprinkle/provision.rb
+++ b/config/sprinkle/provision.rb
@@ -7,13 +7,13 @@
-require "#{File.dirname(__FILE__)}/packages/essential"
-require "#{File.dirname(__FILE__)}/packages/database"
-require "#{File.dirname(__FILE__)}/packages/server"
-require "#{File.dirname(__FILE__)}/packages/scm"
-require "#{File.dirname(__FILE__)}/packages/ruby"
+require '#{File.dirname(__FILE__)}/packages/essential'
+require '#{File.dirname(__FILE__)}/packages/database'
+require '#{File.dirname(__FILE__)}/packages/server'
+require '#{File.dirname(__FILE__)}/packages/scm'
+require '#{File.dirname(__FILE__)}/packages/ruby'
-policy :diaspora, :roles => [:tom,:backer] do
+policy :diaspora, :roles => [:pivots] do
# requires :clean_dreamhost
requires :tools
requires :rubygems
diff --git a/config/thin.yml b/config/thin.yml
index cc071975d..b0a3abf8d 100644
--- a/config/thin.yml
+++ b/config/thin.yml
@@ -13,7 +13,7 @@ max_conns: 1024
require: []
max_persistent_conns: 512
-environment: development
+environment: production
servers: 1
daemonize: true
#chdir: /usr/applications/localhash/current
diff --git a/db/seeds/tom.rb b/db/seeds/tom.rb
index af6f737a9..2e06913f2 100644
--- a/db/seeds/tom.rb
+++ b/db/seeds/tom.rb
@@ -7,6 +7,7 @@
require 'config/environment'
remote_url = "http://tom.joindiaspora.com/"
+remote_url = "http://localhost:3000/"
# Create seed user
user = User.instantiate!( :email => "tom@tom.joindiaspora.com",
:username => "tom",
diff --git a/lib/diaspora/user/friending.rb b/lib/diaspora/user/friending.rb
index cf55a2bf0..e79608381 100644
--- a/lib/diaspora/user/friending.rb
+++ b/lib/diaspora/user/friending.rb
@@ -62,7 +62,7 @@ module Diaspora
def receive_friend_request(friend_request)
Rails.logger.info("receiving friend request #{friend_request.to_json}")
- if request_from_me?(friend_request)
+ if request_from_me?(friend_request) && self.aspect_by_id(friend_request.aspect_id)
aspect = self.aspect_by_id(friend_request.aspect_id)
activate_friend(friend_request.person, aspect)
diff --git a/lib/diaspora/websocket.rb b/lib/diaspora/websocket.rb
index fc79559f6..687bd2b7c 100644
--- a/lib/diaspora/websocket.rb
+++ b/lib/diaspora/websocket.rb
@@ -6,6 +6,11 @@
module Diaspora
module WebSocket
+ def self.queue_to_user(uid, data)
+ channel = Magent::GenericChannel.new('websocket')
+ channel.enqueue({:uid => uid, :data => data})
+ end
+
def self.initialize_channels
@channels = {}
end
@@ -44,6 +49,5 @@ module Diaspora
def unsocket_from_uid(id, opts={})
SocketsController.new.outgoing(id, Retraction.for(self), opts)
end
-
end
end
diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake
index e1c0aac31..80e3bafe5 100644
--- a/lib/tasks/db.rake
+++ b/lib/tasks/db.rake
@@ -22,6 +22,7 @@ namespace :db do
require 'db/seeds/backer'
create
end
+
end
desc 'Delete the collections in the current RAILS_ENV database'
@@ -53,4 +54,23 @@ namespace :db do
Rake::Task['db:seed:dev'].invoke
puts "you did it!"
end
+
+ task :fix_diaspora_handle do
+ puts "fixing the people in this seed"
+ require 'config/environment'
+
+ people = Person.all( '$where' => "function(){
+ return this.diaspora_handle.charAt(this.diaspora_handle.length-1) == '@'
+ }")
+
+ puts "Found #{people.count} people with broken diaspora_handle fields"
+ people.each do |person|
+ if person.owner
+ puts "Resetting diaspora handle for #{person.owner.username}"
+ person.diaspora_handle = person.owner.diaspora_handle
+ person.save
+ end
+ end
+ puts "everything should be peachy"
+ end
end
diff --git a/public/javascripts/aspect-edit.js b/public/javascripts/aspect-edit.js
index e1d9b6c6c..c7061797d 100644
--- a/public/javascripts/aspect-edit.js
+++ b/public/javascripts/aspect-edit.js
@@ -3,42 +3,56 @@
* the COPYRIGHT file.
*/
-
-$('#move_friends_link').live( 'click', function(){
- $.post('/aspects/move_friends',
- { 'moves' : $('#aspect_list').data() },
- function(){ $('#aspect_title').html("Groups edited successfully!");});
-
- $(".person").css('background-color','none');
- $('#aspect_list').removeData();
- $(".person").attr('from_aspect_id', function(){return $(this).parent().attr('id')})
-
-});
-
-function decrementRequestsCounter(){
- var old_request_count = $(".new_requests").html().match(/\d+/);
+function decrementRequestsCounter() {
+ var $new_requests = $(".new_requests"),
+ request_html = $new_requests.html(),
+ old_request_count = request_html.match(/\d+/);
if( old_request_count == 1 ) {
- $(".new_requests").html(
- $(".new_requests").html().replace(/ \(\d+\)/,''));
-
+ $new_requests.html(
+ request_html.replace(/ \(\d+\)/,'')
+ );
} else {
- $(".new_requests").html(
- $(".new_requests").html().replace(/\d+/,old_request_count-1));
+ $new_requests.html(
+ request_html.replace(/\d+/,old_request_count-1)
+ );
}
-
}
$(function() {
- $("ul .person").draggable({
- revert: true
+
+
+ $('#move_friends_link').live( 'click', function(){
+ $.post(
+ '/aspects/move_friends',
+ { 'moves' : $('#aspect_list').data() },
+ function() {
+ $('#aspect_title').html("Groups edited successfully!");
+ }
+ );
+
+ // should the following logic be moved into the $.post() callback?
+ $("#aspect_list").removeData();
+
+ $(".person")
+ .css('background-color','none')
+ .attr('from_aspect_id', function() {
+ return $(this).parent().attr('id')
+ });
+
});
- $("ul .requested_person").draggable({
+ $("ul .person .requested_person").draggable({
revert: true
});
+ // Moved class to logic above - unnec duplicate logic
+ //$("ul .requested_person").draggable({
+ // revert: true
+ //});
+
$(".aspect ul").droppable({
+ hoverClass: 'active',
drop: function(event, ui) {
if ($(ui.draggable[0]).hasClass('requested_person')){
@@ -51,16 +65,23 @@ $(function() {
}
});
- }else {
- var move = {};
- move[ 'friend_id' ] = ui.draggable[0].id
- move[ 'to' ] = $(this)[0].id;
- move[ 'from' ] = ui.draggable[0].getAttribute('from_aspect_id');
+ } else {
+ var $aspect_list = $('#aspect_list'),
+ move = {};
+
+ // This is poor implementation
+ move[ 'friend_id' ] = ui.draggable[0].id; // ui.draggable.attr('id')
+ move[ 'to' ] = $(this)[0].id;// $(this).attr('id');
+ move[ 'from' ] = ui.draggable[0].getAttribute('from_aspect_id'); // ui.draggable.attr('from_aspect_id')
+
+ // if created custom attr's - should be using `data-foo`
+
+
if (move['to'] == move['from']){
- $('#aspect_list').data( ui.draggable[0].id, []);
+ $aspect_list.data( ui.draggable[0].id, []);
ui.draggable.css('background-color','#eee');
} else {
- $('#aspect_list').data( ui.draggable[0].id, move);
+ $aspect_list.data( ui.draggable[0].id, move);
ui.draggable.css('background-color','orange');
}
}
@@ -69,49 +90,57 @@ $(function() {
});
$(".remove ul").droppable({
+ hoverClass: 'active',
drop: function(event, ui) {
if ($(ui.draggable[0]).hasClass('requested_person')){
$.ajax({
type: "DELETE",
- url: "/requests/" + ui.draggable[0].getAttribute('request_id')
+ url: "/requests/" + ui.draggable.attr('request_id'),
+ success: function () {
+ decrementRequestsCounter();
+ }
});
- decrementRequestsCounter();
- $(ui.draggable[0]).fadeOut('slow')
- }else{
+
+ } else {
$.ajax({
type: "DELETE",
- url: "/people/" + ui.draggable[0].id
+ url: "/people/" + ui.draggable.attr('id'),
+ success: function () {
+ alert("Removed Friend, proably want an undo countdown.")
+ }
});
- alert("Removed Friend, proably want an undo countdown.")
- $(ui.draggable[0]).fadeOut('slow')
-
+
}
+
+ $(ui.draggable[0]).fadeOut('slow'); // ui.draggable.fadeOut('slow')
}
});
-});
-$(".aspect h1").live( 'click', function() {
- var $this = $(this);
- var id = $this.closest("li").children("ul").attr("id");
- var link = "/aspects/"+ id;
+ $(".aspect h1").live( 'focus', function() {
- $this.keypress(function(e) {
- if (e.which == 13) {
- e.preventDefault();
- $this.blur();
+ var $this = $(this),
+ id = $this.closest("li").children("ul").attr("id"),
+ link = "/aspects/"+ id;
- //save changes
- $.ajax({
- type: "PUT",
- url: link,
- data: {"aspect" : {"name" : $this.text() }}
+ $this.keypress(function(e) {
+ if (e.which == 13) {
+ e.preventDefault();
+ $this.blur();
+
+ //save changes
+ $.ajax({
+ type: "PUT",
+ url: link,
+ data: {"aspect" : {"name" : $this.text() }}
+ });
+ }
+ //update all other aspect links
+ $this.keyup(function(e) {
+ $("#aspect_nav a[href='"+link+"']").text($this.text());
});
- }
- //update all other aspect links
- $this.keyup(function(e) {
- $("#aspect_nav a[href='"+link+"']").text($this.text());
});
});
+
});
diff --git a/public/javascripts/fancybox/jquery.fancybox-1.3.1.js b/public/javascripts/fancybox/jquery.fancybox-1.3.1.js
index 688f93aa3..e9b4f404b 100755
--- a/public/javascripts/fancybox/jquery.fancybox-1.3.1.js
+++ b/public/javascripts/fancybox/jquery.fancybox-1.3.1.js
@@ -262,6 +262,11 @@
close.show();
}
+ $("#fancybox-inner input[type='text'], #fancybox-inner textarea").focus(function() {
+ $(document).unbind('keydown.fb');
+ });
+
+
fancybox_set_navigation();
$(window).bind("resize.fb", $.fancybox.center);
@@ -1074,4 +1079,4 @@
fancybox_init();
});
-})(jQuery);
\ No newline at end of file
+})(jQuery);
diff --git a/public/javascripts/fancybox/jquery.fancybox-1.3.1.pack.js b/public/javascripts/fancybox/jquery.fancybox-1.3.1.pack.js
index 8421d53a6..8efd14070 100755
--- a/public/javascripts/fancybox/jquery.fancybox-1.3.1.pack.js
+++ b/public/javascripts/fancybox/jquery.fancybox-1.3.1.pack.js
@@ -14,31 +14,6 @@
* http://www.gnu.org/licenses/gpl.html
*/
-(function(b){var m,u,x,g,D,i,z,A,B,p=0,e={},q=[],n=0,c={},j=[],E=null,s=new Image,G=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,S=/[^\.]\.(swf)\s*$/i,H,I=1,k,l,h=false,y=b.extend(b("