forked from hotsh/rstat.us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rstatus.rb
180 lines (155 loc) · 5.15 KB
/
rstatus.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# encoding: utf-8
# This is the source code for [rstat.us](http://rstat.us/), a microblogging
# website built on the ostatus protocol.
#
# To get started, you'll need to install some prerequisite software:
#
# **Ruby** is used to power the site. We're currently using ruby 1.9.2p180. I
# highly recommend that you use [rvm][rvm] to install and manage your Rubies.
# It's a fantastic tool. If you do decide to use `rvm`, you can install the
# appropriate Ruby and create a gemset by simply `cd`-ing into the root project
# directory; I have a magical `.rvmrc` file that'll set you up.
#
# **MongoDB** is a really awesome document store. We use it to persist all of
# the data on the website. To get MongoDB, please visit their
# [downloads page](http://www.mongodb.org/downloads) to find a package for your
# system.
#
# After installing Ruby and MongoDB, you need to acquire all of the Ruby gems
# that we use. This is pretty easy, since we're using **bundler**. Just do
# this:
#
# $ gem install bundler
# $ bundle install
#
# That'll set it all up! Then, you need to make sure you're running MongoDB.
# I have to open up another tab in my terminal and type
#
# $ mongod
#
# to get this to happen. When you're done hacking, you can hit ^-c to stop
# `mongod` from running.
#
# To actually start up the site, just
#
# $ rackup
#
# and then visit [http://localhost:9292/](http://localhost:9292). You're good
# to go!
#
# If you want to contribute to rstatus you will have to run the tests before you
# send a pull request. You can do so by calling
#
# $ rake test
#
# in the rstat.us root directory. Once your changes pass all tests you may commit
# and send a pull request via Github.
#
# [rvm]: http://rvm.beginrescueend.com/
#### About rstatus.rb
#
# This file is the main entry point to the application. It has three main
# purposes:
#
# 1. Include all relevant gems and library code.
# 2. Configure all settings based on our environment.
# 3. Set up a few basic routes.
#
# Everything else is handled by code that's included from this file.
#### Including gems
# We need to require rubygems and bundler to get things going. Then we call
# `Bundler.setup` to get all of the magic started.
require 'bundler'
Bundler.require
# We moved lots of helpers into a separate file. These are all things that are
# useful throughout the rest of the application.
require_relative "helpers"
# It's good form to make your Sinatra applications be a subclass of
#Sinatra::Base. This way, we're not polluting the global namespace with our
#methods and routes and such.
class Rstatus < Sinatra::Base; end;
require_relative "config/config"
Dir.glob("controllers/*.rb").each { |r| require_relative r }
class Rstatus
get '/' do
if logged_in?
set_params_page
@updates = current_user.timeline(params)
set_next_prev_page if @updates.total_entries > params[:per_page]
@timeline = true
if params[:reply]
u = Update.first(:id => params[:reply])
@update_text = "@#{u.author.username} "
@update_id = u.id
elsif params[:share]
u = Update.first(:id => params[:share])
@update_text = "RS @#{u.author.username}: #{u.text}"
@update_id = u.id
else
@update_text = ""
@update_id = ""
end
if params[:status]
@update_text = @update_text + params[:status]
end
haml :dashboard
else
haml :index, :layout => false
end
end
get '/home' do
cache_control :public, :must_revalidate, :max_age => 60
haml :index, :layout => false
end
get '/replies' do
if logged_in?
set_params_page
@replies = current_user.at_replies(params)
set_next_prev_page if @replies.total_entries > params[:per_page]
haml :replies
else
haml :index, :layout => false
end
end
post '/signup' do
u = User.create(:email => params[:email],
:status => "unconfirmed")
u.set_perishable_token
if development?
puts uri("/") + "confirm/#{u.perishable_token}"
else
Notifier.send_signup_notification(params[:email], u.perishable_token)
end
haml :"signup/thanks"
end
get "/search" do
@updates = []
if params[:q]
@updates = Update.filter(params[:q], :page => params[:page], :per_page => params[:per_page] || 20, :order => :created_at.desc)
end
@next_page = nil
@prev_page = nil
if [email protected]? && @updates.next_page
@next_page = "?#{Rack::Utils.build_query :page => @updates.next_page}"
end
if [email protected]? && @updates.previous_page
@prev_page = "?#{Rack::Utils.build_query :page => @updates.previous_page}"
end
haml :search
end
not_found do
haml :'error', :layout => false, :locals => {:code => 404, :message => "We couldn't find the page you're looking for"}
end
error do
haml :'error', :layout => false, :locals => {:code => 500, :message => "Something went wrong"}
end
get "/hashtags/:tag" do
@hashtag = params[:tag]
set_params_page
@updates = Update.hashtag_search(@hashtag, params)
set_next_prev_page if @updates.total_entries > params[:per_page]
@timeline = true
@update_text = params[:status]
haml :dashboard
end
end