Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Aaron Parecki 1e4b2db2d5
update docs to JSON format
4 anos atrás
controllers Send JSON-encoded posts instead of form-encoded. 5 anos atrás
lib Send JSON-encoded posts instead of form-encoded. 5 anos atrás
public fix link 5 anos atrás
schema add alexa support 7 anos atrás
views update docs to JSON format 4 anos atrás
.gitignore add base project files copied from Quill 9 anos atrás
README.md Update README.md 9 anos atrás
composer.json IndieAuth updates 6 anos atrás
composer.lock IndieAuth updates 6 anos atrás

README.md

Teacup

Routes

/

Teacup is a simple app for tracking what you are drinking.

You can post what you're drinking to your own site, or you can post to an account provided by Teacup.

/auth/start

Discover IndieAuth + Micropub endpoints.

Authorize

If a Micropub endpoint is found, show a message with a button to start the authorization flow.

Also provide a button to create an account in case they don't want to use their own site.

Create Account

Show a message and provide a button to create an account.

Starts authentication with indieauth.com using the authenication flow.

/auth/callback

Copy from Quill up to line 200.

If a token endpoint is found, get an access token from it.

If no token endpoint is found, verify the code with indieauth.com and create an account for the user.

/new

The signed-in view used to post new content.

Show the list of drinks that can be posted.

/post

The form submits here. Saves the post in the database, then tries to make a micropub request if necessary. If the micropub request succeeds, updates the post with the canonical URL in the response.

/{domain}

Show feed of the user's recent posts. Posts include a link to the canonical URL if appropriate.

/{domain}/{entry}

Permalinks for individual entries.

/signout

Destroy session.

Contributing

By contributing to this project, you agree to irrevocably release your contributions under the same license as this project.

Credits

License

Copyright 2014 by Aaron Parecki

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.