mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
313 lines
8.8 KiB
JavaScript
313 lines
8.8 KiB
JavaScript
function parsePostData(query) {
|
|
const result = {};
|
|
query.split("&").forEach(function(part) {
|
|
const item = part.split("=");
|
|
const firstSeg = decodeURIComponent(item[0]);
|
|
const m = /^([^\[]+)\[([^\]]+)\]/.exec(firstSeg);
|
|
|
|
const val = decodeURIComponent(item[1]).replace(/\+/g, ' ');
|
|
if (m) {
|
|
result[m[1]] = result[m[1]] || {};
|
|
result[m[1]][m[2]] = val;
|
|
} else {
|
|
result[firstSeg] = val;
|
|
}
|
|
|
|
});
|
|
return result;
|
|
}
|
|
|
|
function response(code, obj) {
|
|
if (typeof code === "object") {
|
|
obj = code;
|
|
code = 200;
|
|
}
|
|
return [code, {"Content-Type": "application/json"}, obj];
|
|
}
|
|
|
|
function success() {
|
|
return response({ success: true });
|
|
}
|
|
|
|
const _widgets = [
|
|
{id: 123, name: 'Trout Lure'},
|
|
{id: 124, name: 'Evil Repellant'}
|
|
];
|
|
|
|
const _moreWidgets = [
|
|
{id: 223, name: 'Bass Lure'},
|
|
{id: 224, name: 'Good Repellant'}
|
|
];
|
|
|
|
const fruits = [{id: 1, name: 'apple', farmer_id: 1, color_ids: [1,2], category_id: 4},
|
|
{id: 2, name: 'banana', farmer_id: 1, color_ids: [3], category_id: 3},
|
|
{id: 3, name: 'grape', farmer_id: 2, color_ids: [2], category_id: 5}];
|
|
|
|
const farmers = [{id: 1, name: 'Old MacDonald'},
|
|
{id: 2, name: 'Luke Skywalker'}];
|
|
|
|
const colors = [{id: 1, name: 'Red'},
|
|
{id: 2, name: 'Green'},
|
|
{id: 3, name: 'Yellow'}];
|
|
|
|
function loggedIn() {
|
|
return !!Discourse.User.current();
|
|
}
|
|
|
|
export default function() {
|
|
|
|
const server = new Pretender(function() {
|
|
|
|
const fixturesByUrl = {};
|
|
|
|
// Load any fixtures automatically
|
|
const self = this;
|
|
Ember.keys(require._eak_seen).forEach(function(entry) {
|
|
if (/^fixtures/.test(entry)) {
|
|
const fixture = require(entry, null, null, true);
|
|
if (fixture && fixture.default) {
|
|
const obj = fixture.default;
|
|
Ember.keys(obj).forEach(function(url) {
|
|
fixturesByUrl[url] = obj[url];
|
|
self.get(url, function() {
|
|
return response(obj[url]);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
this.get('/admin/plugins', () => { return response({ plugins: [] }); });
|
|
|
|
this.get('/composer-messages', () => { return response([]); });
|
|
|
|
this.get("/latest.json", () => {
|
|
const json = fixturesByUrl['/latest.json'];
|
|
|
|
if (loggedIn()) {
|
|
// Stuff to let us post
|
|
json.topic_list.can_create_topic = true;
|
|
json.topic_list.draft_key = "new_topic";
|
|
json.topic_list.draft_sequence = 1;
|
|
}
|
|
return response(json);
|
|
});
|
|
|
|
this.get('/users/eviltrout.json', () => {
|
|
const json = fixturesByUrl['/users/eviltrout.json'];
|
|
if (loggedIn()) {
|
|
json.user.can_edit = true;
|
|
}
|
|
return response(json);
|
|
});
|
|
|
|
this.put('/users/eviltrout', () => {
|
|
return response({ user: {} });
|
|
});
|
|
|
|
this.get("/t/280.json", function() {
|
|
return response(fixturesByUrl['/t/280/1.json']);
|
|
});
|
|
|
|
this.get("/t/28830.json", function() {
|
|
return response(fixturesByUrl['/t/28830/1.json']);
|
|
});
|
|
|
|
this.get("/t/9.json", function() {
|
|
return response(fixturesByUrl['/t/9/1.json']);
|
|
});
|
|
|
|
this.get("/t/id_for/:slug", function() {
|
|
return response({id: 280, slug: "internationalization-localization", url: "/t/internationalization-localization/280"});
|
|
});
|
|
|
|
this.get("/404-body", function() {
|
|
return [200, {"Content-Type": "text/html"}, "<div class='page-not-found'>not found</div>"];
|
|
});
|
|
|
|
this.delete('/draft.json', success);
|
|
this.post('/draft.json', success);
|
|
|
|
this.get('/users/:username/staff-info.json', () => response({}));
|
|
|
|
this.put('/categories/:category_id', function(request) {
|
|
const category = parsePostData(request.requestBody);
|
|
return response({category});
|
|
});
|
|
|
|
this.get('/draft.json', function() {
|
|
return response({});
|
|
});
|
|
|
|
this.put('/queued_posts/:queued_post_id', function(request) {
|
|
return response({ queued_post: {id: request.params.queued_post_id } });
|
|
});
|
|
|
|
this.get('/queued_posts', function() {
|
|
return response({
|
|
queued_posts: [{id: 1, raw: 'queued post text', can_delete_user: true}]
|
|
});
|
|
});
|
|
|
|
this.post('/session', function(request) {
|
|
const data = parsePostData(request.requestBody);
|
|
|
|
if (data.password === 'correct') {
|
|
return response({username: 'eviltrout'});
|
|
}
|
|
return response(400, {error: 'invalid login'});
|
|
});
|
|
|
|
this.get('/users/hp.json', function() {
|
|
return response({"value":"32faff1b1ef1ac3","challenge":"61a3de0ccf086fb9604b76e884d75801"});
|
|
});
|
|
|
|
this.get('/session/csrf', function() {
|
|
return response({"csrf":"mgk906YLagHo2gOgM1ddYjAN4hQolBdJCqlY6jYzAYs="});
|
|
});
|
|
|
|
this.get('/users/check_username', function(request) {
|
|
if (request.queryParams.username === 'taken') {
|
|
return response({available: false, suggestion: 'nottaken'});
|
|
}
|
|
return response({available: true});
|
|
});
|
|
|
|
this.post('/users', function() {
|
|
return response({success: true});
|
|
});
|
|
|
|
this.get('/login.html', function() {
|
|
return [200, {}, 'LOGIN PAGE'];
|
|
});
|
|
|
|
this.delete('/posts/:post_id', success);
|
|
this.put('/posts/:post_id/recover', success);
|
|
|
|
this.put('/posts/:post_id', (request) => {
|
|
const data = parsePostData(request.requestBody);
|
|
data.post.id = request.params.post_id;
|
|
data.post.version = 2;
|
|
return response(200, data.post);
|
|
});
|
|
|
|
this.get('/t/403.json', () => {
|
|
return response(403, {});
|
|
});
|
|
|
|
this.get('/t/404.json', () => {
|
|
return response(404, "not found");
|
|
});
|
|
|
|
this.get('/t/500.json', () => {
|
|
return response(502, {});
|
|
});
|
|
|
|
this.put('/t/:slug/:id', (request) => {
|
|
const data = parsePostData(request.requestBody);
|
|
|
|
return response(200, { basic_topic: {id: request.params.id,
|
|
title: data.title,
|
|
fancy_title: data.title,
|
|
slug: request.params.slug } });
|
|
});
|
|
|
|
this.post('/posts', function(request) {
|
|
const data = parsePostData(request.requestBody);
|
|
|
|
if (data.title === "this title triggers an error") {
|
|
return response(422, {errors: ['That title has already been taken']});
|
|
}
|
|
|
|
if (data.raw === "enqueue this content please") {
|
|
return response(200, { success: true, action: 'enqueued' });
|
|
}
|
|
|
|
return response(200, {
|
|
success: true,
|
|
action: 'create_post',
|
|
post: {id: 12345, topic_id: 280, topic_slug: 'internationalization-localization'}
|
|
});
|
|
});
|
|
|
|
this.get('/fruits/:id', function() {
|
|
const fruit = fruits[0];
|
|
return response({ __rest_serializer: "1", fruit, farmers, colors });
|
|
});
|
|
|
|
this.get('/fruits', function() {
|
|
return response({ __rest_serializer: "1", fruits, farmers, colors });
|
|
});
|
|
|
|
this.get('/widgets/:widget_id', function(request) {
|
|
const w = _widgets.findBy('id', parseInt(request.params.widget_id));
|
|
if (w) {
|
|
return response({widget: w});
|
|
} else {
|
|
return response(404);
|
|
}
|
|
});
|
|
|
|
this.post('/widgets', function(request) {
|
|
const widget = parsePostData(request.requestBody).widget;
|
|
widget.id = 100;
|
|
return response(200, {widget});
|
|
});
|
|
|
|
this.put('/widgets/:widget_id', function(request) {
|
|
const widget = parsePostData(request.requestBody).widget;
|
|
return response({ widget });
|
|
});
|
|
|
|
this.put('/cool_things/:cool_thing_id', function(request) {
|
|
const cool_thing = parsePostData(request.requestBody).cool_thing;
|
|
return response({ cool_thing });
|
|
});
|
|
|
|
|
|
this.get('/widgets', function(request) {
|
|
let result = _widgets;
|
|
|
|
const qp = request.queryParams;
|
|
if (qp) {
|
|
if (qp.name) { result = result.filterBy('name', qp.name); }
|
|
if (qp.id) { result = result.filterBy('id', parseInt(qp.id)); }
|
|
}
|
|
|
|
return response({ widgets: result,
|
|
total_rows_widgets: 4,
|
|
load_more_widgets: '/load-more-widgets',
|
|
refresh_widgets: '/widgets?refresh=true' });
|
|
});
|
|
|
|
this.get('/load-more-widgets', function() {
|
|
return response({ widgets: _moreWidgets, total_rows_widgets: 4, load_more_widgets: '/load-more-widgets' });
|
|
});
|
|
|
|
this.delete('/widgets/:widget_id', success);
|
|
|
|
this.post('/topics/timings', function() {
|
|
return response(200, {});
|
|
});
|
|
});
|
|
|
|
server.prepareBody = function(body){
|
|
if (body && typeof body === "object") {
|
|
return JSON.stringify(body);
|
|
}
|
|
return body;
|
|
};
|
|
|
|
server.unhandledRequest = function(verb, path) {
|
|
const error = 'Unhandled request in test environment: ' + path + ' (' + verb + ')';
|
|
window.console.error(error);
|
|
throw error;
|
|
};
|
|
|
|
server.checkPassthrough = function(request) {
|
|
return request.requestHeaders['Discourse-Script'];
|
|
};
|
|
|
|
return server;
|
|
}
|