Election results in the London Borough of Sutton.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 jaren geleden
14 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
14 jaren geleden
13 jaren geleden
14 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
14 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
14 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
13 jaren geleden
14 jaren geleden
13 jaren geleden
13 jaren geleden
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. require 'rubygems'
  2. require 'sinatra'
  3. require 'haml'
  4. require './models'
  5. class String
  6. def pluralize(num)
  7. if num == 1
  8. return self
  9. end
  10. case self[-1]
  11. when 'y'
  12. self[0..-2] + 'ies'
  13. when 's'
  14. self + "es"
  15. else
  16. self + "s"
  17. end
  18. end
  19. end
  20. helpers do
  21. # Format a number with commas for every ^3
  22. def commify(num)
  23. num.to_s.reverse.gsub(/(\d\d\d)(?=\d)(?!\d*\.)/,'\1,').reverse
  24. end
  25. # From http://snippets.dzone.com/posts/show/593
  26. def to_ordinal(num)
  27. num = num.to_i
  28. if (10...20) === num
  29. "#{num}th"
  30. else
  31. g = %w{ th st nd rd th th th th th th }
  32. a = num.to_s
  33. c = a[-1..-1].to_i
  34. a + g[c]
  35. end
  36. end
  37. def format_percent(num)
  38. sprintf("%.0f%%", num)
  39. end
  40. def short_date(d)
  41. d.strftime("%e %b %Y")
  42. end
  43. def long_date(d)
  44. d.strftime("%e %B %Y")
  45. end
  46. end
  47. get '/' do
  48. # if params[:postcode]
  49. # @postcode = params[:postcode].strip.upcase
  50. #
  51. # unless result = Postcode.finder(@postcode)
  52. # # Invalid postcode
  53. # redirect '/error'
  54. # end
  55. #
  56. # # Postcode valid but not in LB Sutton
  57. # if result.district_code != "00BF"
  58. # redirect '/aliens'
  59. # end
  60. #
  61. # # Postcode in LB Sutton
  62. # @ward = Ward.first( :ons_id => result.ward_code )
  63. # redirect "/wards/#{@ward.slug}/postcode/#{@postcode}"
  64. # end
  65. @future_elections = Election.future
  66. @past_elections = Election.past
  67. haml :index
  68. end
  69. get '/bodies/:body/elections/:date' do
  70. @body = Body.first(:slug => params[:body])
  71. @election = Election.first(:body => @body, :d => params[:date])
  72. @elections_for_this_body = Election.all(:body => @body, :order => [:d])
  73. @total_seats = Candidacy.sum(:seats, :election => @election)
  74. @total_votes = Candidacy.sum(:votes, :election => @election)
  75. # There's got to be a better way to do this, either with SQL or Datamapper
  76. @total_districts = repository(:default).adapter.select("
  77. SELECT district_id
  78. FROM candidacies
  79. WHERE election_id = #{@election.id}
  80. GROUP BY district_id
  81. ORDER BY district_id
  82. ").count
  83. @results_by_party = repository(:default).adapter.select("
  84. SELECT
  85. p.colour,
  86. p.name,
  87. SUM(c.votes) AS votez,
  88. SUM(c.seats) AS seatz,
  89. COUNT(*) AS cands
  90. FROM candidacies c
  91. LEFT JOIN parties p ON p.id = c.party_id
  92. WHERE c.election_id = #{@election.id}
  93. GROUP BY c.party_id, p.colour, p.name
  94. ORDER BY seatz DESC, votez DESC
  95. ")
  96. @results_by_district = repository(:default).adapter.select("
  97. SELECT
  98. d.name,
  99. d.slug AS district_slug,
  100. SUM(c.seats) AS seats,
  101. SUM(c.votes) AS votez,
  102. COUNT(c.id) AS num_candidates
  103. FROM districts d, candidacies c
  104. WHERE
  105. c.district_id = d.id
  106. AND c.election_id = #{@election.id}
  107. GROUP BY c.district_id, d.name, d.slug
  108. ORDER BY d.name
  109. ")
  110. haml :electionsummary
  111. end
  112. # get '/bodies/:body/elections/:date/parties/:party' do
  113. # Not written yet. Show how this party did at this election.
  114. # end
  115. get '/bodies/?' do
  116. @bodies = Body.all
  117. haml :bodies
  118. end
  119. get '/bodies/:body/?' do
  120. @body = Body.first(:slug => params[:body])
  121. @elections = Election.all(:body => @body, :order => [:d.desc])
  122. @districts = District.all(:body => @body, :order => [:name])
  123. haml :body
  124. end
  125. # get '/wards/:slug/postcode/:postcode/?' do
  126. # @ward = Ward.first(:slug => params[:slug])
  127. # @postcode = params[:postcode]
  128. # haml :wards
  129. # end
  130. get '/candidates/:id/?' do
  131. if @candidate = Candidate.get(params[:id])
  132. haml :candidate
  133. else
  134. 404
  135. end
  136. end
  137. get '/candidates/?' do
  138. @candidates = Candidate.all(:order => [ :surname, :forenames ])
  139. haml :candidates
  140. end
  141. get '/bodies/:body/elections/:date/:districts_name/:district' do
  142. @district = District.first(:slug => params[:district])
  143. @body = Body.first(:slug => params[:body])
  144. @election = Election.first(:body => @body, :d => params[:date])
  145. @candidacies = Candidacy.all(:district => @district, :election => @election, :order => [:votes.desc])
  146. @total_votes = Candidacy.sum(:votes, :district => @district, :election => @election)
  147. @total_candidates = Candidacy.count(:district => @district, :election => @election)
  148. @total_seats = Candidacy.sum(:seats, :district => @district, :election => @election)
  149. @districts_in_this_election = @election.candidacies.districts
  150. # Postgres: All the columns selected when using GROUP BY must either be aggregate functions or appear in the GROUP BY clause
  151. @results_by_party = repository(:default).adapter.select("
  152. SELECT
  153. p.name AS party_name,
  154. p.colour AS party_colour,
  155. COUNT(c.id) AS num_candidates,
  156. SUM(c.seats) AS num_seats,
  157. SUM(c.votes) AS total_votes
  158. FROM candidacies c
  159. LEFT JOIN parties p
  160. ON c.party_id = p.id
  161. WHERE c.district_id = #{@district.id}
  162. AND c.election_id = #{@election.id}
  163. GROUP BY p.name, p.colour
  164. ORDER BY total_votes DESC
  165. ")
  166. haml :resultsdistrict
  167. end
  168. get '/bodies/:body/:districts_name/:district' do
  169. @district = District.first(:slug => params[:district])
  170. @body = Body.first(:slug => params[:body])
  171. haml :district
  172. end
  173. get '/how-the-council-election-works' do
  174. haml :election
  175. end
  176. get '/how-the-parliament-election-works' do
  177. haml :parliament
  178. end
  179. # get '/voting' do
  180. # haml :voting
  181. # end
  182. get '/error' do
  183. haml :error
  184. end
  185. get '/about' do
  186. haml :about
  187. end
  188. # get '/aliens' do
  189. # haml :aliens
  190. # end
  191. not_found do
  192. haml :not_found
  193. end