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.

95 lines
3.4 KiB

  1. <div class="narrow">
  2. <?= partial('partials/header') ?>
  3. <h2>Signed In As</h2>
  4. <table class="table table-condensed">
  5. <tr>
  6. <td>me</td>
  7. <td><code><?= $this->user->url; ?></code> (should be your URL)</td>
  8. </tr>
  9. <tr>
  10. <td>scope</td>
  11. <td><code><?= $this->user->micropub_scope ?></code> (should be a space-separated list of permissions including "create")</td>
  12. </tr>
  13. <tr>
  14. <td>micropub endpoint</td>
  15. <td><code><?= $this->user->micropub_endpoint ?></code> (should be a URL)</td>
  16. </tr>
  17. <tr>
  18. <td>media endpoint</td>
  19. <td><?= $this->user->micropub_media_endpoint ? '<code>'.$this->user->micropub_media_endpoint.'</code>' : '<a href="https://www.w3.org/TR/micropub/#media-endpoint">no media endpoint</a>' ?></td>
  20. </tr>
  21. <tr>
  22. <td width="140">access token</td>
  23. <td><code style="word-break: break-word; white-space: pre-wrap;"><?= $this->user->micropub_access_token ?></code></td>
  24. </tr>
  25. </table>
  26. <h3>Twitter</h3>
  27. <p>Connecting a Twitter account will automatically "favorite" and "retweet" tweets on Twitter when you favorite and retweet a Twitter URL in Quill.</p>
  28. <input type="button" id="twitter-button" value="Checking" class="btn">
  29. <h3>Backwards Compatibility</h3>
  30. <p>You can customize some of the properties that are sent in the Micropub request to work with your specific endpoint.</p>
  31. <table class="table table-condensed">
  32. <tr>
  33. <td>Slug</td>
  34. <td>
  35. <div style="margin-bottom:4px;"><input type="text" id="slug-field-name" value="<?= $this->user->micropub_slug_field ?>" placeholder="mp-slug" class="form-control"></div>
  36. <div><input type="button" class="btn btn-primary" value="Save" id="save-slug-field"></div>
  37. </td>
  38. <td>Choose the name of the field that the slug will be sent in. This should be set to <code>mp-slug</code> unless your endpoint is using a custom property or the deprecated <code>slug</code> property.</td>
  39. </tr>
  40. <tr>
  41. <td>Send HTML Content</td>
  42. <td><input type="checkbox" id="send-html-content" <?= $this->user->micropub_optin_html_content ? 'checked="checked"' : '' ?>></td>
  43. <td>When checked, content from Quill's HTML editor will be sent in a property called <code>content[html]</code> rather than just <code>content</code>. See the <a href="https://www.w3.org/TR/micropub/#new-article-with-html">Micropub specification</a> for more details.</td>
  44. </tr>
  45. </table>
  46. </div>
  47. <script>
  48. $(function(){
  49. $.getJSON("/auth/twitter", function(data){
  50. // Check if we're already authorized with twitter
  51. if(data && data.result == 'ok') {
  52. $("#twitter-button").val("Connected").addClass("btn-success");
  53. } else if(data && data.url) {
  54. $("#twitter-button").val("Sign In").data("url", data.url).addClass("btn-warning");
  55. } else {
  56. $("#twitter-button").val("Error").addClass("btn-danger");
  57. }
  58. });
  59. $("#twitter-button").click(function(){
  60. if($(this).data('url')) {
  61. window.location = $(this).data('url');
  62. } else {
  63. $.getJSON("/auth/twitter", {login: 1}, function(data){
  64. window.location = data.url;
  65. });
  66. }
  67. });
  68. $("#send-html-content").click(function(){
  69. var enabled = $(this).attr("checked") == "checked";
  70. $.post("/settings/save", {
  71. html_content: (enabled ? 1 : 0)
  72. });
  73. });
  74. $("#save-slug-field").click(function(){
  75. $.post("/settings/save", {
  76. slug_field: $("#slug-field-name").val()
  77. });
  78. });
  79. });
  80. </script>