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.

109 lines
4.2 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" width="100%">
  32. <tr>
  33. <td>Slug</td>
  34. <td width="160">
  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>Syndication</td>
  42. <td>
  43. <div style="margin-bottom:4px;"><input type="text" id="syndicate-to-field-name" value="<?= $this->user->micropub_syndicate_field ?>" placeholder="mp-syndicate-to" class="form-control"></div>
  44. <div><input type="button" class="btn btn-primary" value="Save" id="save-syndicate-to-field"></div>
  45. </td>
  46. <td>Choose the name of the field that the syndication values will be sent in. This should be set to <code>mp-syndicate-to</code> unless your endpoint is using the deprecated <code>syndicate-to</code> property.</td>
  47. </tr>
  48. <tr>
  49. <td>Send HTML Content</td>
  50. <td><input type="checkbox" id="send-html-content" <?= $this->user->micropub_optin_html_content ? 'checked="checked"' : '' ?>></td>
  51. <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>
  52. </tr>
  53. </table>
  54. </div>
  55. <script>
  56. $(function(){
  57. $.getJSON("/auth/twitter", function(data){
  58. // Check if we're already authorized with twitter
  59. if(data && data.result == 'ok') {
  60. $("#twitter-button").val("Connected").addClass("btn-success");
  61. } else if(data && data.url) {
  62. $("#twitter-button").val("Sign In").data("url", data.url).addClass("btn-warning");
  63. } else {
  64. $("#twitter-button").val("Error").addClass("btn-danger");
  65. }
  66. });
  67. $("#twitter-button").click(function(){
  68. if($(this).data('url')) {
  69. window.location = $(this).data('url');
  70. } else {
  71. $.getJSON("/auth/twitter", {login: 1}, function(data){
  72. window.location = data.url;
  73. });
  74. }
  75. });
  76. $("#send-html-content").click(function(){
  77. var enabled = $(this).attr("checked") == "checked";
  78. $.post("/settings/save", {
  79. html_content: (enabled ? 1 : 0)
  80. });
  81. });
  82. $("#save-slug-field").click(function(){
  83. $.post("/settings/save", {
  84. slug_field: $("#slug-field-name").val()
  85. });
  86. });
  87. $("#save-syndicate-to-field").click(function(){
  88. $.post("/settings/save", {
  89. syndicate_field: $("#syndicate-to-field-name").val()
  90. });
  91. });
  92. });
  93. </script>