mirror of
https://github.com/flarum/core.git
synced 2025-08-01 14:10:37 +02:00
Cleanup, remove some old code
This commit is contained in:
@@ -13,65 +13,4 @@ var App = Ember.Application.extend({
|
|||||||
|
|
||||||
loadInitializers(App, config.modulePrefix);
|
loadInitializers(App, config.modulePrefix);
|
||||||
|
|
||||||
//-----------------------------------------
|
export default App;
|
||||||
// TODO: Move all this to an initializer
|
|
||||||
|
|
||||||
/*
|
|
||||||
import User from 'flarum/models/user';
|
|
||||||
|
|
||||||
// Authentication
|
|
||||||
|
|
||||||
import BaseAuthenticator from 'simple-auth/authenticators/base';
|
|
||||||
|
|
||||||
var FlarumAuthenticator = BaseAuthenticator.extend({
|
|
||||||
restore: function(data) {
|
|
||||||
// return Ember.RSVP.Promise.resolve(data);
|
|
||||||
},
|
|
||||||
authenticate: function(credentials) {
|
|
||||||
return new Ember.RSVP.Promise(function(resolve, reject) {
|
|
||||||
Ember.$.ajax({
|
|
||||||
url: 'http://localhost/public/Flarum/flarum/public/api/auth',
|
|
||||||
type: 'POST',
|
|
||||||
data: { type: 'password', identification: credentials.identification, password: credentials.password }
|
|
||||||
}).then(function(response) {
|
|
||||||
resolve({ token: response.token, userId: response.user.id });
|
|
||||||
}, function(xhr, status, error) {
|
|
||||||
reject(xhr.responseText);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// invalidate: function() {
|
|
||||||
// return Ember.RSVP.Promise.resolve();
|
|
||||||
// }
|
|
||||||
});
|
|
||||||
|
|
||||||
import BaseAuthorizer from 'simple-auth/authorizers/base';
|
|
||||||
|
|
||||||
var FlarumAuthorizer = BaseAuthorizer.extend({
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
App.initializer({
|
|
||||||
name: 'authentication',
|
|
||||||
initialize: function(container, application) {
|
|
||||||
container.register('authenticator:flarum', FlarumAuthenticator);
|
|
||||||
container.register('authorizer:flarum', FlarumAuthorizer);
|
|
||||||
|
|
||||||
// customize the session so that it allows access to the account object
|
|
||||||
Ember.SimpleAuth.Session.reopen({
|
|
||||||
user: function() {
|
|
||||||
var userId = this.get('userId');
|
|
||||||
if (!userId) return;
|
|
||||||
return container.lookup('store:main').find('user', userId);
|
|
||||||
}.property('userId')
|
|
||||||
});
|
|
||||||
|
|
||||||
Ember.SimpleAuth.setup(container, application, {
|
|
||||||
authorizerFactory: 'authorizer:flarum',
|
|
||||||
routeAfterAuthentication: 'discussions'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
*/
|
|
||||||
|
|
||||||
export default App;
|
|
@@ -1,8 +1,8 @@
|
|||||||
import FlarumAuthorizer from '../authorizers/flarum';
|
import FlarumAuthorizer from '../authorizers/flarum';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'authentication',
|
name: 'authentication',
|
||||||
before: 'simple-auth',
|
before: 'simple-auth',
|
||||||
initialize: function(container) {
|
initialize: function(container) {
|
||||||
container.register('authorizer:flarum', FlarumAuthorizer);
|
container.register('authorizer:flarum', FlarumAuthorizer);
|
||||||
}
|
}
|
||||||
|
@@ -30,15 +30,6 @@ class DiscussionFinder
|
|||||||
|
|
||||||
protected $fulltext;
|
protected $fulltext;
|
||||||
|
|
||||||
public function __construct($user = null, $tokens = null, $sort = null, $order = null, $key = null)
|
|
||||||
{
|
|
||||||
$this->user = $user;
|
|
||||||
$this->tokens = $tokens;
|
|
||||||
$this->sort = $sort;
|
|
||||||
$this->order = $order;
|
|
||||||
$this->key = $key;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getUser()
|
public function getUser()
|
||||||
{
|
{
|
||||||
return $this->user;
|
return $this->user;
|
||||||
|
Reference in New Issue
Block a user