Commit Graph

433 Commits

Author SHA1 Message Date
Piotr Sarnacki
54a6926aaf Properly handle non existent resources
This commit changes travis-api to always return 404 response if resource
is not available. Previously we were returning image/png with "unknown"
status instead if user used "*/*" Accept header, which was confusing.
2013-03-11 23:52:57 +01:00
Piotr Sarnacki
b6f3ef10aa Resource can be nil in Responders::Image 2013-03-11 20:57:45 +01:00
Piotr Sarnacki
04bb751b02 When serving image, return proper Last-Modified header 2013-03-11 20:54:24 +01:00
Henrik Hodne
63155e65b6 Fix link to travis-web
Fix #55
2013-03-03 18:27:29 -06:00
Piotr Sarnacki
5345ef818e Use version from each of the accept headers, not only first one 2013-02-25 17:28:24 +01:00
Piotr Sarnacki
5f91706e64 Allow to pass version as Accept param 2013-02-25 17:28:24 +01:00
Piotr Sarnacki
36783e6359 Handle chunked=true param in Accept header 2013-02-25 17:28:24 +01:00
Piotr Sarnacki
65b1e6b988 Respond with 406 if we can't return requested formats 2013-02-25 17:27:56 +01:00
Piotr Sarnacki
212eb6d9d3 Allow passing more than one mime type in Accept 2013-02-25 17:27:56 +01:00
Piotr Sarnacki
1d7be066cb Make it easy to check if Accept::Entry accepts given mime type 2013-02-25 17:27:56 +01:00
Piotr Sarnacki
c9e99cf2cf Allow more than one type in Accept header 2013-02-25 17:27:56 +01:00
Konstantin Haase
2e6865d55f don't run metrics etc in heroku console 2013-02-14 19:12:26 +01:00
Konstantin Haase
48cf45c5f6 disable new relic 2013-02-13 17:55:11 +01:00
Sven Fuchs
7e005aad1b use travis-core/sf-log-models 2013-02-10 21:30:50 +01:00
Piotr Sarnacki
0eadcfedbd Use redis for sidekiq from config also on staging 2013-02-06 14:20:03 +01:00
Sven Fuchs
b8dfb1cd00 auth PUT to /artifacts/:id 2013-01-30 08:50:27 +01:00
Piotr Sarnacki
260c46181d Add hack to allow handling redirect to logs on the client properly.
This hack is temporary and should be removed when we find better
solution.

TL;DR: we can't handle redirects to S3 using CORS, so in case we want to
get logs from S3 without additional requests to API, we need to return
status that will not be automatically redirected (in this case 204 seems
like the best answer).

Longer rationale:

Old logs are hosted on S3 now and in case log is not available in the
database, we would like to redirect to the archived log. Although S3
support CORS, our use case breaks on some browsers:

  * when request is triggered to /jobs/:id/log and log is archived, api
    returns 302 redirect, Location header points to the log on S3
  * browser transparently redirects to given url, but it sets Origin to
    null, for security reasons
  * "Origin: null" is ok, because we allow every origin by setting
    AllowedOrigin to "*"
  * S3 returns "Access-Control-Allow-Origin: null" header, which breaks
    some browsers (I confirmed it for webkit based browsers)

In order to fix this, S3 would need to return * in
Access-Control-Allow-Origin header or we would need to tell the browser
to not follow redirect. Both solutions are not achiveable.

