...
This commit is contained in:
@ -10,8 +10,20 @@ using RestSharp;
|
||||
using RestSharp.Deserializers;
|
||||
using System.Linq;
|
||||
|
||||
|
||||
namespace GoogleTranslateNET
|
||||
{
|
||||
public class NoSevrerSideImplementationAttribute : Attribute
|
||||
{
|
||||
public string Reason { get ; private set; }
|
||||
public NoSevrerSideImplementationAttribute(string reason) : base()
|
||||
{
|
||||
Reason = reason;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
[NoSevrerSideImplementation("none")]
|
||||
public class GoogleTranslate
|
||||
{
|
||||
private string _key;
|
||||
|
@ -25,7 +25,7 @@
|
||||
"defaultNamespace": "Yavsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"Newtonsoft.Json": "6.0.0",
|
||||
"Newtonsoft.Json": "6.0.1-beta1",
|
||||
"Gapi.net45": "1.0.1",
|
||||
"RestSharp": "103.4.0"
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
SOURCE_DIR=$(HOME)/workspace/yavsc
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/build/make
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/make
|
||||
include $(MAKEFILE_DIR)/dnx.mk
|
||||
include $(MAKEFILE_DIR)/versioning.mk
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
SOURCE_DIR=$(HOME)/workspace/yavsc
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/build/make
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/make
|
||||
|
||||
include $(MAKEFILE_DIR)/dnx.mk
|
||||
include $(MAKEFILE_DIR)/versioning.mk
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
MAKEFILE_DIR=../../scripts/build/make
|
||||
MAKEFILE_DIR=../../scripts/make
|
||||
BASERESX=Resources/Yavsc.Attributes.Validation.Resources.resx \
|
||||
Resources/Yavsc.Models.Messaging.Resources.resx \
|
||||
Resources/Yavsc.Models.IT.Fixing.Bug.resx\
|
||||
|
@ -1,5 +1,5 @@
|
||||
SOURCE_DIR=$(HOME)/workspace/yavsc
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/build/make
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/make
|
||||
BASERESX=Resources/Yavsc.Models.Relationship.HyperLink.resx \
|
||||
Resources/Yavsc.Models.Streaming.LiveFlow.resx
|
||||
BASERESXGEN=$(BASERESX:.resx=.Designer.cs)
|
||||
|
@ -9,7 +9,7 @@ using Yavsc.Models.Relationship;
|
||||
|
||||
namespace Yavsc.Server.Models.Access
|
||||
{
|
||||
[Obsolete]
|
||||
[Obsolete("use rules from .access files")]
|
||||
public class CircleAuthorizationToFile : ICircleAuthorization
|
||||
{
|
||||
|
||||
|
@ -39,9 +39,11 @@ namespace Yavsc.Controllers
|
||||
return await _dbContext.Tags.Where( t=> t.Name.StartsWith(id)).Select(t=>t.Name).Take(25).ToArrayAsync();
|
||||
}
|
||||
|
||||
[HttpGet("live/{id}")]
|
||||
public async Task<IActionResult> GetLive(string id)
|
||||
[HttpGet("live/uid-{id}")]
|
||||
public async Task<IActionResult> ByUserId(string id)
|
||||
{
|
||||
// TODO read access rights
|
||||
// TODO multiple channel
|
||||
if (!HttpContext.WebSockets.IsWebSocketRequest) return new BadRequestResult();
|
||||
var uid = User.GetUserId();
|
||||
var existent = _liveProcessor.Casters[id];
|
||||
@ -73,7 +75,7 @@ namespace Yavsc.Controllers
|
||||
}
|
||||
|
||||
|
||||
[HttpGet("meta/{id}")]
|
||||
[HttpGet("meta/uid-{id}")]
|
||||
public async Task<IActionResult> GetLiveFlow([FromRoute] long id)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
@ -163,29 +165,29 @@ namespace Yavsc.Controllers
|
||||
}
|
||||
|
||||
// DELETE: api/LiveApi/5
|
||||
[HttpDelete("meta/{id}")]
|
||||
public async Task<IActionResult> DeleteLiveFlow([FromRoute] long id)
|
||||
[HttpDelete("meta/uid-{uid}")]
|
||||
public async Task<IActionResult> DeleteLiveFlow([FromRoute] long uid)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
{
|
||||
return HttpBadRequest(ModelState);
|
||||
}
|
||||
|
||||
LiveFlow liveFlow = await _dbContext.LiveFlow.SingleAsync(m => m.Id == id);
|
||||
LiveFlow liveFlow = await _dbContext.LiveFlow.SingleAsync(m => m.Id == uid);
|
||||
if (liveFlow == null)
|
||||
{
|
||||
return HttpNotFound();
|
||||
}
|
||||
|
||||
var uid = User.GetUserId();
|
||||
if (liveFlow.OwnerId!=uid)
|
||||
var cuid = User.GetUserId();
|
||||
if (liveFlow.OwnerId!=cuid)
|
||||
{
|
||||
ModelState.AddModelError("id","This flow isn't yours.");
|
||||
return HttpBadRequest(ModelState);
|
||||
}
|
||||
|
||||
_dbContext.LiveFlow.Remove(liveFlow);
|
||||
await _dbContext.SaveChangesAsync(uid);
|
||||
await _dbContext.SaveChangesAsync(cuid);
|
||||
|
||||
return Ok(liveFlow);
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ PRODDESTDIR=/srv/www/yavsc
|
||||
HOSTING=localhost
|
||||
ASPNET_LOG_LEVEL=debug
|
||||
SOURCE_DIR=$(HOME)/workspace/yavsc
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/build/make
|
||||
MAKEFILE_DIR=$(SOURCE_DIR)/scripts/make
|
||||
BASERESX= Resources/Yavsc.Models.IT.Fixing.Resources.resx \
|
||||
Resources/Yavsc.ViewComponents.CommentViewComponent.resx \
|
||||
Resources/Yavsc.ViewModels.FrontOffice.PerformerProfileViewModel.resx \
|
||||
|
@ -285,6 +285,7 @@ namespace Yavsc.Models
|
||||
|
||||
public DbSet<BlogTrad> BlogTrad { get; set; }
|
||||
|
||||
[Obsolete("use signaled flows")]
|
||||
public DbSet<LiveFlow> LiveFlow { get; set; }
|
||||
|
||||
public DbSet<ChatRoomAccess> ChatRoomAccess { get; set; }
|
||||
|
@ -2,8 +2,8 @@
|
||||
ViewData["Title"] = @SR["About"]+" "+@SiteSettings.Value.Title;
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<environment names="zicmoove,Development">
|
||||
|
||||
<environment names="Development">
|
||||
**Version de Development**
|
||||
<markdown>
|
||||
|
||||
## L'objectif
|
||||
@ -101,8 +101,6 @@ C'est mon site pérso, une configuration de _Yavsc_ (encore une autre très peti
|
||||
Autres installations:
|
||||
</markdown>
|
||||
<markdown>
|
||||
* [Coiffure](http://coiffure.pschneider.fr)
|
||||
* [ZicMoove](http://linkmuse.pschneider.fr)
|
||||
* [Yavsc](http://yavsc.pschneider.fr)
|
||||
</markdown>
|
||||
</environment>
|
||||
@ -125,8 +123,6 @@ Autres installations:
|
||||
|
||||
En production:
|
||||
|
||||
* [Coiffure](https://coiffure.pschneider.fr)
|
||||
* [ZicMoove](https://zicmoove.pschneider.fr)
|
||||
* [Lua](https://lua.pschneider.fr)
|
||||
* [Yavsc](https://yavsc.pschneider.fr)
|
||||
|
||||
@ -157,8 +153,6 @@ Veuillez excuser l'équipe de développement pour vous avoir fait part de cette
|
||||
|
||||
La "pré-production" affiche les sites suivants:
|
||||
|
||||
* [Coiffure](https://coiffure.pschneider.fr)
|
||||
* [ZicMoove](https://zicmoove.pschneider.fr)
|
||||
* [Yavsc](https://yavsc.pschneider.fr)
|
||||
* [Lua](https://lua.pschneider.fr)
|
||||
|
||||
|
@ -122,8 +122,6 @@ Outras instalações:
|
||||
|
||||
En production:
|
||||
|
||||
* [Coiffure](https://coiffure.pschneider.fr)
|
||||
* [ZicMoove](https://zicmoove.pschneider.fr)
|
||||
* [Lua](https://lua.pschneider.fr)
|
||||
* [Yavsc](https://yavsc.pschneider.fr)
|
||||
|
||||
@ -154,8 +152,6 @@ Por favor, desculpe a equipe de desenvolvimento para informá-lo sobre este ende
|
||||
|
||||
A "pré-produção" exibe os seguintes sites:
|
||||
|
||||
* [Coiffure](https://coiffure.pschneider.fr)
|
||||
* [ZicMoove](https://zicmoove.pschneider.fr)
|
||||
* [Yavsc](https://yavsc.pschneider.fr)
|
||||
* [Lua](https://lua.pschneider.fr)
|
||||
|
||||
|
Reference in New Issue
Block a user