Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apps/Cards: add suggested improvements #35

Merged
merged 3 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/api/src/activities/message/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
} from '../../models';

import { IActivity, Activity } from '../activity';
import { removeMentionsText, RemoveMentionsTextOptions } from '../utils';

export interface IMessageActivity extends IActivity<'message'> {
/**
Expand Down Expand Up @@ -264,6 +265,14 @@ export class MessageActivity extends Activity<'message'> implements IMessageActi
});
}

/**
* remove "\<at>...\</at>" text from an activity
*/
removeMentionsText(options: RemoveMentionsTextOptions = {}) {
this.text = removeMentionsText(this, options);
return this;
}

/**
* Add a card attachment
*/
Expand Down
125 changes: 60 additions & 65 deletions packages/apps/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export type AppOptions = Partial<Credentials> & {
/**
* http client or client options used to make api requests
*/
readonly http?: http.Client | http.ClientOptions | (() => http.Client);
readonly client?: http.Client | http.ClientOptions | (() => http.Client);

/**
* logger instance to use
Expand Down Expand Up @@ -134,11 +134,12 @@ export type ProcessActivityArgs = {
* The orchestrator for receiving/sending activities
*/
export class App {
api: AppClient;
log: ILogger;
http: http.Client;
storage: IStorage;
credentials?: Credentials;
readonly api: AppClient;
readonly log: ILogger;
readonly http: HttpPlugin;
readonly client: http.Client;
readonly storage: IStorage;
readonly credentials?: Credentials;

/**
* the apps id
Expand Down Expand Up @@ -203,38 +204,38 @@ export class App {
this.storage = this.options.storage || new LocalStorage();
this._manifest = this.options.manifest || {};

if (!options.http) {
this.http = new http.Client({
if (!options.client) {
this.client = new http.Client({
headers: {
'User-Agent': this._userAgent,
},
});
} else if (typeof options.http === 'function') {
this.http = options.http().clone({
} else if (typeof options.client === 'function') {
this.client = options.client().clone({
headers: {
'User-Agent': this._userAgent,
},
});
} else if ('request' in options.http) {
this.http = options.http.clone({
} else if ('request' in options.client) {
this.client = options.client.clone({
headers: {
'User-Agent': this._userAgent,
},
});
} else {
this.http = new http.Client({
...options.http,
this.client = new http.Client({
...options.client,
headers: {
...options.http.headers,
...options.client.headers,
'User-Agent': this._userAgent,
},
});
}

this.api = new AppClient(
'https://smba.trafficmanager.net/teams',
this.http.clone({ token: () => this._tokens.bot }),
this.http.clone({ token: () => this._tokens.graph })
this.client.clone({ token: () => this._tokens.bot }),
this.client.clone({ token: () => this._tokens.graph })
);

const clientId = this.options.clientId || process.env.CLIENT_ID;
Expand Down Expand Up @@ -262,11 +263,19 @@ export class App {
}

const plugins = this.options.plugins || [];
let httpPlugin = plugins.find((p) => p.name === 'http');

if (!plugins.find((p) => p.name === 'http')) {
plugins.unshift(new HttpPlugin());
if (!httpPlugin) {
httpPlugin = new HttpPlugin();
plugins.unshift(httpPlugin);
}

if (!(httpPlugin instanceof HttpPlugin)) {
throw new Error('http plugin must be of type `HttpPlugin`');
}

this.http = httpPlugin;

for (const plugin of plugins) {
this.plugin(plugin);
}
Expand Down Expand Up @@ -414,32 +423,28 @@ export class App {
name: string,
cb: (context: contexts.IFunctionContext<TData>) => any | Promise<any>
) {
const http = this.getPlugin('http');
const log = this.log.child(`functions`).child(name);

if (http && http instanceof HttpPlugin) {
http.post(
`/api/functions/${name}`,
middleware.withClientAuth({
logger: log,
...this.credentials,
}),
async (req: middleware.ClientAuthRequest, res) => {
if (!req.context) {
throw new Error('expected client context');
}

const data = await cb({
...req.context,
log,
api: this.api,
data: req.body,
});

res.send(data);
const log = this.log.child('functions').child(name);
this.http.post(
`/api/functions/${name}`,
middleware.withClientAuth({
logger: log,
...this.credentials,
}),
async (req: middleware.ClientAuthRequest, res) => {
if (!req.context) {
throw new Error('expected client context');
}
);
}

const data = await cb({
...req.context,
log,
api: this.api,
data: req.body,
});

res.send(data);
}
);

return this;
}
Expand Down Expand Up @@ -475,14 +480,10 @@ export class App {
this._manifest.staticTabs.push(tab);
}

const http = this.getPlugin('http');

if (http && http instanceof HttpPlugin) {
http.static(`/tabs/${name}`, path);
http.use(`/tabs/${name}*`, async (_, res) => {
res.sendFile(npath.join(path, 'index.html'));
});
}
this.http.static(`/tabs/${name}`, path);
this.http.use(`/tabs/${name}*`, async (_, res) => {
res.sendFile(npath.join(path, 'index.html'));
});

return this;
}
Expand Down Expand Up @@ -512,16 +513,10 @@ export class App {
* @param activity the activity to send
*/
async send(conversationId: string, activity: ActivityLike) {
const plugin = this.getPlugin('http');

if (!this.id || !this.name) {
throw new Error('app not started');
}

if (!plugin || !(plugin instanceof HttpPlugin)) {
throw new Error('http plugin not found');
}

const ref: ConversationReference = {
channelId: 'msteams',
serviceUrl: this.api.serviceUrl,
Expand All @@ -536,7 +531,7 @@ export class App {
},
};

const res = await plugin.onSend(toActivityParams(activity), ref);
const res = await this.http.onSend(toActivityParams(activity), ref);
return res;
}

Expand Down Expand Up @@ -584,12 +579,12 @@ export class App {
// noop
}

const http = this.http.clone();
const client = this.client.clone();
const api = new ApiClient(
serviceUrl,
http.clone({ token: () => this.tokens.bot }),
http.clone({ token: () => appToken }),
http.clone({ token: () => userToken })
client.clone({ token: () => this.tokens.bot }),
client.clone({ token: () => appToken }),
client.clone({ token: () => userToken })
);

const ref: ConversationReference = {
Expand Down Expand Up @@ -783,7 +778,7 @@ export class App {
});

ctx.api.user = new graph.Client(
this.http.clone({
this.client.clone({
token: token.token,
})
);
Expand Down Expand Up @@ -833,7 +828,7 @@ export class App {
});

ctx.api.user = new graph.Client(
this.http.clone({
this.client.clone({
token: token.token,
})
);
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/src/plugins/http/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class HttpPlugin implements IPlugin, IStreamerPlugin {
async onSend(activity: ActivityParams, ref: ConversationReference) {
const api = new Client(
ref.serviceUrl,
this.app?.http.clone({
this.app?.client.clone({
token: () => this.app?.tokens.bot,
})
);
Expand Down
6 changes: 4 additions & 2 deletions packages/cards/src/medias/icon.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Action } from '../actions';
import { Element, IElement } from '../base';
import { Color } from '../common';

export interface IIcon {
export interface IIcon extends IElement {
type: 'Icon';

/**
Expand Down Expand Up @@ -32,7 +33,7 @@ export interface IIcon {

export type IconOptions = Omit<IIcon, 'type' | 'name'>;

export class Icon implements IIcon {
export class Icon extends Element implements IIcon {
type: 'Icon';

/**
Expand Down Expand Up @@ -61,6 +62,7 @@ export class Icon implements IIcon {
selectAction?: Action;

constructor(name: IconName, options: IconOptions = {}) {
super();
this.type = 'Icon';
this.name = name;
this.withOptions(options);
Expand Down
7 changes: 1 addition & 6 deletions packages/dev/src/devtools/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,7 @@ export class DevtoolsPlugin implements IPlugin {
app.event('activity.received', this.onActivityReceived.bind(this));
app.event('activity.sent', this.onActivitySent.bind(this));

const httpPlugin = app.getPlugin('http');

if (httpPlugin && httpPlugin instanceof HttpPlugin) {
this.httpPlugin = httpPlugin;
}

this.httpPlugin = app.http;
this.log = app.log.child('devtools');
}

Expand Down