Another option would be to return log information in job payload - we
could send log_url field which should be either log url on amazon or
null, but in such case we would need to query artifacts table in each
job request. This is something that should be avoided as archived logs
are not frequently requested - slowing down every request to get info
for it would be a waste.
2013-01-29 03:51:22 +01:00
Piotr Sarnacki
489a33cbf6 Try 307 redirect on /logs.txt 2013-01-28 19:05:07 +01:00
Konstantin Haase
62b876d2e1 keep query string when redirecting in rewrite middleware 2013-01-28 15:47:28 +01:00
Piotr Sarnacki
a565522f41 Redirect to full amazon url
Amazon can't work properly with SSL and CNAME for subdomains. For now we
can use full amazon url.
2013-01-28 03:43:28 +01:00
Piotr Sarnacki
31371686c9 Redirect to archive logs 2013-01-28 03:04:36 +01:00
Sven Fuchs
b81644acba comment out put to /artifacts/:id for now 2013-01-26 20:44:04 +01:00
Sven Fuchs
4ea95494de allow put to /artifacts/:id 2013-01-26 20:44:04 +01:00
Sven Fuchs
598a586ed4 don't start metrics logger etc unless in production 2013-01-26 20:43:54 +01:00
Sven Fuchs
d441336573 expose logs on /job/:id/log.txt 2013-01-26 20:43:54 +01:00
Piotr Sarnacki
f2d768080f Return last builds on each branch for /builds?branches=true
This is a hack to fix travis-ci/travis-web#123 easier. A proper solution
would be to refactor how /branches work.
2013-01-26 01:12:47 +01:00
Piotr Sarnacki
46eefaf26d Fix syntax error 2013-01-26 00:02:15 +01:00
Konstantin Haase
85e8f27047 hotfix for strange bug 2013-01-25 22:13:33 +01:00
Konstantin Haase
bde974e182 Revert "disable newrelic"
This reverts commit 48cc0d366a.
2013-01-25 22:11:53 +01:00
Konstantin Haase
48cc0d366a disable newrelic 2013-01-25 11:40:41 +01:00
Konstantin Haase
01c585e189 I have no idea 2013-01-25 11:29:05 +01:00
Sven Fuchs
37dd125a8c start notifications 2013-01-23 22:17:40 +01:00
Konstantin Haase
07c5f6b61f add extension that keeps track of route pattern 2013-01-23 15:22:06 +01:00
Sven Fuchs
ee11e571b7 pass the api payload type for workers because we now do not return AR scopes any more 2013-01-23 02:44:30 +01:00
Konstantin Haase
593920ce81 add Pragma header for caches that do not understand Cache-Control, see #38 2013-01-21 21:18:16 +01:00
Konstantin Haase
1dd3324350 add /users/:id 2013-01-21 12:16:51 +01:00
Sven Fuchs
92a3d17ebf use travis-core/sf-restart-event 2013-01-17 19:06:34 +01:00
Piotr Sarnacki
e6899b3ce6 Allow to remove ansi chars from plain text log 2013-01-15 02:27:06 +01:00
Piotr Sarnacki
70cd6ef092 Allow to download logs in plain text 2013-01-15 02:23:02 +01:00
Konstantin Haase
01fe983a0c pass if scope does not match 2013-01-13 20:08:56 +01:00
Konstantin Haase
cc2a1cd50e do not require user scope for /auth/github 2013-01-11 17:48:30 +01:00
Konstantin Haase
3d6defe3b1 do not store token from /auth/github 2013-01-11 16:49:08 +01:00
Konstantin Haase
ada6ee0f2c fix scope check 2013-01-11 16:20:53 +01:00
Konstantin Haase
e7be49dcb1 fix the payload 2012-12-17 20:22:51 +01:00
Konstantin Haase
f878eee987 fix logging 2012-12-17 20:06:45 +01:00
Konstantin Haase
b3b5476076 first think, then commit 2012-12-17 19:26:58 +01:00
Konstantin Haase
9a1988d586 fix template 2012-12-17 19:22:33 +01:00
Konstantin Haase
f5fdcc41c6 fix token logic 2012-12-17 15:35:35 +01:00
Konstantin Haase
8c8f031259 have travis token added to user payload on the server 2012-12-17 15:13:38 +01:00
Sven Fuchs
c44445d8e2 use the api serializer to serialize a user record 2012-12-17 01:40:16 +01:00
Konstantin Haase
b005047d95 rename token parameter to github_token for /auth/github 2012-12-12 18:30:55 +01:00
Konstantin Haase
bc1c960c20 add travis_token scope 2012-12-12 17:11:25 +01:00
Sven Fuchs
0e58055a0e Merge branch 'master' of github.com:travis-ci/travis-api 2012-12-12 15:19:41 +01:00
Sven Fuchs
de16fb07f8 test result images based on the content-disposition header, fix content-disposition header 2012-12-12 15:19:27 +01:00
Konstantin Haase
44d6c02591 actually check if github sent a token 2012-12-10 15:49:37 +01:00
Konstantin Haase
3d8c9ed914 use localStorage after handshake 2012-12-10 14:03:31 +01:00
Piotr Sarnacki
88363423f4 Fix whitelist auth check for localhost 2012-12-09 23:46:18 +01:00
Sven Fuchs
a9bf43c1fd always use etag for caching when cache_key or updated_at are present, add the deploy_sha as a cache buster 2012-12-09 19:22:33 +01:00
Sven Fuchs
d113833e9a fix xml responder and result image specs 2012-12-09 16:02:00 +01:00
Sven Fuchs
f19f5f9879 check redis for :use_rack_cache 2012-12-09 15:16:50 +01:00
Sven Fuchs
6d12070fba use Repository::StatusImage 2012-12-09 15:16:50 +01:00
Konstantin Haase
83e42adc65 that did not work 2012-12-06 16:55:58 +01:00
Konstantin Haase
2250d1ba5c only send user payload 2012-12-06 16:51:33 +01:00
Konstantin Haase
981a32f877 fix setTimeout 2012-12-06 16:24:37 +01:00
Konstantin Haase
24ea1ca7c0 cheap escape 2012-12-06 16:05:36 +01:00
Konstantin Haase
7b4fe5dab3 no inspect 2012-12-06 15:52:49 +01:00
Konstantin Haase
af1aeb8147 set action and method 2012-12-06 15:40:29 +01:00
Konstantin Haase
afad81f927 Addressable::URI.parse might return nil 2012-12-06 15:34:13 +01:00
Konstantin Haase
ee1f9d899d set content type 2012-12-06 15:24:46 +01:00
Konstantin Haase
cd9d84783d fix regex 2012-12-06 15:20:23 +01:00
Konstantin Haase
3b84b83699 post data for targets we know 2012-12-06 15:08:27 +01:00
Konstantin Haase
ac318df762 Merge branch 'master' into rkh-better-login 2012-12-06 14:47:15 +01:00
Konstantin Haase
497eebab94 simplify popup check 2012-12-05 15:10:28 +01:00
Konstantin Haase
811aa47098 rewrite post message login 2012-12-05 14:09:56 +01:00
Mathias Meyer
142fad9b81 Hook up activerecord metrics log subscriber. 2012-12-05 11:11:18 +01:00
Mathias Meyer
ecd236a8ff Add metriks. 2012-12-05 11:11:18 +01:00
Konstantin Haase
d3ed96f165 trigger redirect 2012-12-04 14:39:50 +01:00
Piotr Sarnacki
440dacece3 Add endpoints for key regeneration
Enpoints are:

    POST /repos/:id/key

and

    POST /repos/:owner/:name/key

Both versions will replace current ssl key for given repo with the new
one.
2012-12-03 02:54:01 +01:00
Konstantin Haase
a62948b047 make /key public again 2012-12-02 20:39:54 +01:00
Konstantin Haase
5d515f3b8a enforce v2 for /key 2012-12-02 20:21:19 +01:00
Konstantin Haase
0d7db43c7a set scope 2012-12-02 19:47:24 +01:00
Henrik Hodne
6f534d388e Note endpoints that are not yet implemented 2012-11-28 18:10:55 -06:00
Sven Fuchs
24b6843bda Merge branch 'master' of github.com:travis-ci/travis-api
Conflicts:
	Gemfile.lock
2012-11-27 15:23:22 +01:00
Sven Fuchs
aff75592e3 don't set services manually 2012-11-27 15:22:23 +01:00
Piotr Sarnacki
65637c5731 Add endpoint for getting repo public key 2012-11-26 02:26:34 +01:00
Piotr Sarnacki
76a4becb55 Add prefix for Rack::Cache 2012-11-25 23:48:39 +01:00
Sven Fuchs
e383193323 renamed service to requeue_request 2012-11-24 14:43:21 +01:00
Sven Fuchs
fcf8768294 it's request_requeue, not requeue_request 2012-11-23 21:23:13 +01:00
Sven Fuchs
6dd2399118 use Services::Helpers 2012-11-23 21:16:21 +01:00
Sven Fuchs
353b5fa502 use registered services 2012-11-23 21:16:10 +01:00
Konstantin Haase
31da89380a implement auth timeout 2012-11-18 21:10:49 +01:00
Konstantin Haase
448501be3a add logging 2012-11-18 19:53:05 +01:00
Piotr Sarnacki
a787f32e52 Use document.createElement('iframe') instad of document.write 2012-11-18 14:47:56 +01:00
Piotr Sarnacki
07d965307f Remove actions for cookie check, we don't use them anymore 2012-11-18 14:47:13 +01:00
Piotr Sarnacki
3cb9dd89cd Use third-party-cookies.herokuapp.com for cookie check 2012-11-18 14:39:34 +01:00
Piotr Sarnacki
33dced826b Popup should be open only if thirdPartyCookies are disabled 2012-11-18 13:32:36 +01:00
Konstantin Haase
bbbe0e0c67 fix typo 2012-11-18 13:18:20 +01:00
Konstantin Haase
a7c0b84c35 fix urls 2012-11-18 13:08:24 +01:00
Konstantin Haase
b5760abd2b fix template 2012-11-18 12:59:33 +01:00
Konstantin Haase
46c55bc400 sinatrafy 2012-11-18 12:06:57 +01:00
Piotr Sarnacki
707b2c68e8 Check if third party cookies are enabled to choose login method 2012-11-17 21:12:02 +01:00
Konstantin Haase
2b3579e6dd first stab at a popup flow 2012-11-17 17:55:21 +01:00
Konstantin Haase
eabc178dec allow post message login from a pop-up 2012-11-17 14:59:21 +01:00
Henrik Hodne
eaf28bec33 Add documentation to /repos
This documents what @drogus mentioned here:
https://github.com/travis-ci/travis-ci/issues/503#issuecomment-10447864
2012-11-16 10:44:45 -06:00
Konstantin Haase
946e734d98 need to check scopes before storing token 2012-11-15 16:59:17 +01:00
Piotr Sarnacki
f0f471f1c6 Fix updating github oauth token after signing in 2012-11-12 17:15:28 +01:00
Piotr Sarnacki
662697953e Pass also travis token in /auth/post_message 2012-11-11 20:39:59 +01:00
Piotr Sarnacki
2f21def4a1 Use API v1 by default 2012-11-11 20:39:59 +01:00
Konstantin Haase
d39f2eef07 add cc path 2012-11-08 14:36:39 +01:00
Konstantin Haase
7f6df5f8b1 Merge branch 'master' of github.com:travis-ci/travis-api 2012-11-08 14:34:21 +01:00
Konstantin Haase
e1110034d1 prefix env key 2012-11-08 14:31:18 +01:00
Mathias Meyer
3fc6059d03 require 'raven' 2012-11-07 11:54:50 +01:00
Mathias Meyer
612b7f1e9f Switch to sentry for exceptions. 2012-11-07 11:46:43 +01:00
Mathias Meyer
901d936531 Set up Sidekiq properly. 2012-11-07 10:59:13 +01:00
Mathias Meyer
b07667c52a Set up sidekiq. 2012-11-07 10:55:45 +01:00
Mathias Meyer
308ce72aee Bump travis-core. Start features on app boot. 2012-11-07 10:43:25 +01:00
Piotr Sarnacki
2f87153df9 Move CORS middleware in front of the stack
If there is an error somewhere along the line (like in DB connection
management), it should not interfere with returning proper result for
OPTIONS request. Otherwise it's hard to guess why the actual request in
the browser was not properly sent.
2012-11-05 21:48:13 +01:00
Piotr Sarnacki
505b2fb911 No need to revalidate if resource is final 2012-11-01 16:15:06 +01:00
Piotr Sarnacki
e2b49a91d6 Use AR's ConnectionManagement before AR::QueryCache
(closes #14)
2012-11-01 13:05:49 +01:00
Piotr Sarnacki
37e6262917 Don't show backtraces on errors 2012-11-01 00:04:08 +01:00
Konstantin Haase
6c911407f0 make allowed_targets an option 2012-10-29 18:51:27 +01:00
Piotr Sarnacki
eac77c8a3b Fix cache_control 2012-10-24 20:49:06 +02:00
Piotr Sarnacki
30d7b90592 Fix new relic 2012-10-24 20:49:06 +02:00
Konstantin Haase
a3db22fa69 force no-cache 2012-10-24 00:24:26 +02:00
Konstantin Haase
778acbf275 improve caching logic 2012-10-23 22:00:06 +02:00
Konstantin Haase
ca47b31904 don't cache non-final services 2012-10-23 21:49:34 +02:00
Konstantin Haase
73eea4d51b always call setup 2012-10-22 23:53:41 +02:00
Sven Fuchs
c2e06293a0 fix target_ok? regexp 2012-10-21 18:21:15 +02:00
Sven Fuchs
876564ca12 Merge branch 'master' of github.com:travis-ci/travis-api
Conflicts:
	Gemfile.lock
2012-10-19 16:03:47 +02:00
Sven Fuchs
5321943dfd rename accounts service 2012-10-19 15:58:21 +02:00
Konstantin Haase
720cbef577 allow underscore and dash in subdomains 2012-10-18 23:49:15 +02:00
Sven Fuchs
3af9670190 add a broadcasts endpoint 2012-10-18 04:09:59 +02:00
Konstantin Haase
6252deadee improve caching headers 2012-10-17 18:51:11 +02:00
Sven Fuchs
558847f655 add missing file 2012-10-16 02:14:55 +02:00
Sven Fuchs
270c2fb82d re-add flash messages 2012-10-14 15:11:05 +02:00
Sven Fuchs
dd2c469443 need to require active_record for the exception class 2012-10-13 18:28:28 +02:00
Sven Fuchs
a74a7121d1 rename to signed_in? 2012-10-13 18:27:44 +02:00
Sven Fuchs
6e343099b4 set the scope for /post_message to :public (@rkh: confim?) 2012-10-13 03:31:08 +02:00
Sven Fuchs
272c1275f4 add activerecord query cache 2012-10-12 01:51:59 +02:00
Sven Fuchs
209dbe2a85 rename services, remove service helpers 2012-10-12 01:28:35 +02:00
Sven Fuchs
02f5eea4fc try using rack/cache with memcached 2012-10-11 15:04:24 +02:00
Sven Fuchs
f4d467c998 whitelist Cache-Control, Expires, Last-Modified for cors 2012-10-11 13:36:30 +02:00
Sven Fuchs
e6b44ff1eb add http headers for services that respond to caching info 2012-10-11 05:04:27 +02:00
Piotr Sarnacki
4f33a93769 Fix PUT /users/:id and add integration test for it 2012-10-11 01:00:53 +02:00
Sven Fuchs
8abd6fa150 manual redirects and rewrite rules for supporting v1 style resources 2012-10-10 01:48:22 +02:00
Sven Fuchs
f8bd49e88b on 404 redirect for /owner/name paths on v1 2012-10-10 01:47:12 +02:00
Sven Fuchs
a7d72beefc move responders out of helpers 2012-10-09 20:51:09 +02:00
Sven Fuchs
168c0abba9 rename Responder to Base (resembles Sinatra::Base and i can't come up with another name for a common base class of Middleware and Endpoint) 2012-10-09 18:31:51 +02:00
Sven Fuchs
903f249cfb moar refactoring on responders, fix specs 2012-10-09 18:28:46 +02:00
Sven Fuchs
494a85d968 refactor responders 2012-10-09 15:17:10 +02:00
Sven Fuchs
fa4c5db39b set default version to v2 for easier query/performance inspection for now 2012-10-08 13:22:36 +02:00
Sven Fuchs
2b290b9571 fix requests endpoint, routes order for permissions, raise on undefined builder 2012-10-07 16:58:01 +02:00
Sven Fuchs
8abc330937 add a user permissions endpoint 2012-10-06 22:36:42 +02:00
Sven Fuchs
c3428e896a add deflater, roger @rkh? 2012-10-05 21:54:01 +02:00
Sven Fuchs
4328ba8649 adapt services changes from travis-core 2012-10-05 13:06:50 +02:00
Sven Fuchs
6bda358786 cleanup and some notes 2012-10-03 13:14:01 +02:00
Sven Fuchs
ac8dd768ec fix sign in 2012-10-03 02:44:07 +02:00
Sven Fuchs
f6957636fb refactor to responders, add the cc.xml stuff 2012-10-03 02:19:16 +02:00
Sven Fuchs
5a6f34005c comment out result images for now since i cant get this to work 2012-10-02 21:12:41 +02:00
Sven Fuchs
7eceeb2842 moar work on acceptance tests 2012-10-02 19:10:29 +02:00
Sven Fuchs
289f7c1486 start porting api integration tests 2012-10-02 16:39:38 +02:00
Sven Fuchs
dfc6a1273e figure out the api version from HTTP_ACCEPT 2012-10-01 14:58:06 +02:00
Sven Fuchs
5ff58b1d6c adapt changes for split services 2012-09-29 20:48:31 +02:00
Konstantin Haase
ff4dd4d61b remove empty extension 2012-09-28 16:59:24 +02:00
Konstantin Haase
e99c5c2d4f move helpers around 2012-09-28 16:54:29 +02:00
Konstantin Haase
1f3c1ae8ce Merge branch 'master' into rkh-performance 2012-09-28 16:11:28 +02:00
Sven Fuchs
5271f21d3c Merge branch 'master' of github.com:travis-ci/travis-api 2012-09-27 22:54:26 +02:00
Sven Fuchs
fda18942dc fix locale param name 2012-09-27 22:54:17 +02:00
Konstantin Haase
6d1b6c0a82 Merge branch 'master' of github.com:travis-ci/travis-api 2012-09-27 22:28:39 +02:00
Sven Fuchs
8924ebffff it is service, not services 2012-09-27 21:58:24 +02:00
Sven Fuchs
81022ea7b4 rename endpoint to users and fix endpoint specs 2012-09-27 18:49:37 +02:00
Sven Fuchs
fbd89ceeb0 fix accounts and hooks endpoints 2012-09-27 17:14:50 +02:00
Sven Fuchs
f2e8ccafc1 remove /profile, add /user and /accounts 2012-09-27 16:19:21 +02:00
Konstantin Haase
4808981f4f allow using an oauth proxy 2012-09-27 15:27:26 +02:00
Sven Fuchs
b21deccf2d fix hooks 2012-09-26 12:33:51 +02:00
Sven Fuchs
6dc28f0c49 add Rack::PostBodyContentTypeParser and fix locale update 2012-09-26 11:58:57 +02:00
Sven Fuchs
f09cb3cac0 set the amqp configuration 2012-09-25 18:47:05 +02:00
Sven Fuchs
68caf0e26e add newrelic 2012-09-25 17:54:13 +02:00
Konstantin Haase
603c32b097 set vary header and cache documentation 2012-09-25 17:52:52 +02:00
Sven Fuchs
97e06c556f add hubble 2012-09-25 17:16:27 +02:00
Konstantin Haase
e8d2604ec3 add config endpoint 2012-09-23 01:43:51 +02:00
Konstantin Haase
70e5414b87 more documentation 2012-09-22 19:22:43 +02:00
Konstantin Haase
07038cd7a5 better origin check 2012-09-22 17:39:42 +02:00
Konstantin Haase
8954eaa081 actually trigger sync 2012-09-20 16:10:29 +02:00
Konstantin Haase
761e5dce61 make sync private again 2012-09-20 16:09:26 +02:00
Konstantin Haase
9fca38bc9c remove test route 2012-09-20 16:02:03 +02:00
Konstantin Haase
c212204ad0 more cors and jsonp docs 2012-09-20 15:18:30 +02:00
Konstantin Haase
fb992184a0 add jsonp 2012-09-20 14:53:16 +02:00
Konstantin Haase
da4f05901f more CORS docs 2012-09-20 14:43:15 +02:00
Konstantin Haase
016d929bc0 allow HEAD requests 2012-09-20 14:15:37 +02:00
Konstantin Haase
72dae6867c start working on general docs 2012-09-20 14:15:30 +02:00
Konstantin Haase
e9474652a8 add github ribbon to docs 2012-09-20 12:03:08 +02:00
Konstantin Haase
742583e8e9 make sure we don't leak the github oauth code via a referrer 2012-09-19 16:29:11 +02:00
Konstantin Haase
3ddb2da33b better docs for authorization 2012-09-19 15:30:46 +02:00
Konstantin Haase
d708b79e13 fix access token related tests 2012-09-19 10:23:57 +02:00
Konstantin Haase
f5af1923a6 set profile scope back to private 2012-09-19 10:19:20 +02:00
Konstantin Haase
a67b8bf1de create use if missing 2012-09-18 23:33:35 +02:00
Konstantin Haase
01e19e2888 use id rather than login for user 2012-09-18 22:21:38 +02:00
Sven Fuchs
d7095ea030 Merge branch 'sf-use-services' of github.com:travis-ci/travis-api into sf-use-services
Conflicts:
	lib/travis/api/app/endpoint/authorization.rb
2012-09-18 21:05:59 +02:00
Sven Fuchs
e8ab020af0 use Api for generating the user payload 2012-09-18 21:04:54 +02:00
Konstantin Haase
1a7a9daf46 add endpoint for initial authorization 2012-09-18 20:37:52 +02:00
Konstantin Haase
1e903129a3 set app_id 2012-09-18 19:50:05 +02:00
Konstantin Haase
3a64c87a7f send user data with post message 2012-09-18 19:15:12 +02:00
Konstantin Haase
759ad4d113 send messages after oauth handshake 2012-09-18 18:27:26 +02:00
Konstantin Haase
e9523dc21d use state to avoid handshake spoofing 2012-09-18 16:36:06 +02:00
Konstantin Haase
05acb00c2e reuse existing tokens for same app/scopes 2012-09-18 16:35:29 +02:00
Konstantin Haase
6606af4b43 start working on post_message auth flow
Conflicts:
	Gemfile.lock
2012-09-18 00:04:50 +02:00
Sven Fuchs
ea96905e8a un-private /profile 2012-09-18 00:04:20 +02:00
Sven Fuchs
3387c185fa fake sign in 2012-09-16 00:45:38 +02:00
Sven Fuchs
a8fc2f0e7a it's service, not services 2012-09-15 14:35:58 +02:00
Sven Fuchs
a2d195ecf9 actually turn these objects into json 2012-09-15 12:33:34 +02:00
Sven Fuchs
79e382ce0b add services 2012-09-15 12:10:46 +02:00
Sven Fuchs
1fdcec33a4 use services 2012-09-15 12:10:40 +02:00
Konstantin Haase
f05f841a46 move config around 2012-09-11 13:54:59 +02:00
Konstantin Haase
bff18a278c split up setup method 2012-08-24 18:28:08 +02:00
Konstantin Haase
17d053ac21 setup should not take options
otherwise options would be ignored for subsequent calls
2012-08-24 18:20:20 +02:00
Sven Fuchs
b3249ebb96 add a stats endpoint 2012-08-19 13:57:03 +02:00
Konstantin Haase
8eb7aa11ce better errors on missing token or not matching scope 2012-08-15 02:31:30 +02:00
Konstantin Haase
0eb8b9fed2 for some reason gh is not loaded in production 2012-08-15 01:33:47 +02:00
Konstantin Haase
8e179dde4d implement profile endpoint 2012-08-15 01:19:13 +02:00
Konstantin Haase
f05ea7198b fully implement access tokens 2012-08-15 00:52:22 +02:00
Konstantin Haase
9317d67693 vendor bootstrap 2012-08-10 15:55:02 +02:00
Piotr Sarnacki
159a8e105b Implement a few missing endpoints 2012-08-10 13:41:25 +02:00
Konstantin Haase
44afb75630 add ActiveRecord::ConnectionAdapters::ConnectionManagement 2012-08-10 00:28:49 +02:00
Piotr Sarnacki
5714fcf36d Allow turning off Home::Endpoint
Home::Endpoint by default redirects GET / request to /docs. This may be
desireable when Travis::Api::App is the only app running, but if it's
running in front of other app, you may want to keep root for other
things.
2012-08-09 23:45:39 +02:00
Konstantin Haase
afccec1037 use AccessToken 2012-07-28 19:48:53 +02:00
Konstantin Haase
29e387140a first stab at authorization 2012-07-28 19:47:45 +02:00
Konstantin Haase
7baf61054c rewrite all the things 2012-07-27 15:55:57 +02:00
Konstantin Haase
f67e72602b add CORS support 2012-07-23 15:16:26 +02:00
Konstantin Haase
e2e9572b50 set all responses to json 2012-07-23 14:18:42 +02:00
Sven Fuchs
cca12ce0c9 use Job::Test 2012-07-22 15:37:58 +02:00
Sven Fuchs
76324f00a1 stuff 2012-07-20 16:53:13 +02:00
Sven Fuchs
5c29457066 initial commit 2012-07-18 14:56:41 +02:00